Enemizer refinement

This commit is contained in:
aerinon
2023-05-19 08:53:01 -06:00
parent 907639b984
commit 503be6aa91
23 changed files with 1365 additions and 846 deletions

View File

@@ -1,8 +1,8 @@
from Utils import load_yaml
from Utils import load_cached_yaml
class DamageTable:
def __init__(self):
self.damage_table = load_yaml(['source', 'enemizer', 'damage_table.yaml'])
self.enemy_damage = load_yaml(['source', 'enemizer', 'enemy_damage_table.yaml'])
self.damage_table = load_cached_yaml(['source', 'enemizer', 'damage_table.yaml'])
self.enemy_damage = load_cached_yaml(['source', 'enemizer', 'enemy_damage_table.yaml'])