Esempio n. 1
0
 public StatusEquip(
     string classname,
     growparam.characteristic role,
     ParamEquipSkill skill,
     int lvr,
     durability d,
     ParamFlat HP,
     ParamFlat MOV,
     ParamFlat CP,
     ParamFlat DEX,
     RNG RNG,
     SIG SIG
     )
     : base(classname, d, lvr)
 {
     this.role         = role;
     this.socialSkills = skill;
     this.HP           = HP;
     this.MOV          = MOV;
     this.CP           = CP;
     this.DEX          = DEX;
     this.RNG          = RNG;
     this.SIG          = SIG;
 }
Esempio n. 2
0
 public IdentifierCharacter(string classname, string name, growparam.characteristic role)
     : base(classname)
 {
     this.name = name;
     this.role = role;
 }
Esempio n. 3
0
 public ParamSkillCondition(growparam.characteristic ch, int r = 0)
     : base(r)
 {
     this.ch = ch;
 }
Esempio n. 4
0
 public DEX(float b, growparam.characteristic role) : base(b, growparam.role2rate["DEX"][role])
 {
 }
Esempio n. 5
0
 public MOV(float b, growparam.characteristic role) : base(b, growparam.role2rate["MOV"][role])
 {
 }
Esempio n. 6
0
 public CP(float b, growparam.characteristic role) : base(b, growparam.role2rate["CP"][role])
 {
 }