diff --git a/assets/common/items/weapons/starter_axe.ron b/assets/common/items/weapons/starter_axe.ron index 1a02485aa4..9145b4a09a 100644 --- a/assets/common/items/weapons/starter_axe.ron +++ b/assets/common/items/weapons/starter_axe.ron @@ -7,6 +7,8 @@ Item( equip_time_millis: 1000, attack_buildup_millis: 700, attack_recover_millis: 100, + range: 3, + base_damage: 10, ) ), ) diff --git a/assets/common/items/weapons/starter_bow.ron b/assets/common/items/weapons/starter_bow.ron index beaff0229b..724824581a 100644 --- a/assets/common/items/weapons/starter_bow.ron +++ b/assets/common/items/weapons/starter_bow.ron @@ -7,6 +7,8 @@ Item( equip_time_millis: 800, attack_buildup_millis: 0, attack_recover_millis: 800, + range: 3, + base_damage: 10, ) ), ) diff --git a/assets/common/items/weapons/starter_dagger.ron b/assets/common/items/weapons/starter_dagger.ron index 57357db674..5d2c20c32e 100644 --- a/assets/common/items/weapons/starter_dagger.ron +++ b/assets/common/items/weapons/starter_dagger.ron @@ -7,6 +7,8 @@ Item( equip_time_millis: 300, attack_buildup_millis: 100, attack_recover_millis: 400, + range: 3, + base_damage: 10, ) ), ) diff --git a/assets/common/items/weapons/starter_hammer.ron b/assets/common/items/weapons/starter_hammer.ron index df8a369669..be0b2505f8 100644 --- a/assets/common/items/weapons/starter_hammer.ron +++ b/assets/common/items/weapons/starter_hammer.ron @@ -7,6 +7,8 @@ Item( equip_time_millis: 1000, attack_buildup_millis: 700, attack_recover_millis: 100, + range: 3, + base_damage: 10, ) ), ) diff --git a/assets/common/items/weapons/starter_staff.ron b/assets/common/items/weapons/starter_staff.ron index abb161df9c..e275179ded 100644 --- a/assets/common/items/weapons/starter_staff.ron +++ b/assets/common/items/weapons/starter_staff.ron @@ -7,6 +7,8 @@ Item( equip_time_millis: 800, attack_buildup_millis: 400, attack_recover_millis: 300, + range: 3, + base_damage: 10, ) ), ) diff --git a/common/src/comp/states/mod.rs b/common/src/comp/states/mod.rs index 4b3902673d..e53ec28313 100644 --- a/common/src/comp/states/mod.rs +++ b/common/src/comp/states/mod.rs @@ -151,6 +151,7 @@ impl MoveState { Swim(Some(state)) => state.handle(&ecs_data), Fall(Some(state)) => state.handle(&ecs_data), Sit(Some(state)) => state.handle(&ecs_data), + // // All states should be explicitly handled // Do not use default match: _ => {}, }