forked from MagicBane/Server
Update to passive logic
This commit is contained in:
@@ -2839,4 +2839,17 @@ public class Enum {
|
||||
Intelligence,
|
||||
Spirit,
|
||||
}
|
||||
|
||||
public enum PassiveType {
|
||||
None(0),
|
||||
Dodge(20),
|
||||
Block(21),
|
||||
Parry(22);
|
||||
|
||||
public int value;
|
||||
|
||||
PassiveType(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user