diff --git a/squirrelbattle/entities/items.py b/squirrelbattle/entities/items.py index 2560c21..c231b53 100644 --- a/squirrelbattle/entities/items.py +++ b/squirrelbattle/entities/items.py @@ -474,6 +474,7 @@ class RingXP(Ring): super().__init__(name=name, price=price, experience=experience, *args, **kwargs) + class ScrollofDamage(Item): """ A scroll that, when used, deals damage to all entities in a certain radius. @@ -636,4 +637,4 @@ class FireBallStaff(LongRangeWeapon): class Monocle(Item): def __init__(self, name: str = "monocle", price: int = 10, *args, **kwargs): - super().__init__(name=name, price=price, *args, **kwargs) \ No newline at end of file + super().__init__(name=name, price=price, *args, **kwargs)