Added a fire ball staff, closes #64

This commit is contained in:
eichhornchen
2021-01-08 19:05:02 +01:00
parent 903a06c36c
commit 591630b8a7
4 changed files with 41 additions and 6 deletions

View File

@ -630,7 +630,7 @@ class Entity:
Trumpet
from squirrelbattle.entities.items import BodySnatchPotion, Bomb, \
Heart, Sword, Shield, Chestplate, Helmet, RingCritical, RingXP, \
ScrollofDamage, ScrollofWeakening, Ruler, Bow
ScrollofDamage, ScrollofWeakening, Ruler, Bow, FireBallStaff
return {
"Tiger": Tiger,
"Bomb": Bomb,
@ -654,6 +654,7 @@ class Entity:
"ScrollofDamage": ScrollofDamage,
"ScrollofWeakening": ScrollofWeakening,
"Bow": Bow,
"FireBallStaff": FireBallStaff,
}
def save_state(self) -> dict: