コード例 #1
0
ファイル: StatusParameter.cs プロジェクト: nen10/conscious
 public IdentifierEquip(string classname, durability d, int l = 0)
     : base(classname)
 {
     // 値の範囲内でランダムに決めたい
     this.reinforce = new LV(l);
     this.d         = d;
 }
コード例 #2
0
ファイル: StatusParameter.cs プロジェクト: nen10/conscious
 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;
 }