Spaces:
Runtime error
Runtime error
File size: 3,464 Bytes
b76daae 2f63a42 b76daae 2f63a42 b76daae 2f63a42 b76daae 88de31c b76daae 88de31c b76daae 88de31c b76daae 88de31c b76daae 88de31c b76daae 88de31c b76daae 88de31c ef62e40 b76daae 88de31c b76daae 88de31c b76daae 88de31c b76daae 88de31c b76daae 2f63a42 b76daae 2f63a42 ef62e40 b76daae 2f63a42 ef62e40 b76daae 2f63a42 b76daae 2f63a42 b76daae 2f63a42 ef62e40 b76daae 2f63a42 ef62e40 b76daae 1467c05 b76daae 1467c05 2f63a42 88de31c b76daae 88de31c 2f63a42 ef62e40 2f63a42 ef62e40 2f63a42 b76daae a2a5d31 2f63a42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
from typing import Dict, Union, Tuple, List
from base.attribute import Attribute
from base.buff import Buff
from base.gain import Gain
from base.skill import Skill
class EquipmentGain(Gain):
buff_ids: List[int] = None
skill_ids: List[int] = None
def __init__(self):
super().__init__(type(self).__name__)
def add_buffs(self, buffs: Dict[int, Buff]):
if self.buff_ids:
for buff_id in self.buff_ids:
buffs[buff_id].activate = True
def sub_buffs(self, buffs: Dict[int, Buff]):
if self.buff_ids:
for buff_id in self.buff_ids:
buffs[buff_id].activate = False
def add_skills(self, skills: Dict[int, Skill]):
if self.skill_ids:
for skill_id in self.skill_ids:
skills[skill_id].activate = True
def sub_skills(self, skills: Dict[int, Skill]):
if self.skill_ids:
for skill_id in self.skill_ids:
skills[skill_id].activate = False
class CriticalSet(EquipmentGain):
def __init__(self, buff_id):
self.buff_ids = [buff_id]
super().__init__()
class DivineEffect(EquipmentGain):
skill_ids = []
class DivineSubSkill(EquipmentGain):
skill_ids = []
class WaterWeapon(EquipmentGain):
buff_ids = [4761]
class WindPendant(EquipmentGain):
buff_ids = [6360]
class HatSpecialEnchant(EquipmentGain):
overcome_base = [0] * 8 + [822, 999, 1098, 1218]
def __init__(self, level):
super().__init__()
self.level = level
def add_attribute(self, attribute: Attribute):
attribute.physical_overcome_base += self.overcome_base[self.level - 1]
attribute.magical_overcome_base += self.overcome_base[self.level - 1]
def sub_attribute(self, attribute: Attribute):
attribute.physical_overcome_base -= self.overcome_base[self.level - 1]
attribute.magical_overcome_base -= self.overcome_base[self.level - 1]
class JacketSpecialEnchant(Gain):
physical_ap = [0] * 8 + [371, 450, 495, 549]
magical_ap = [0] * 8 + [442, 538, 591, 655]
def __init__(self, level):
self.level = level
super().__init__(type(self).__name__)
def add_attribute(self, attribute: Attribute):
attribute.physical_attack_power_base += self.physical_ap[self.level - 1]
attribute.magical_attack_power_base += self.magical_ap[self.level - 1]
def sub_attribute(self, attribute: Attribute):
attribute.physical_attack_power_base -= self.physical_ap[self.level - 1]
attribute.magical_attack_power_base -= self.magical_ap[self.level - 1]
class BeltSpecialEnchant(EquipmentGain):
buff_ids = [15455]
class WristSpecialEnchant(EquipmentGain):
skill_ids = [22160, 22161, 22162, 22163, 22164, 37562]
class ShoesSpecialEnchant(EquipmentGain):
skill_ids = [33257, 33258, 33259, 33260, 33261, 37561]
EQUIPMENT_GAINS: Dict[Union[Tuple[int, int], int], Gain] = {
**{
k: WaterWeapon()
for k in (2400, 2401, 2497, 2498, 2539, 2540, 2604, 2605)
},
**{
(6800, i): WindPendant()
for i in range(100, 127 + 1)
},
**{
(15436, i): HatSpecialEnchant(i)
for i in range(13)
},
**{
(22151, i): JacketSpecialEnchant(i)
for i in range(13)
},
22169: BeltSpecialEnchant(),
22166: WristSpecialEnchant(),
33247: ShoesSpecialEnchant(),
17250: Gain(),
17239: Gain(),
}
|