basic equippables
This commit is contained in:
parent
595ec61332
commit
8d04c40389
8 changed files with 330 additions and 36 deletions
|
|
@ -58,6 +58,10 @@ pub fn save_game(ecs: &mut World) {
|
|||
SufferDamage,
|
||||
WantsToMelee,
|
||||
Item,
|
||||
Equippable,
|
||||
Equipped,
|
||||
MeleePowerBonus,
|
||||
DefenceBonus,
|
||||
Cursed,
|
||||
Consumable,
|
||||
Destructible,
|
||||
|
|
@ -71,6 +75,7 @@ pub fn save_game(ecs: &mut World) {
|
|||
WantsToPickupItem,
|
||||
WantsToUseItem,
|
||||
WantsToDropItem,
|
||||
WantsToRemoveItem,
|
||||
SerializationHelper
|
||||
);
|
||||
}
|
||||
|
|
@ -135,6 +140,10 @@ pub fn load_game(ecs: &mut World) {
|
|||
SufferDamage,
|
||||
WantsToMelee,
|
||||
Item,
|
||||
Equippable,
|
||||
Equipped,
|
||||
MeleePowerBonus,
|
||||
DefenceBonus,
|
||||
Cursed,
|
||||
Consumable,
|
||||
Destructible,
|
||||
|
|
@ -148,6 +157,7 @@ pub fn load_game(ecs: &mut World) {
|
|||
WantsToPickupItem,
|
||||
WantsToUseItem,
|
||||
WantsToDropItem,
|
||||
WantsToRemoveItem,
|
||||
SerializationHelper
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue