| | |
| | |
|
| | | "NPCStronger":(
|
| | | ("DWORD", "NPCID", 1),
|
| | | ("WORD", "NPCLV", 0),
|
| | | ("float", "AtkRatio", 0),
|
| | | ("float", "DefRatio", 0),
|
| | | ("float", "MaxHPRatio", 0),
|
| | |
| | | return |
| | | |
| | | def GetNPCID(self): return self.attrTuple[0] # NPCID DWORD
|
| | | def GetAtkRatio(self): return self.attrTuple[1] # 攻击系数 float
|
| | | def GetDefRatio(self): return self.attrTuple[2] # 防御系数 float
|
| | | def GetMaxHPRatio(self): return self.attrTuple[3] # 生命系数 float
|
| | | def GetStunRateRatio(self): return self.attrTuple[4] # float
|
| | | def GetSuperHitRateRatio(self): return self.attrTuple[5] # float
|
| | | def GetComboRateRatio(self): return self.attrTuple[6] # float
|
| | | def GetMissRateRatio(self): return self.attrTuple[7] # float
|
| | | def GetParryRateRatio(self): return self.attrTuple[8] # float
|
| | | def GetSuckHPPerRatio(self): return self.attrTuple[9] # float
|
| | | def GetStunRateDefRatio(self): return self.attrTuple[10] # float
|
| | | def GetSuperHitRateDefRatio(self): return self.attrTuple[11] # float
|
| | | def GetComboRateDefRatio(self): return self.attrTuple[12] # float
|
| | | def GetMissRateDefRatio(self): return self.attrTuple[13] # float
|
| | | def GetParryRateDefRatio(self): return self.attrTuple[14] # float
|
| | | def GetSuckHPPerDefRatio(self): return self.attrTuple[15] # float |
| | | def GetNPCLV(self): return self.attrTuple[1] # 等级段 WORD
|
| | | def GetAtkRatio(self): return self.attrTuple[2] # 攻击系数 float
|
| | | def GetDefRatio(self): return self.attrTuple[3] # 防御系数 float
|
| | | def GetMaxHPRatio(self): return self.attrTuple[4] # 生命系数 float
|
| | | def GetStunRateRatio(self): return self.attrTuple[5] # float
|
| | | def GetSuperHitRateRatio(self): return self.attrTuple[6] # float
|
| | | def GetComboRateRatio(self): return self.attrTuple[7] # float
|
| | | def GetMissRateRatio(self): return self.attrTuple[8] # float
|
| | | def GetParryRateRatio(self): return self.attrTuple[9] # float
|
| | | def GetSuckHPPerRatio(self): return self.attrTuple[10] # float
|
| | | def GetStunRateDefRatio(self): return self.attrTuple[11] # float
|
| | | def GetSuperHitRateDefRatio(self): return self.attrTuple[12] # float
|
| | | def GetComboRateDefRatio(self): return self.attrTuple[13] # float
|
| | | def GetMissRateDefRatio(self): return self.attrTuple[14] # float
|
| | | def GetParryRateDefRatio(self): return self.attrTuple[15] # float
|
| | | def GetSuckHPPerDefRatio(self): return self.attrTuple[16] # float |
| | | |
| | | # 技能表 |
| | | class IPY_Skill(): |