|
@@ -36,12 +36,22 @@ import org.springframework.data.mongodb.core.mapping.Document;
|
|
@Document
|
|
@Document
|
|
@FieldDefaults(level = AccessLevel.PRIVATE)
|
|
@FieldDefaults(level = AccessLevel.PRIVATE)
|
|
public class ElseEquipProperty {
|
|
public class ElseEquipProperty {
|
|
|
|
+ /** 根骨 */
|
|
|
|
+ int rootBone;
|
|
|
|
+ /** 精力 */
|
|
|
|
+ int energy;
|
|
/** 力量 */
|
|
/** 力量 */
|
|
int power;
|
|
int power;
|
|
- /** 耐力 */
|
|
|
|
- int endurance;
|
|
|
|
|
|
+ /** 智力 */
|
|
|
|
+ int intelligence;
|
|
/** 敏捷 */
|
|
/** 敏捷 */
|
|
int agile;
|
|
int agile;
|
|
|
|
+ /** 最大气血 */
|
|
|
|
+ int hpMax;
|
|
|
|
+ /** 最大法力 */
|
|
|
|
+ int mpMax;
|
|
|
|
+ /** 幸运 */
|
|
|
|
+ int lucky;
|
|
|
|
|
|
public static ElseEquipProperty resetElseEquipProperty() {
|
|
public static ElseEquipProperty resetElseEquipProperty() {
|
|
ElseEquipProperty elseEquipProperty = new ElseEquipProperty();
|
|
ElseEquipProperty elseEquipProperty = new ElseEquipProperty();
|