diff --git a/.cargo/config b/.cargo/config index f588f639ff..09fa64d2ea 100644 --- a/.cargo/config +++ b/.cargo/config @@ -4,7 +4,8 @@ rustflags = [ ] [alias] -generate = "run --package tools --" +csv-export = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_export" +csv-import = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_import" test-server = "-Zpackage-features run --bin veloren-server-cli --no-default-features -- -b" tracy-server = "-Zunstable-options -Zpackage-features run --bin veloren-server-cli --no-default-features --features tracy,simd --profile no_overflow" test-voxygen = "-Zpackage-features run --bin veloren-voxygen --no-default-features --features gl,simd" diff --git a/assets/common/abilities/weapon_ability_manifest.ron b/assets/common/abilities/weapon_ability_manifest.ron index bf0d1dc533..465d1a4040 100644 --- a/assets/common/abilities/weapon_ability_manifest.ron +++ b/assets/common/abilities/weapon_ability_manifest.ron @@ -4,149 +4,149 @@ Sword: ( primary: "common.abilities.sword.triplestrike", secondary: "common.abilities.sword.dash", - skills: [ - "common.abilities.sword.spin", + abilities: [ + (Some(Sword(UnlockSpin)), "common.abilities.sword.spin"), ], ), Axe: ( primary: "common.abilities.axe.doublestrike", secondary: "common.abilities.axe.spin", - skills: [ - "common.abilities.axe.leap", + abilities: [ + (Some(Axe(UnlockLeap)), "common.abilities.axe.leap"), ], ), Hammer: ( primary: "common.abilities.hammer.singlestrike", secondary: "common.abilities.hammer.charged", - skills: [ - "common.abilities.hammer.leap", + abilities: [ + (Some(Hammer(UnlockLeap)), "common.abilities.hammer.leap"), ], ), Bow: ( primary: "common.abilities.bow.basic", secondary: "common.abilities.bow.charged", - skills: [ - "common.abilities.bow.repeater", + abilities: [ + (Some(Bow(UnlockRepeater)), "common.abilities.bow.repeater"), ], ), Staff: ( primary: "common.abilities.staff.firebomb", secondary: "common.abilities.staff.flamethrower", - skills: [ - "common.abilities.staff.fireshockwave", + abilities: [ + (Some(Staff(UnlockShockwave)), "common.abilities.staff.fireshockwave"), ], ), Sceptre: ( primary: "common.abilities.sceptre.healingbeam", secondary: "common.abilities.sceptre.healingbomb", - skills: [], + abilities: [], ), Dagger: ( primary: "common.abilities.dagger.tempbasic", secondary: "common.abilities.dagger.tempbasic", - skills: [], + abilities: [], ), Shield: ( primary: "common.abilities.shield.tempbasic", secondary: "common.abilities.shield.block", - skills: [], + abilities: [], ), Unique(StoneGolemFist): ( primary: "common.abilities.unique.stonegolemfist.basic", secondary: "common.abilities.unique.stonegolemfist.shockwave", - skills: [ - "common.abilities.unique.stonegolemfist.spin", + abilities: [ + (None, "common.abilities.unique.stonegolemfist.spin"), ], ), Unique(BeastClaws): ( primary: "common.abilities.unique.beastclaws.basic", secondary: "common.abilities.unique.beastclaws.basic", - skills: [], + abilities: [], ), Unique(QuadMedQuick): ( primary: "common.abilities.unique.quadmedquick.triplestrike", secondary: "common.abilities.unique.quadmedquick.dash", - skills: [], + abilities: [], ), Unique(QuadMedJump): ( primary: "common.abilities.unique.quadmedjump.leap", secondary: "common.abilities.unique.quadmedjump.doublestrike", - skills: [ - "common.abilities.unique.quadmedjump.quickleap" + abilities: [ + (None, "common.abilities.unique.quadmedjump.quickleap"), ], ), Unique(QuadMedCharge): ( primary: "common.abilities.unique.quadmedcharge.doublestrike", secondary: "common.abilities.unique.quadmedcharge.dash", - skills: [], + abilities: [], ), Unique(QuadMedHoof): ( primary: "common.abilities.unique.quadmedhoof.basic", secondary: "common.abilities.unique.quadmedhoof.basic", - skills: [], + abilities: [], ), Unique(QuadMedBasic): ( primary: "common.abilities.unique.quadmedbasic.singlestrike", secondary: "common.abilities.unique.quadmedbasic.triplestrike", - skills: [], + abilities: [], ), Unique(QuadLowRanged): ( primary: "common.abilities.unique.quadlowranged.singlestrike", secondary: "common.abilities.unique.quadlowranged.firebomb", - skills: [], + abilities: [], ), Unique(QuadLowBreathe): ( primary: "common.abilities.unique.quadlowbreathe.flamethrower", secondary: "common.abilities.unique.quadlowbreathe.triplestrike", - skills: [ - "common.abilities.unique.quadlowbreathe.dash", + abilities: [ + (None, "common.abilities.unique.quadlowbreathe.dash"), ], ), Unique(QuadLowTail): ( primary: "common.abilities.unique.quadlowtail.charged", secondary: "common.abilities.unique.quadlowtail.triplestrike", - skills: [], + abilities: [], ), Unique(QuadLowQuick): ( primary: "common.abilities.unique.quadlowquick.dash", secondary: "common.abilities.unique.quadlowquick.quadstrike", - skills: [], + abilities: [], ), Unique(QuadLowBasic): ( primary: "common.abilities.unique.quadlowbasic.triplestrike", secondary: "common.abilities.unique.quadlowbasic.singlestrike", - skills: [], + abilities: [], ), Unique(QuadSmallBasic): ( primary: "common.abilities.unique.quadsmallbasic.singlestrike", secondary: "common.abilities.unique.quadsmallbasic.singlestrike", - skills: [], + abilities: [], ), Unique(TheropodBasic): ( primary: "common.abilities.unique.theropodbasic.triplestrike", secondary: "common.abilities.unique.theropodbasic.triplestrike", - skills: [], + abilities: [], ), Unique(TheropodBird): ( primary: "common.abilities.unique.theropodbird.triplestrike", secondary: "common.abilities.unique.theropodbird.triplestrike", - skills: [], + abilities: [], ), Debug: ( primary: "common.abilities.debug.forwardboost", secondary: "common.abilities.debug.upboost", - skills: [ - "common.abilities.debug.possess", + abilities: [ + (None, "common.abilities.debug.possess"), ], ), Farming: ( primary: "common.abilities.farming.basic", secondary: "common.abilities.farming.basic", - skills: [], + abilities: [], ), Empty: ( primary: "common.abilities.empty.basic", secondary: "common.abilities.empty.basic", - skills: [], + abilities: [], ), }) diff --git a/assets/common/items/debug/boost.ron b/assets/common/items/debug/admin_stick.ron similarity index 95% rename from assets/common/items/debug/boost.ron rename to assets/common/items/debug/admin_stick.ron index 8e8c101fb3..f74a1affb4 100644 --- a/assets/common/items/debug/boost.ron +++ b/assets/common/items/debug/admin_stick.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Debug, + hands: Two, stats: ( equip_time_millis: 0, power: 1.00, diff --git a/assets/common/items/debug/cultist_purp_2h_boss-0.ron b/assets/common/items/debug/admin_sword.ron similarity index 94% rename from assets/common/items/debug/cultist_purp_2h_boss-0.ron rename to assets/common/items/debug/admin_sword.ron index 9a19cd112e..4b4c3ce2e9 100644 --- a/assets/common/items/debug/cultist_purp_2h_boss-0.ron +++ b/assets/common/items/debug/admin_sword.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Sword, + hands: Two, stats: ( equip_time_millis: 0, power: 1000.0, diff --git a/assets/common/items/npc_weapons/axe/malachite_axe-0.ron b/assets/common/items/npc_weapons/axe/malachite_axe-0.ron deleted file mode 100644 index 5ff8652556..0000000000 --- a/assets/common/items/npc_weapons/axe/malachite_axe-0.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Malachite Axe", - description: "An axe infused with malachite.", - kind: Tool( - ( - kind: Axe, - stats: ( - equip_time_millis: 400, - power: 0.50, - poise_strength: 0.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/axe/starter_axe.ron b/assets/common/items/npc_weapons/axe/starter_axe.ron deleted file mode 100644 index 38913830e8..0000000000 --- a/assets/common/items/npc_weapons/axe/starter_axe.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Notched Axe", - description: "Every dent tells the story of a chopped tree.", - kind: Tool( - ( - kind: Axe, - stats: ( - equip_time_millis: 400, - power: 0.50, - poise_strength: 0.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/bow/horn_longbow-0.ron b/assets/common/items/npc_weapons/bow/horn_longbow-0.ron deleted file mode 100644 index 486340c34b..0000000000 --- a/assets/common/items/npc_weapons/bow/horn_longbow-0.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Horn Bow", - description: "You don't recognize the creature these horns belong to.", - kind: Tool( - ( - kind: Bow, - stats: ( - equip_time_millis: 400, - power: 0.5, - poise_strength: 0.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/bow/saurok_bow.ron b/assets/common/items/npc_weapons/bow/saurok_bow.ron index 3b90d3e039..9ada115ab9 100644 --- a/assets/common/items/npc_weapons/bow/saurok_bow.ron +++ b/assets/common/items/npc_weapons/bow/saurok_bow.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Bow, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/dagger/starter_dagger.ron b/assets/common/items/npc_weapons/dagger/starter_dagger.ron deleted file mode 100644 index 24ff9b1c59..0000000000 --- a/assets/common/items/npc_weapons/dagger/starter_dagger.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Rusty Dagger", - description: "Easily concealed.", - kind: Tool( - ( - kind: Dagger, - stats: ( - equip_time_millis: 300, - power: 1.00, - poise_strength: 1.00, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/empty/empty.ron b/assets/common/items/npc_weapons/empty/empty.ron deleted file mode 100644 index d3176bda5a..0000000000 --- a/assets/common/items/npc_weapons/empty/empty.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Empty", - description: "You expected a description?", - kind: Tool ( - ( - kind: Empty, - stats: ( - equip_time_millis: 200, - power: 1.00, - poise_strength: 1.00, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/hammer/cultist_purp_2h-0.ron b/assets/common/items/npc_weapons/hammer/cultist_purp_2h-0.ron deleted file mode 100644 index 9a0ad62c6c..0000000000 --- a/assets/common/items/npc_weapons/hammer/cultist_purp_2h-0.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Magical Cultist Warhammer", - description: "This belonged to an evil Cult Leader.", - kind: Tool( - ( - kind: Hammer, - stats: ( - equip_time_millis: 500, - power: 0.5, - poise_strength: 0.5, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron b/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron index 5e6e83e2dc..e6b31337a2 100644 --- a/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/cyclops_hammer.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/hammer/ogre_hammer.ron b/assets/common/items/npc_weapons/hammer/ogre_hammer.ron index 8691e128c9..a21f130741 100644 --- a/assets/common/items/npc_weapons/hammer/ogre_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/ogre_hammer.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/hammer/starter_hammer.ron b/assets/common/items/npc_weapons/hammer/starter_hammer.ron deleted file mode 100644 index 26fc3cea1a..0000000000 --- a/assets/common/items/npc_weapons/hammer/starter_hammer.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Sturdy Old Hammer", - description: "'Property of...' The rest is missing.", - kind: Tool( - ( - kind: Hammer, - stats: ( - equip_time_millis: 500, - power: 0.50, - poise_strength: 0.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/hammer/troll_hammer.ron b/assets/common/items/npc_weapons/hammer/troll_hammer.ron index 7ac33bfd81..3c02d6ac09 100644 --- a/assets/common/items/npc_weapons/hammer/troll_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/troll_hammer.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron b/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron index 6433e1abad..29bcedb2db 100644 --- a/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron +++ b/assets/common/items/npc_weapons/hammer/wendigo_hammer.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/shield/shield_1.ron b/assets/common/items/npc_weapons/shield/shield_1.ron deleted file mode 100644 index 01b4fc4e79..0000000000 --- a/assets/common/items/npc_weapons/shield/shield_1.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "A Tattered Targe", - description: "Should withstand a few more hits, hopefully...", - kind: Tool ( - ( - kind: Shield, - stats: ( - equip_time_millis: 400, - power: 1.00, - poise_strength: 1.00, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/staff/bone_staff.ron b/assets/common/items/npc_weapons/staff/bone_staff.ron deleted file mode 100644 index c2c4f9fec3..0000000000 --- a/assets/common/items/npc_weapons/staff/bone_staff.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Bone Staff", - description: "There's a red gem suspended in the bones.", - kind: Tool( - ( - kind: Staff, - stats: ( - equip_time_millis: 300, - power: 0.8, - poise_strength: 0.8, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/staff/cultist_staff.ron b/assets/common/items/npc_weapons/staff/cultist_staff.ron deleted file mode 100644 index 9c900aaa83..0000000000 --- a/assets/common/items/npc_weapons/staff/cultist_staff.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Cultist Staff", - description: "The fire gives off no heat.", - kind: Tool( - ( - kind: Staff, - stats: ( - equip_time_millis: 300, - power: 0.8, - poise_strength: 0.8, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/staff/mindflayer_staff.ron b/assets/common/items/npc_weapons/staff/mindflayer_staff.ron index ff6531eaa1..b2d6edebde 100644 --- a/assets/common/items/npc_weapons/staff/mindflayer_staff.ron +++ b/assets/common/items/npc_weapons/staff/mindflayer_staff.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Staff, + hands: Two, stats: ( equip_time_millis: 300, power: 3.0, diff --git a/assets/common/items/npc_weapons/staff/ogre_staff.ron b/assets/common/items/npc_weapons/staff/ogre_staff.ron index 0cedaf4332..ad1d611cfa 100644 --- a/assets/common/items/npc_weapons/staff/ogre_staff.ron +++ b/assets/common/items/npc_weapons/staff/ogre_staff.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Staff, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/staff/saurok_staff.ron b/assets/common/items/npc_weapons/staff/saurok_staff.ron index ff2d7b57b2..e38a3df78c 100644 --- a/assets/common/items/npc_weapons/staff/saurok_staff.ron +++ b/assets/common/items/npc_weapons/staff/saurok_staff.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Staff, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/sword/cultist_purp_2h-0.ron b/assets/common/items/npc_weapons/sword/cultist_purp_2h-0.ron deleted file mode 100644 index 02ccff2d57..0000000000 --- a/assets/common/items/npc_weapons/sword/cultist_purp_2h-0.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Magical Cultist Greatsword", - description: "This belonged to an evil Cult Leader.", - kind: Tool( - ( - kind: Sword, - stats: ( - equip_time_millis: 500, - power: 0.5, - poise_strength: 0.5, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/sword/cultist_purp_2h_boss-0.ron b/assets/common/items/npc_weapons/sword/cultist_purp_2h_boss-0.ron deleted file mode 100644 index bc5072d977..0000000000 --- a/assets/common/items/npc_weapons/sword/cultist_purp_2h_boss-0.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Magical Cultist Greatsword", - description: "This belonged to an evil Cult Leader.", - kind: Tool( - ( - kind: Sword, - stats: ( - equip_time_millis: 500, - power: 1.0, - poise_strength: 1.0, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/sword/dullahan_sword.ron b/assets/common/items/npc_weapons/sword/dullahan_sword.ron index 29c7356f44..42183d263b 100644 --- a/assets/common/items/npc_weapons/sword/dullahan_sword.ron +++ b/assets/common/items/npc_weapons/sword/dullahan_sword.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/sword/saurok_sword.ron b/assets/common/items/npc_weapons/sword/saurok_sword.ron index 445d28722a..82fd5efcc7 100644 --- a/assets/common/items/npc_weapons/sword/saurok_sword.ron +++ b/assets/common/items/npc_weapons/sword/saurok_sword.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/sword/starter_sword.ron b/assets/common/items/npc_weapons/sword/starter_sword.ron deleted file mode 100644 index 178eef5752..0000000000 --- a/assets/common/items/npc_weapons/sword/starter_sword.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Battered Sword", - description: "Held together by Rust and hope.", - kind: Tool( - ( - kind: Sword, - stats: ( - equip_time_millis: 300, - power: 0.50, - poise_strength: 0.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/sword/zweihander_sword_0.ron b/assets/common/items/npc_weapons/sword/zweihander_sword_0.ron deleted file mode 100644 index 197537c5b3..0000000000 --- a/assets/common/items/npc_weapons/sword/zweihander_sword_0.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Sturdy Zweihander", - description: "It's a big sword, and sharp too.", - kind: Tool( - ( - kind: Sword, - stats: ( - equip_time_millis: 500, - power: 0.75, - poise_strength: 0.75, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/broom.ron b/assets/common/items/npc_weapons/tool/broom.ron deleted file mode 100644 index 706e4ac95f..0000000000 --- a/assets/common/items/npc_weapons/tool/broom.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Broom", - description: "It's beginning to fall apart.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.5, - poise_strength: 1.5, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/fishing_rod.ron b/assets/common/items/npc_weapons/tool/fishing_rod.ron deleted file mode 100644 index ee4f2cca74..0000000000 --- a/assets/common/items/npc_weapons/tool/fishing_rod.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Fishing Rod", - description: "Smells of fish.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.5, - poise_strength: 1.5, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/hoe.ron b/assets/common/items/npc_weapons/tool/hoe.ron deleted file mode 100644 index d81f904d3b..0000000000 --- a/assets/common/items/npc_weapons/tool/hoe.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Hoe", - description: "It's stained with dirt.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.50, - poise_strength: 1.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/pickaxe.ron b/assets/common/items/npc_weapons/tool/pickaxe.ron deleted file mode 100644 index 6421a7bc87..0000000000 --- a/assets/common/items/npc_weapons/tool/pickaxe.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Pickaxe", - description: "It has a chipped edge.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.50, - poise_strength: 1.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/pitchfork.ron b/assets/common/items/npc_weapons/tool/pitchfork.ron deleted file mode 100644 index 4b88ac3058..0000000000 --- a/assets/common/items/npc_weapons/tool/pitchfork.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Pitchfork", - description: "One of the prongs is broken.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.50, - poise_strength: 1.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/rake.ron b/assets/common/items/npc_weapons/tool/rake.ron deleted file mode 100644 index 1b660c9eb2..0000000000 --- a/assets/common/items/npc_weapons/tool/rake.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Rake", - description: "Held together with twine.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.50, - poise_strength: 1.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/shovel-0.ron b/assets/common/items/npc_weapons/tool/shovel-0.ron deleted file mode 100644 index 00104a97ff..0000000000 --- a/assets/common/items/npc_weapons/tool/shovel-0.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Shovel", - description: "It's covered in manure.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.50, - poise_strength: 1.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/tool/shovel-1.ron b/assets/common/items/npc_weapons/tool/shovel-1.ron deleted file mode 100644 index c6cce260d1..0000000000 --- a/assets/common/items/npc_weapons/tool/shovel-1.ron +++ /dev/null @@ -1,17 +0,0 @@ -ItemDef( - name: "Shovel", - description: "It's been recently cleaned.", - kind: Tool ( - ( - kind: Farming, - stats: ( - equip_time_millis: 400, - power: 1.50, - poise_strength: 1.50, - speed: 1.0 - ), - ) - ), - quality: Low, - tags: [], -) diff --git a/assets/common/items/npc_weapons/unique/beast_claws.ron b/assets/common/items/npc_weapons/unique/beast_claws.ron index 5f662cb20f..3ca1a633af 100644 --- a/assets/common/items/npc_weapons/unique/beast_claws.ron +++ b/assets/common/items/npc_weapons/unique/beast_claws.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(BeastClaws), + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadlowbasic.ron b/assets/common/items/npc_weapons/unique/quadlowbasic.ron index e4f62f5350..9bdfebcbfc 100644 --- a/assets/common/items/npc_weapons/unique/quadlowbasic.ron +++ b/assets/common/items/npc_weapons/unique/quadlowbasic.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadLowBasic), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadlowbreathe.ron b/assets/common/items/npc_weapons/unique/quadlowbreathe.ron index e081aa67be..1c931dab3b 100644 --- a/assets/common/items/npc_weapons/unique/quadlowbreathe.ron +++ b/assets/common/items/npc_weapons/unique/quadlowbreathe.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadLowBreathe), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadlowquick.ron b/assets/common/items/npc_weapons/unique/quadlowquick.ron index 0d92fce499..7b4adbd6d1 100644 --- a/assets/common/items/npc_weapons/unique/quadlowquick.ron +++ b/assets/common/items/npc_weapons/unique/quadlowquick.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadLowQuick), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadlowranged.ron b/assets/common/items/npc_weapons/unique/quadlowranged.ron index 22b62a3f98..137bd49ae8 100644 --- a/assets/common/items/npc_weapons/unique/quadlowranged.ron +++ b/assets/common/items/npc_weapons/unique/quadlowranged.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadLowRanged), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadlowtail.ron b/assets/common/items/npc_weapons/unique/quadlowtail.ron index 144fe62c11..cbb22e5ab5 100644 --- a/assets/common/items/npc_weapons/unique/quadlowtail.ron +++ b/assets/common/items/npc_weapons/unique/quadlowtail.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadLowTail), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadmedbasic.ron b/assets/common/items/npc_weapons/unique/quadmedbasic.ron index 275165aff2..fc9de7cbe8 100644 --- a/assets/common/items/npc_weapons/unique/quadmedbasic.ron +++ b/assets/common/items/npc_weapons/unique/quadmedbasic.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadMedBasic), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadmedcharge.ron b/assets/common/items/npc_weapons/unique/quadmedcharge.ron index 4c7f9faa1e..1527fddf63 100644 --- a/assets/common/items/npc_weapons/unique/quadmedcharge.ron +++ b/assets/common/items/npc_weapons/unique/quadmedcharge.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadMedCharge), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadmedhoof.ron b/assets/common/items/npc_weapons/unique/quadmedhoof.ron index d33f264582..3a40927bd1 100644 --- a/assets/common/items/npc_weapons/unique/quadmedhoof.ron +++ b/assets/common/items/npc_weapons/unique/quadmedhoof.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadMedHoof), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadmedjump.ron b/assets/common/items/npc_weapons/unique/quadmedjump.ron index 17702a94bf..6ebf329afa 100644 --- a/assets/common/items/npc_weapons/unique/quadmedjump.ron +++ b/assets/common/items/npc_weapons/unique/quadmedjump.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadMedJump), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadmedquick.ron b/assets/common/items/npc_weapons/unique/quadmedquick.ron index 69b3223b96..083baa1664 100644 --- a/assets/common/items/npc_weapons/unique/quadmedquick.ron +++ b/assets/common/items/npc_weapons/unique/quadmedquick.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadMedQuick), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/quadsmallbasic.ron b/assets/common/items/npc_weapons/unique/quadsmallbasic.ron index f965504c06..3a85b22377 100644 --- a/assets/common/items/npc_weapons/unique/quadsmallbasic.ron +++ b/assets/common/items/npc_weapons/unique/quadsmallbasic.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(QuadSmallBasic), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/stone_golems_fist.ron b/assets/common/items/npc_weapons/unique/stone_golems_fist.ron index cf6a6489c9..7302e61b0b 100644 --- a/assets/common/items/npc_weapons/unique/stone_golems_fist.ron +++ b/assets/common/items/npc_weapons/unique/stone_golems_fist.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(StoneGolemFist), + hands: Two, stats: ( equip_time_millis: 500, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/theropodbasic.ron b/assets/common/items/npc_weapons/unique/theropodbasic.ron index e91b354e74..352a99734c 100644 --- a/assets/common/items/npc_weapons/unique/theropodbasic.ron +++ b/assets/common/items/npc_weapons/unique/theropodbasic.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(TheropodBasic), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/npc_weapons/unique/theropodbird.ron b/assets/common/items/npc_weapons/unique/theropodbird.ron index 7921c82e88..f2be3234e2 100644 --- a/assets/common/items/npc_weapons/unique/theropodbird.ron +++ b/assets/common/items/npc_weapons/unique/theropodbird.ron @@ -4,6 +4,7 @@ ItemDef( kind: Tool( ( kind: Unique(TheropodBird), + hands: Two, stats: ( equip_time_millis: 10, power: 1.00, diff --git a/assets/common/items/weapons/axe/bloodsteel_axe-0.ron b/assets/common/items/weapons/axe/bloodsteel_axe-0.ron index 78cb547034..045677ae3f 100644 --- a/assets/common/items/weapons/axe/bloodsteel_axe-0.ron +++ b/assets/common/items/weapons/axe/bloodsteel_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Dark rituals call for metal alloys to be formed in the blood of an animal carcass to ensure the resultant axe thirsts for future kills.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.6, diff --git a/assets/common/items/weapons/axe/bloodsteel_axe-1.ron b/assets/common/items/weapons/axe/bloodsteel_axe-1.ron index d19166eb4c..7019bbee07 100644 --- a/assets/common/items/weapons/axe/bloodsteel_axe-1.ron +++ b/assets/common/items/weapons/axe/bloodsteel_axe-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Dark rituals call for metal alloys to be formed in the blood of an animal carcass to ensure the resultant axe thirsts for future kills.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.6, diff --git a/assets/common/items/weapons/axe/bloodsteel_axe-2.ron b/assets/common/items/weapons/axe/bloodsteel_axe-2.ron index 2977a50d46..dc80a82fd2 100644 --- a/assets/common/items/weapons/axe/bloodsteel_axe-2.ron +++ b/assets/common/items/weapons/axe/bloodsteel_axe-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "Some tribes call for metal alloys to be formed in the blood of an animal carcass to ensure the resultant axe is honed for striking their enemy\'s veins.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.6, diff --git a/assets/common/items/weapons/axe/bronze_axe-0.ron b/assets/common/items/weapons/axe/bronze_axe-0.ron index f0c0ffdefe..f4c85f5776 100644 --- a/assets/common/items/weapons/axe/bronze_axe-0.ron +++ b/assets/common/items/weapons/axe/bronze_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "A fine quality metal alloy axe.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/axe/bronze_axe-1.ron b/assets/common/items/weapons/axe/bronze_axe-1.ron index 64c0950eb8..3dc4648c32 100644 --- a/assets/common/items/weapons/axe/bronze_axe-1.ron +++ b/assets/common/items/weapons/axe/bronze_axe-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "While the metal alloy is relatively simple, this unique circular axe has a unique appearance.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/axe/cobalt_axe-0.ron b/assets/common/items/weapons/axe/cobalt_axe-0.ron index e971a68d64..170f1e45cb 100644 --- a/assets/common/items/weapons/axe/cobalt_axe-0.ron +++ b/assets/common/items/weapons/axe/cobalt_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "The lustrous bluish gray axe provides a certain stylish class to the weapon.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.8, diff --git a/assets/common/items/weapons/axe/iron_axe-0.ron b/assets/common/items/weapons/axe/iron_axe-0.ron index d19c0ccc65..73bfd8f1d6 100644 --- a/assets/common/items/weapons/axe/iron_axe-0.ron +++ b/assets/common/items/weapons/axe/iron_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Heavy iron hammered into rough blades, a simple tool for killing.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-1.ron b/assets/common/items/weapons/axe/iron_axe-1.ron index 2ebfa4ab01..d3cee4dd0a 100644 --- a/assets/common/items/weapons/axe/iron_axe-1.ron +++ b/assets/common/items/weapons/axe/iron_axe-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Heavy iron axe, likely created for ritual execution.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-2.ron b/assets/common/items/weapons/axe/iron_axe-2.ron index fedd993900..9bdeebaad5 100644 --- a/assets/common/items/weapons/axe/iron_axe-2.ron +++ b/assets/common/items/weapons/axe/iron_axe-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "The iron axe head is split into two distinct curves, giving it a unique appearance.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-3.ron b/assets/common/items/weapons/axe/iron_axe-3.ron index f185f924fe..df2f42319b 100644 --- a/assets/common/items/weapons/axe/iron_axe-3.ron +++ b/assets/common/items/weapons/axe/iron_axe-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "Tried and true iron armaments, mass produced for killing.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-4.ron b/assets/common/items/weapons/axe/iron_axe-4.ron index 9116c5b252..64dd21a82a 100644 --- a/assets/common/items/weapons/axe/iron_axe-4.ron +++ b/assets/common/items/weapons/axe/iron_axe-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "This axe has a heavy iron head used to cleave nearly anything.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-5.ron b/assets/common/items/weapons/axe/iron_axe-5.ron index 2b0a8f112b..5d666dd2fe 100644 --- a/assets/common/items/weapons/axe/iron_axe-5.ron +++ b/assets/common/items/weapons/axe/iron_axe-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "While heavy, this iron forged axe is quite easy to swing, at least for those with the muscle backing it.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-6.ron b/assets/common/items/weapons/axe/iron_axe-6.ron index fb4d59b791..9521085760 100644 --- a/assets/common/items/weapons/axe/iron_axe-6.ron +++ b/assets/common/items/weapons/axe/iron_axe-6.ron @@ -3,6 +3,7 @@ ItemDef( description: "A simple dual bitted iron forged axe.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-7.ron b/assets/common/items/weapons/axe/iron_axe-7.ron index 6e31acfec8..d580e411aa 100644 --- a/assets/common/items/weapons/axe/iron_axe-7.ron +++ b/assets/common/items/weapons/axe/iron_axe-7.ron @@ -3,6 +3,7 @@ ItemDef( description: "Double bitted axe head, decorated iron construction.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-8.ron b/assets/common/items/weapons/axe/iron_axe-8.ron index 0c4a57cd86..830608dcc8 100644 --- a/assets/common/items/weapons/axe/iron_axe-8.ron +++ b/assets/common/items/weapons/axe/iron_axe-8.ron @@ -3,6 +3,7 @@ ItemDef( description: "Several sharp axe heads forged with points to mimic animal fangs.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/iron_axe-9.ron b/assets/common/items/weapons/axe/iron_axe-9.ron index 9c1cb27ff4..a903851ba4 100644 --- a/assets/common/items/weapons/axe/iron_axe-9.ron +++ b/assets/common/items/weapons/axe/iron_axe-9.ron @@ -3,6 +3,7 @@ ItemDef( description: "Strikes from this axe look like wolf bites in flesh.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.2, diff --git a/assets/common/items/weapons/axe/malachite_axe-0.ron b/assets/common/items/weapons/axe/malachite_axe-0.ron index 65ec9531ca..acd69ae2a6 100644 --- a/assets/common/items/weapons/axe/malachite_axe-0.ron +++ b/assets/common/items/weapons/axe/malachite_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Etched axe head decorated with malachite on the blades to provide magical properties.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 2.0, diff --git a/assets/common/items/weapons/axe/orc_axe-0.ron b/assets/common/items/weapons/axe/orc_axe-0.ron index 9997734d56..279b0ad6da 100644 --- a/assets/common/items/weapons/axe/orc_axe-0.ron +++ b/assets/common/items/weapons/axe/orc_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "A rough cut axe created by orcs to cleave beasts in two.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 0.6, diff --git a/assets/common/items/weapons/axe/starter_axe.ron b/assets/common/items/weapons/axe/starter_axe.ron index 7ee597fadd..b38ce04023 100644 --- a/assets/common/items/weapons/axe/starter_axe.ron +++ b/assets/common/items/weapons/axe/starter_axe.ron @@ -3,6 +3,7 @@ ItemDef( description: "Every dent tells the story of a chopped tree.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 0.5, diff --git a/assets/common/items/weapons/axe/steel_axe-0.ron b/assets/common/items/weapons/axe/steel_axe-0.ron index df30c3151b..533acd3779 100644 --- a/assets/common/items/weapons/axe/steel_axe-0.ron +++ b/assets/common/items/weapons/axe/steel_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Well crafted metal alloy axe that slices more cleanly than its iron counterparts.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.4, diff --git a/assets/common/items/weapons/axe/steel_axe-1.ron b/assets/common/items/weapons/axe/steel_axe-1.ron index 65da695813..566e655988 100644 --- a/assets/common/items/weapons/axe/steel_axe-1.ron +++ b/assets/common/items/weapons/axe/steel_axe-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Double bitted, well polished, and spiked axe head.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.4, diff --git a/assets/common/items/weapons/axe/steel_axe-2.ron b/assets/common/items/weapons/axe/steel_axe-2.ron index 9d85cfd445..96886e9a31 100644 --- a/assets/common/items/weapons/axe/steel_axe-2.ron +++ b/assets/common/items/weapons/axe/steel_axe-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "A simple metal alloy axe.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.4, diff --git a/assets/common/items/weapons/axe/steel_axe-3.ron b/assets/common/items/weapons/axe/steel_axe-3.ron index 65ed471467..63624c94c1 100644 --- a/assets/common/items/weapons/axe/steel_axe-3.ron +++ b/assets/common/items/weapons/axe/steel_axe-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "The blade of this steel axe is forged in a manner to resemble a crescent moon.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.4, diff --git a/assets/common/items/weapons/axe/steel_axe-4.ron b/assets/common/items/weapons/axe/steel_axe-4.ron index 62f9a6edc8..7bc4fc94c3 100644 --- a/assets/common/items/weapons/axe/steel_axe-4.ron +++ b/assets/common/items/weapons/axe/steel_axe-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "The blade of this axe resembles a full moon.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.4, diff --git a/assets/common/items/weapons/axe/steel_axe-5.ron b/assets/common/items/weapons/axe/steel_axe-5.ron index 8b49ff350b..aa61348583 100644 --- a/assets/common/items/weapons/axe/steel_axe-5.ron +++ b/assets/common/items/weapons/axe/steel_axe-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "Druidic rituals formed this axe in the dark of night. Made to look like the wings of an owl swooping in on a kill.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.4, diff --git a/assets/common/items/weapons/axe/steel_axe-6.ron b/assets/common/items/weapons/axe/steel_axe-6.ron index 4a7fbc9a28..106ca98b9c 100644 --- a/assets/common/items/weapons/axe/steel_axe-6.ron +++ b/assets/common/items/weapons/axe/steel_axe-6.ron @@ -3,6 +3,7 @@ ItemDef( description: "This axe is designed to mimic the playing card suit, swiftly slicing through the air.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 1.4, diff --git a/assets/common/items/weapons/axe/worn_iron_axe-0.ron b/assets/common/items/weapons/axe/worn_iron_axe-0.ron index b0004c1b4e..5903909611 100644 --- a/assets/common/items/weapons/axe/worn_iron_axe-0.ron +++ b/assets/common/items/weapons/axe/worn_iron_axe-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Rough cut axe of dwarven origin, it\'s very old, but still usable.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 0.8, diff --git a/assets/common/items/weapons/axe/worn_iron_axe-1.ron b/assets/common/items/weapons/axe/worn_iron_axe-1.ron index 4d5195801a..6272d2ffec 100644 --- a/assets/common/items/weapons/axe/worn_iron_axe-1.ron +++ b/assets/common/items/weapons/axe/worn_iron_axe-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Light elven axe, scratched from eons of use. Still usable in some manner.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 0.8, diff --git a/assets/common/items/weapons/axe/worn_iron_axe-2.ron b/assets/common/items/weapons/axe/worn_iron_axe-2.ron index a6ea3196a0..de359ef66f 100644 --- a/assets/common/items/weapons/axe/worn_iron_axe-2.ron +++ b/assets/common/items/weapons/axe/worn_iron_axe-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "There\'s nothing too remarkable about this old axe.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 0.8, diff --git a/assets/common/items/weapons/axe/worn_iron_axe-3.ron b/assets/common/items/weapons/axe/worn_iron_axe-3.ron index cef489a30f..ff2bc2a145 100644 --- a/assets/common/items/weapons/axe/worn_iron_axe-3.ron +++ b/assets/common/items/weapons/axe/worn_iron_axe-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "Rough cut iron makes it hard to tell that this axe is even used, other than how old it feels.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 0.8, diff --git a/assets/common/items/weapons/axe/worn_iron_axe-4.ron b/assets/common/items/weapons/axe/worn_iron_axe-4.ron index c04e4ff556..bce871c0dc 100644 --- a/assets/common/items/weapons/axe/worn_iron_axe-4.ron +++ b/assets/common/items/weapons/axe/worn_iron_axe-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "An axe formed with the intent of making the blade seem like a beetle. With how brittle it has gotten over the years, one would be mistaken in thinking it was made from beetle shell.", kind: Tool(( kind: Axe, + hands: Two, stats: ( equip_time_millis: 400, power: 0.8, diff --git a/assets/common/items/weapons/axe_1h/bloodsteel-0.ron b/assets/common/items/weapons/axe_1h/bloodsteel-0.ron new file mode 100644 index 0000000000..24138d8a83 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/bloodsteel-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Crimson Tomahawk", + description: "Infused with blood.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.5, + poise_strength: 1.0, + speed: 1.3, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/bloodsteel-1.ron b/assets/common/items/weapons/axe_1h/bloodsteel-1.ron new file mode 100644 index 0000000000..473c843d3f --- /dev/null +++ b/assets/common/items/weapons/axe_1h/bloodsteel-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Nsapo Axe", + description: "Infused with blood.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 2.0, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/bronze-0.ron b/assets/common/items/weapons/axe_1h/bronze-0.ron new file mode 100644 index 0000000000..003273bd53 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/bronze-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bronze Hatchet", + description: "Forged from bronze.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.0, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/bronze-1.ron b/assets/common/items/weapons/axe_1h/bronze-1.ron new file mode 100644 index 0000000000..c8c3d0e763 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/bronze-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bronze Kilonda", + description: "Forged from bronze.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.1, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/cobalt-0.ron b/assets/common/items/weapons/axe_1h/cobalt-0.ron new file mode 100644 index 0000000000..3b33d948c7 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/cobalt-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Mooncleaver", + description: "Forged from cobalt.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.6, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/cobalt-1.ron b/assets/common/items/weapons/axe_1h/cobalt-1.ron new file mode 100644 index 0000000000..25d6847031 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/cobalt-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Skullsplitter", + description: "Forged from cobalt.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.75, + poise_strength: 1.0, + speed: 0.85, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/iron-0.ron b/assets/common/items/weapons/axe_1h/iron-0.ron new file mode 100644 index 0000000000..75e37781ee --- /dev/null +++ b/assets/common/items/weapons/axe_1h/iron-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bearded Axe", + description: "Forged from iron.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.1, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/iron-1.ron b/assets/common/items/weapons/axe_1h/iron-1.ron new file mode 100644 index 0000000000..ae5a84dd21 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/iron-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Beetle Axe", + description: "Forged from iron.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.3, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/iron-2.ron b/assets/common/items/weapons/axe_1h/iron-2.ron new file mode 100644 index 0000000000..5b442e5e5d --- /dev/null +++ b/assets/common/items/weapons/axe_1h/iron-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Iron Tomahawk", + description: "Forged from iron.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.0, + poise_strength: 1.0, + speed: 1.2, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/iron-3.ron b/assets/common/items/weapons/axe_1h/iron-3.ron new file mode 100644 index 0000000000..a5bb837ecc --- /dev/null +++ b/assets/common/items/weapons/axe_1h/iron-3.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Orcish Axe", + description: "Forged from iron.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.2, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/orichalcum-0.ron b/assets/common/items/weapons/axe_1h/orichalcum-0.ron new file mode 100644 index 0000000000..cfd64ef1a2 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/orichalcum-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Orichalcum Axe", + description: "Forged with orichalcum.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 2.0, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Epic, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/steel-0.ron b/assets/common/items/weapons/axe_1h/steel-0.ron new file mode 100644 index 0000000000..578aa0c691 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/steel-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Doloire", + description: "Forged from steel.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.5, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/steel-1.ron b/assets/common/items/weapons/axe_1h/steel-1.ron new file mode 100644 index 0000000000..d5b9f4d1d5 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/steel-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Steel Hatchet", + description: "Forged from steel.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.4, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/steel-2.ron b/assets/common/items/weapons/axe_1h/steel-2.ron new file mode 100644 index 0000000000..4dc66c5165 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/steel-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Steel Kilonda", + description: "Forged from steel.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.3, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/stone-0.ron b/assets/common/items/weapons/axe_1h/stone-0.ron new file mode 100644 index 0000000000..dc0b887530 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/stone-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Flint Axe", + description: "Chiseled from stone.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.8, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/stone-1.ron b/assets/common/items/weapons/axe_1h/stone-1.ron new file mode 100644 index 0000000000..46675a54ab --- /dev/null +++ b/assets/common/items/weapons/axe_1h/stone-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Stone Cleaver", + description: "Chiseled from stone.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.7, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/wood-0.ron b/assets/common/items/weapons/axe_1h/wood-0.ron new file mode 100644 index 0000000000..b979a83cc2 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/wood-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Wooden Cleaver", + description: "Carved from wood.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.8, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: Low, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/axe_1h/wood-1.ron b/assets/common/items/weapons/axe_1h/wood-1.ron new file mode 100644 index 0000000000..91983a4eb1 --- /dev/null +++ b/assets/common/items/weapons/axe_1h/wood-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Wooden Hatchet", + description: "Carved from wood.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.5, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Low, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/bow/horn_longbow-0.ron b/assets/common/items/weapons/bow/horn_longbow-0.ron index c5b9248292..8b974b6e43 100644 --- a/assets/common/items/weapons/bow/horn_longbow-0.ron +++ b/assets/common/items/weapons/bow/horn_longbow-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "You don\'t recognize the creature these horns belong to.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 1.5, diff --git a/assets/common/items/weapons/bow/iron_longbow-0.ron b/assets/common/items/weapons/bow/iron_longbow-0.ron index 34770e7633..a4f0b43aeb 100644 --- a/assets/common/items/weapons/bow/iron_longbow-0.ron +++ b/assets/common/items/weapons/bow/iron_longbow-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Has an insignia on it.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 1.75, diff --git a/assets/common/items/weapons/bow/leafy_longbow-0.ron b/assets/common/items/weapons/bow/leafy_longbow-0.ron index dd3521572d..2641fbd4d9 100644 --- a/assets/common/items/weapons/bow/leafy_longbow-0.ron +++ b/assets/common/items/weapons/bow/leafy_longbow-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "There\'s a new leaf starting to grow.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 1.25, diff --git a/assets/common/items/weapons/bow/leafy_shortbow-0.ron b/assets/common/items/weapons/bow/leafy_shortbow-0.ron index e8167e7f1f..c689a17293 100644 --- a/assets/common/items/weapons/bow/leafy_shortbow-0.ron +++ b/assets/common/items/weapons/bow/leafy_shortbow-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "The wood still seems alive.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/bow/nature_ore_longbow-0.ron b/assets/common/items/weapons/bow/nature_ore_longbow-0.ron index 5bb6e26768..bc5ba875cc 100644 --- a/assets/common/items/weapons/bow/nature_ore_longbow-0.ron +++ b/assets/common/items/weapons/bow/nature_ore_longbow-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Infused with Velorite power.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 2.0, diff --git a/assets/common/items/weapons/bow/rare_longbow.ron b/assets/common/items/weapons/bow/rare_longbow.ron index f9cc9b0e4b..3e4acc826c 100644 --- a/assets/common/items/weapons/bow/rare_longbow.ron +++ b/assets/common/items/weapons/bow/rare_longbow.ron @@ -3,6 +3,7 @@ ItemDef( description: "You can sense power resting in the bow.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 2.0, diff --git a/assets/common/items/weapons/bow/starter_bow.ron b/assets/common/items/weapons/bow/starter_bow.ron index 7fb71a72f9..66d311c0f6 100644 --- a/assets/common/items/weapons/bow/starter_bow.ron +++ b/assets/common/items/weapons/bow/starter_bow.ron @@ -3,6 +3,7 @@ ItemDef( description: "Someone carved their initials into it.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 0.5, diff --git a/assets/common/items/weapons/bow/wood_longbow-0.ron b/assets/common/items/weapons/bow/wood_longbow-0.ron index e528d61154..9ffffd93ab 100644 --- a/assets/common/items/weapons/bow/wood_longbow-0.ron +++ b/assets/common/items/weapons/bow/wood_longbow-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been well used.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/bow/wood_longbow-1.ron b/assets/common/items/weapons/bow/wood_longbow-1.ron index b3cb675fa5..a86ea56d15 100644 --- a/assets/common/items/weapons/bow/wood_longbow-1.ron +++ b/assets/common/items/weapons/bow/wood_longbow-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s hard to pull all the way back.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/bow/wood_shortbow-0.ron b/assets/common/items/weapons/bow/wood_shortbow-0.ron index 9df405f453..5df7538387 100644 --- a/assets/common/items/weapons/bow/wood_shortbow-0.ron +++ b/assets/common/items/weapons/bow/wood_shortbow-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Strips of leather are wrapped around the handle.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 0.8, diff --git a/assets/common/items/weapons/bow/wood_shortbow-1.ron b/assets/common/items/weapons/bow/wood_shortbow-1.ron index d323263c73..df1497b478 100644 --- a/assets/common/items/weapons/bow/wood_shortbow-1.ron +++ b/assets/common/items/weapons/bow/wood_shortbow-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Works on the ground too.", kind: Tool(( kind: Bow, + hands: Two, stats: ( equip_time_millis: 400, power: 0.75, diff --git a/assets/common/items/weapons/dagger/basic_0.ron b/assets/common/items/weapons/dagger/basic_0.ron index 5179da5408..3b2490852a 100644 --- a/assets/common/items/weapons/dagger/basic_0.ron +++ b/assets/common/items/weapons/dagger/basic_0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Opens letters quickly.", kind: Tool(( kind: Dagger, + hands: One, stats: ( equip_time_millis: 0, power: 1.8, diff --git a/assets/common/items/weapons/dagger/cultist_0.ron b/assets/common/items/weapons/dagger/cultist_0.ron index 617932f662..c364188ee9 100644 --- a/assets/common/items/weapons/dagger/cultist_0.ron +++ b/assets/common/items/weapons/dagger/cultist_0.ron @@ -3,6 +3,7 @@ ItemDef( description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Dagger, + hands: One, stats: ( equip_time_millis: 0, power: 2.0, diff --git a/assets/common/items/weapons/dagger/starter_dagger.ron b/assets/common/items/weapons/dagger/starter_dagger.ron index 316eb88e9a..87be7764cf 100644 --- a/assets/common/items/weapons/dagger/starter_dagger.ron +++ b/assets/common/items/weapons/dagger/starter_dagger.ron @@ -3,6 +3,7 @@ ItemDef( description: "Easily concealed.", kind: Tool(( kind: Dagger, + hands: One, stats: ( equip_time_millis: 300, power: 1.0, diff --git a/assets/common/items/weapons/empty/empty.ron b/assets/common/items/weapons/empty/empty.ron index 442cc89aab..c199f96117 100644 --- a/assets/common/items/weapons/empty/empty.ron +++ b/assets/common/items/weapons/empty/empty.ron @@ -3,6 +3,7 @@ ItemDef( description: "This item may grant abilities, but is invisible", kind: Tool(( kind: Empty, + hands: One, stats: ( equip_time_millis: 200, power: 1.0, diff --git a/assets/common/items/weapons/hammer/bronze_hammer-0.ron b/assets/common/items/weapons/hammer/bronze_hammer-0.ron index 44d71ea76e..2eb3812ed1 100644 --- a/assets/common/items/weapons/hammer/bronze_hammer-0.ron +++ b/assets/common/items/weapons/hammer/bronze_hammer-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "A heavy hammer forged from a simple metal alloy.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.0, diff --git a/assets/common/items/weapons/hammer/bronze_hammer-1.ron b/assets/common/items/weapons/hammer/bronze_hammer-1.ron index 88564cc4bf..369391eaaa 100644 --- a/assets/common/items/weapons/hammer/bronze_hammer-1.ron +++ b/assets/common/items/weapons/hammer/bronze_hammer-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "The entire head of this club is forged from bronze alloy.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.0, diff --git a/assets/common/items/weapons/hammer/cobalt_hammer-0.ron b/assets/common/items/weapons/hammer/cobalt_hammer-0.ron index 05ea199ce6..49e6dab061 100644 --- a/assets/common/items/weapons/hammer/cobalt_hammer-0.ron +++ b/assets/common/items/weapons/hammer/cobalt_hammer-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "The bluish gray tinge to the metal of this hammer head provides a slight classiness to the weapon.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.6, diff --git a/assets/common/items/weapons/hammer/cobalt_hammer-1.ron b/assets/common/items/weapons/hammer/cobalt_hammer-1.ron index 3f591b292d..8433b21268 100644 --- a/assets/common/items/weapons/hammer/cobalt_hammer-1.ron +++ b/assets/common/items/weapons/hammer/cobalt_hammer-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "The decorative hooked head of this mace is formed from a bluish gray metal.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.6, diff --git a/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron b/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron index 0367daafe4..bdbbc3d7ed 100644 --- a/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron +++ b/assets/common/items/weapons/hammer/cultist_purp_2h-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 2.0, diff --git a/assets/common/items/weapons/hammer/flimsy_hammer.ron b/assets/common/items/weapons/hammer/flimsy_hammer.ron index 4c6f509d06..fd417558e1 100644 --- a/assets/common/items/weapons/hammer/flimsy_hammer.ron +++ b/assets/common/items/weapons/hammer/flimsy_hammer.ron @@ -3,6 +3,7 @@ ItemDef( description: "The head is barely secured.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.5, diff --git a/assets/common/items/weapons/hammer/hammer_1.ron b/assets/common/items/weapons/hammer/hammer_1.ron index f3257e1a33..d11cf784e8 100644 --- a/assets/common/items/weapons/hammer/hammer_1.ron +++ b/assets/common/items/weapons/hammer/hammer_1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Breaks bones like sticks and stones.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.5, diff --git a/assets/common/items/weapons/hammer/iron_hammer-0.ron b/assets/common/items/weapons/hammer/iron_hammer-0.ron index d7ad1d0772..44acc9e3da 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-0.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "This heavy, solid chunk iron hammer head is simple and brutal in its design.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-1.ron b/assets/common/items/weapons/hammer/iron_hammer-1.ron index 9e0620fd48..66ea001a67 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-1.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "This heavy, square iron hammer is designed for squashing heads like watermelons.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-2.ron b/assets/common/items/weapons/hammer/iron_hammer-2.ron index 55d7ada738..d95175c65f 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-2.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "A decorative iron mace, great for smashing.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-3.ron b/assets/common/items/weapons/hammer/iron_hammer-3.ron index 8308b3bf68..57b0dee283 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-3.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "The decorative iron mace has a crowning tip on top.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-4.ron b/assets/common/items/weapons/hammer/iron_hammer-4.ron index 446430580b..bd9e83e434 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-4.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "Worn head shows that this hammer had been used for many years to make other weapons, now relegated to being a weapon in its own right.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-5.ron b/assets/common/items/weapons/hammer/iron_hammer-5.ron index 915d806b3f..f0d479b2f7 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-5.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "A hybrid fusion of a warhammer and a polearm.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-6.ron b/assets/common/items/weapons/hammer/iron_hammer-6.ron index 6ae5516593..d960437e92 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-6.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-6.ron @@ -3,6 +3,7 @@ ItemDef( description: "A rough shaped iron hammer with spikes for added destruction.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-7.ron b/assets/common/items/weapons/hammer/iron_hammer-7.ron index 354110e363..90bd20a9bd 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-7.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-7.ron @@ -3,6 +3,7 @@ ItemDef( description: "This iron forged hammer is roughly shaped into the shape of a fist holding the hammer head.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/iron_hammer-8.ron b/assets/common/items/weapons/hammer/iron_hammer-8.ron index 4f65a8b0ed..0d540e8535 100644 --- a/assets/common/items/weapons/hammer/iron_hammer-8.ron +++ b/assets/common/items/weapons/hammer/iron_hammer-8.ron @@ -3,6 +3,7 @@ ItemDef( description: "This hammer has a spike on the opposite end, making it dangerous when swung either direction.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/hammer/mjolnir.ron b/assets/common/items/weapons/hammer/mjolnir.ron index 2b59a4e030..9c6ef685e5 100644 --- a/assets/common/items/weapons/hammer/mjolnir.ron +++ b/assets/common/items/weapons/hammer/mjolnir.ron @@ -1,17 +1,16 @@ ItemDef( name: "Mjolnir", - description: "It's crackling with lightning.", - kind: Tool( - ( - kind: Hammer, - stats: ( - equip_time_millis: 500, - power: 4.00, - poise_strength: 2.0, - speed: 0.5 - ), - ) - ), + description: "It\'s crackling with lightning.", + kind: Tool(( + kind: Hammer, + hands: Two, + stats: ( + equip_time_millis: 500, + power: 4.0, + poise_strength: 2.0, + speed: 0.5, + ), + )), quality: Legendary, tags: [], ) diff --git a/assets/common/items/weapons/hammer/ramshead_hammer.ron b/assets/common/items/weapons/hammer/ramshead_hammer.ron index 5aed246180..48cd876d09 100644 --- a/assets/common/items/weapons/hammer/ramshead_hammer.ron +++ b/assets/common/items/weapons/hammer/ramshead_hammer.ron @@ -3,6 +3,7 @@ ItemDef( description: "You feel an evil presence in the hammer.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.8, diff --git a/assets/common/items/weapons/hammer/runic_hammer.ron b/assets/common/items/weapons/hammer/runic_hammer.ron index 84a0212e8e..4f8cb9aa4f 100644 --- a/assets/common/items/weapons/hammer/runic_hammer.ron +++ b/assets/common/items/weapons/hammer/runic_hammer.ron @@ -3,6 +3,7 @@ ItemDef( description: "There are strange runes inscribed into it.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.8, diff --git a/assets/common/items/weapons/hammer/starter_hammer.ron b/assets/common/items/weapons/hammer/starter_hammer.ron index 0e6f45ac4e..3e7bdd0c07 100644 --- a/assets/common/items/weapons/hammer/starter_hammer.ron +++ b/assets/common/items/weapons/hammer/starter_hammer.ron @@ -3,6 +3,7 @@ ItemDef( description: "\'Property of...\' The rest is missing.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.5, diff --git a/assets/common/items/weapons/hammer/steel_hammer-0.ron b/assets/common/items/weapons/hammer/steel_hammer-0.ron index d34d4c1415..5766a3e76d 100644 --- a/assets/common/items/weapons/hammer/steel_hammer-0.ron +++ b/assets/common/items/weapons/hammer/steel_hammer-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "While lighter and more durable than its iron counterparts, it is nonetheless just as deadly.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/hammer/steel_hammer-1.ron b/assets/common/items/weapons/hammer/steel_hammer-1.ron index 0a9d90e20d..24208d8ac2 100644 --- a/assets/common/items/weapons/hammer/steel_hammer-1.ron +++ b/assets/common/items/weapons/hammer/steel_hammer-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "The lighter attributes of the metal alloy are barely noticed when forged into such a wide hammer head.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/hammer/steel_hammer-2.ron b/assets/common/items/weapons/hammer/steel_hammer-2.ron index 083baa5e07..705b58d630 100644 --- a/assets/common/items/weapons/hammer/steel_hammer-2.ron +++ b/assets/common/items/weapons/hammer/steel_hammer-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "A heavy and wide baton made of a durable metal alloy, decorated with spikes.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/hammer/steel_hammer-3.ron b/assets/common/items/weapons/hammer/steel_hammer-3.ron index d8da2588bd..040fe85c7b 100644 --- a/assets/common/items/weapons/hammer/steel_hammer-3.ron +++ b/assets/common/items/weapons/hammer/steel_hammer-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "A heavy, spiked steel ball tip provides a great smashing weapon.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/hammer/steel_hammer-4.ron b/assets/common/items/weapons/hammer/steel_hammer-4.ron index 644cb869bb..ff82a2d7f7 100644 --- a/assets/common/items/weapons/hammer/steel_hammer-4.ron +++ b/assets/common/items/weapons/hammer/steel_hammer-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "This destructive hammer was likely wielded by a vicious killer.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/hammer/steel_hammer-5.ron b/assets/common/items/weapons/hammer/steel_hammer-5.ron index f798885c17..f4c9b22c45 100644 --- a/assets/common/items/weapons/hammer/steel_hammer-5.ron +++ b/assets/common/items/weapons/hammer/steel_hammer-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "A spiked ball designed to resemble the stars lining the night sky.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/hammer/stone_hammer-0.ron b/assets/common/items/weapons/hammer/stone_hammer-0.ron index f2650a467d..c6bcef5b88 100644 --- a/assets/common/items/weapons/hammer/stone_hammer-0.ron +++ b/assets/common/items/weapons/hammer/stone_hammer-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Bloodied stone tied to a branch, simple but functional as a weapon.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.7, diff --git a/assets/common/items/weapons/hammer/stone_hammer-1.ron b/assets/common/items/weapons/hammer/stone_hammer-1.ron index 939f040b78..c96aa3bffb 100644 --- a/assets/common/items/weapons/hammer/stone_hammer-1.ron +++ b/assets/common/items/weapons/hammer/stone_hammer-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "A rough stone, crumbling on the striking surfaces. Still usable as a weapon.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.7, diff --git a/assets/common/items/weapons/hammer/stone_hammer-2.ron b/assets/common/items/weapons/hammer/stone_hammer-2.ron index d0d2595ee2..9e1e952a13 100644 --- a/assets/common/items/weapons/hammer/stone_hammer-2.ron +++ b/assets/common/items/weapons/hammer/stone_hammer-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "A rock tied to a stick, still good for smashing, but not very strong.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.7, diff --git a/assets/common/items/weapons/hammer/stone_hammer-3.ron b/assets/common/items/weapons/hammer/stone_hammer-3.ron index 04c9204247..1ef0425581 100644 --- a/assets/common/items/weapons/hammer/stone_hammer-3.ron +++ b/assets/common/items/weapons/hammer/stone_hammer-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "A heavy rock with a slot worn through to fasten it in place. Brutal in its simple design, but still functional.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.7, diff --git a/assets/common/items/weapons/hammer/wood_hammer-0.ron b/assets/common/items/weapons/hammer/wood_hammer-0.ron index 0cdb3f1c0e..9f5f3a68f1 100644 --- a/assets/common/items/weapons/hammer/wood_hammer-0.ron +++ b/assets/common/items/weapons/hammer/wood_hammer-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Hardened wood, subjected to many different elements to provide a enough strength to be a weapon.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.6, diff --git a/assets/common/items/weapons/hammer/worn_iron_hammer-0.ron b/assets/common/items/weapons/hammer/worn_iron_hammer-0.ron index edbc8c334f..14dfcf1345 100644 --- a/assets/common/items/weapons/hammer/worn_iron_hammer-0.ron +++ b/assets/common/items/weapons/hammer/worn_iron_hammer-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "While the dwarves excel at rough hewn weapons, this one has seen its fair share of battles, might still serve well enough for a few more.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.85, diff --git a/assets/common/items/weapons/hammer/worn_iron_hammer-1.ron b/assets/common/items/weapons/hammer/worn_iron_hammer-1.ron index 8f68eb2930..39961d8ba2 100644 --- a/assets/common/items/weapons/hammer/worn_iron_hammer-1.ron +++ b/assets/common/items/weapons/hammer/worn_iron_hammer-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Elven hammers are lighter than most. This one has seen its fair share of wear and tear.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.85, diff --git a/assets/common/items/weapons/hammer/worn_iron_hammer-2.ron b/assets/common/items/weapons/hammer/worn_iron_hammer-2.ron index dda968a16d..756d018c62 100644 --- a/assets/common/items/weapons/hammer/worn_iron_hammer-2.ron +++ b/assets/common/items/weapons/hammer/worn_iron_hammer-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "An unremarkable mace, that has seen a lot of use.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.85, diff --git a/assets/common/items/weapons/hammer/worn_iron_hammer-3.ron b/assets/common/items/weapons/hammer/worn_iron_hammer-3.ron index 0af9b74aa5..ed2fc859f1 100644 --- a/assets/common/items/weapons/hammer/worn_iron_hammer-3.ron +++ b/assets/common/items/weapons/hammer/worn_iron_hammer-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "A heavy orc crafted hammer, missing chunks from heavy use.", kind: Tool(( kind: Hammer, + hands: Two, stats: ( equip_time_millis: 500, power: 0.85, diff --git a/assets/common/items/weapons/hammer_1h/bloodsteel-0.ron b/assets/common/items/weapons/hammer_1h/bloodsteel-0.ron new file mode 100644 index 0000000000..9ed34579a8 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/bloodsteel-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bloodsteel Mace", + description: "Infused with blood.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.6, + poise_strength: 1.0, + speed: 1.2, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/bloodsteel-1.ron b/assets/common/items/weapons/hammer_1h/bloodsteel-1.ron new file mode 100644 index 0000000000..5379cb2279 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/bloodsteel-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Scarlet Maul", + description: "Infused with blood.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.8, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/bronze-0.ron b/assets/common/items/weapons/hammer_1h/bronze-0.ron new file mode 100644 index 0000000000..1090cde1de --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/bronze-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Brass Block", + description: "Casted from brass.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.2, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/bronze-1.ron b/assets/common/items/weapons/hammer_1h/bronze-1.ron new file mode 100644 index 0000000000..589e53b27a --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/bronze-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bronze Cudgel", + description: "Forged from bronze.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.0, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/cobalt-0.ron b/assets/common/items/weapons/hammer_1h/cobalt-0.ron new file mode 100644 index 0000000000..a0c1099bcc --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/cobalt-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Blue Bludgeon", + description: "Forged from cobalt.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.6, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/cobalt-1.ron b/assets/common/items/weapons/hammer_1h/cobalt-1.ron new file mode 100644 index 0000000000..d93c1cf2c4 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/cobalt-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Cobalt Cudgel", + description: "Forged from cobalt.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.5, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/iron-0.ron b/assets/common/items/weapons/hammer_1h/iron-0.ron new file mode 100644 index 0000000000..63df955a76 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/iron-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Dwarven Hammer", + description: "Forged from iron.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.4, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/iron-1.ron b/assets/common/items/weapons/hammer_1h/iron-1.ron new file mode 100644 index 0000000000..87d7151a75 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/iron-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Iron Club", + description: "Forged from iron.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.3, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/iron-2.ron b/assets/common/items/weapons/hammer_1h/iron-2.ron new file mode 100644 index 0000000000..f439868139 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/iron-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Spiky Mace", + description: "Forged from iron.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.1, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/orichalcum-0.ron b/assets/common/items/weapons/hammer_1h/orichalcum-0.ron new file mode 100644 index 0000000000..a5c6c7009b --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/orichalcum-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Orichalcum Mace", + description: "Forged with orichalcum.", + kind: Tool(( + kind: Axe, + hands: One, + stats: ( + equip_time_millis: 400, + power: 2.0, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Epic, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/steel-0.ron b/assets/common/items/weapons/hammer_1h/steel-0.ron new file mode 100644 index 0000000000..446cd92b5b --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/steel-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bone Breaker", + description: "Forged from steel.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.5, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/steel-1.ron b/assets/common/items/weapons/hammer_1h/steel-1.ron new file mode 100644 index 0000000000..2675db788d --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/steel-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Jeweled Bulawa", + description: "Inset with an amethyst.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.4, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/steel-2.ron b/assets/common/items/weapons/hammer_1h/steel-2.ron new file mode 100644 index 0000000000..2364628d7f --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/steel-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Ornamental Mace", + description: "Inlaid with gold.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.2, + poise_strength: 1.0, + speed: 1.2, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/stone-0.ron b/assets/common/items/weapons/hammer_1h/stone-0.ron new file mode 100644 index 0000000000..5e70888a6a --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/stone-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Spine Mace", + description: "Bone(s?)", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 0.7, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/stone-1.ron b/assets/common/items/weapons/hammer_1h/stone-1.ron new file mode 100644 index 0000000000..8430318b44 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/stone-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Stone Hammer", + description: "Chiseled from stone.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 1.0, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/wood-0.ron b/assets/common/items/weapons/hammer_1h/wood-0.ron new file mode 100644 index 0000000000..e75be1d533 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/wood-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Stump Club", + description: "All that remains of a tree...", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 0.8, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: Low, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/hammer_1h/wood-1.ron b/assets/common/items/weapons/hammer_1h/wood-1.ron new file mode 100644 index 0000000000..d7fcc49fe8 --- /dev/null +++ b/assets/common/items/weapons/hammer_1h/wood-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Wooden Cudgel", + description: "Carved from wood.", + kind: Tool(( + kind: Hammer, + hands: One, + stats: ( + equip_time_millis: 500, + power: 0.5, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Low, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sceptre/fork0.ron b/assets/common/items/weapons/sceptre/fork0.ron index 569d542e4b..d30f79301b 100644 --- a/assets/common/items/weapons/sceptre/fork0.ron +++ b/assets/common/items/weapons/sceptre/fork0.ron @@ -1,17 +1,16 @@ ItemDef( name: "Infused Fork", - description: "Shamanistic energies brought this piece of wood to life again.", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 2.0, - poise_strength: 1.5, - speed: 0.8 - ), - ) - ), + description: "Shamanistic energies brought this piece of wood to life again.", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 2.0, + poise_strength: 1.5, + speed: 0.8, + ), + )), quality: High, tags: [], ) diff --git a/assets/common/items/weapons/sceptre/loops0.ron b/assets/common/items/weapons/sceptre/loops0.ron index 1bcb6a9186..2cd8527a5e 100644 --- a/assets/common/items/weapons/sceptre/loops0.ron +++ b/assets/common/items/weapons/sceptre/loops0.ron @@ -1,17 +1,16 @@ ItemDef( name: "Soothing Loop", - description: "Do you really want to live forever?", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 1.2, - poise_strength: 1.5, - speed: 1.5 - ), - ) - ), + description: "Do you really want to live forever?", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 1.2, + poise_strength: 1.5, + speed: 1.5, + ), + )), quality: High, tags: [], ) diff --git a/assets/common/items/weapons/sceptre/moon0.ron b/assets/common/items/weapons/sceptre/moon0.ron index 55f0f4c8eb..2daab8c053 100644 --- a/assets/common/items/weapons/sceptre/moon0.ron +++ b/assets/common/items/weapons/sceptre/moon0.ron @@ -1,17 +1,16 @@ ItemDef( name: "Crescent Saviour", - description: "Trusty companion by day and night.", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 1.6, - poise_strength: 1.5, - speed: 0.5 - ), - ) - ), + description: "Trusty companion by day and night.", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 1.6, + poise_strength: 1.5, + speed: 0.5, + ), + )), quality: Common, tags: [], ) diff --git a/assets/common/items/weapons/sceptre/root_evil.ron b/assets/common/items/weapons/sceptre/root_evil.ron index 81cc14bb31..496aef8c61 100644 --- a/assets/common/items/weapons/sceptre/root_evil.ron +++ b/assets/common/items/weapons/sceptre/root_evil.ron @@ -1,17 +1,16 @@ ItemDef( name: "The Root of Evil", - description: "'Everything comes at a price...'", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 4.0, - poise_strength: 1.5, - speed: 0.5 - ), - ) - ), + description: "\'Everything comes at a price...\'", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 4.0, + poise_strength: 1.5, + speed: 0.5, + ), + )), quality: Legendary, tags: [], ) diff --git a/assets/common/items/weapons/sceptre/root_green0.ron b/assets/common/items/weapons/sceptre/root_green0.ron index 58de4d9e49..655380b9a2 100644 --- a/assets/common/items/weapons/sceptre/root_green0.ron +++ b/assets/common/items/weapons/sceptre/root_green0.ron @@ -1,17 +1,16 @@ ItemDef( name: "Twitching Root", - description: "Sparkles from living energy.", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 3.5, - poise_strength: 1.5, - speed: 0.4 - ), - ) - ), + description: "Sparkles from living energy.", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 3.5, + poise_strength: 1.5, + speed: 0.4, + ), + )), quality: Moderate, tags: [], ) diff --git a/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron b/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron index b892b01d27..83ff7db798 100644 --- a/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron +++ b/assets/common/items/weapons/sceptre/sceptre_velorite_0.ron @@ -1,17 +1,16 @@ ItemDef( name: "Velorite Sceptre", - description: "Heals your allies with the mystical Velorite aura.", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 1.2, - poise_strength: 1.5, - speed: 1.6 - ), - ) - ), + description: "Heals your allies with the mystical Velorite aura.", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 1.2, + poise_strength: 1.5, + speed: 1.6, + ), + )), quality: Epic, tags: [], ) diff --git a/assets/common/items/weapons/sceptre/staff_nature.ron b/assets/common/items/weapons/sceptre/staff_nature.ron index 879edc92b5..459b49280a 100644 --- a/assets/common/items/weapons/sceptre/staff_nature.ron +++ b/assets/common/items/weapons/sceptre/staff_nature.ron @@ -1,17 +1,16 @@ ItemDef( name: "Sceptre of Regeneration", - description: "Heals your allies with the power of nature.", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 0.91, - poise_strength: 0.5, - speed: 1.1 - ), - ) - ), + description: "Heals your allies with the power of nature.", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 0.91, + poise_strength: 0.5, + speed: 1.1, + ), + )), quality: Moderate, tags: [], ) diff --git a/assets/common/items/weapons/sceptre/starter_sceptre.ron b/assets/common/items/weapons/sceptre/starter_sceptre.ron index bb862f5ac8..7f8adc23a3 100644 --- a/assets/common/items/weapons/sceptre/starter_sceptre.ron +++ b/assets/common/items/weapons/sceptre/starter_sceptre.ron @@ -3,6 +3,7 @@ ItemDef( description: "Heals your allies with the power of nature.", kind: Tool(( kind: Sceptre, + hands: Two, stats: ( equip_time_millis: 400, power: 0.5, diff --git a/assets/common/items/weapons/sceptre/totem_green.ron b/assets/common/items/weapons/sceptre/totem_green.ron index 529639f1bd..cbe3fa2f88 100644 --- a/assets/common/items/weapons/sceptre/totem_green.ron +++ b/assets/common/items/weapons/sceptre/totem_green.ron @@ -1,18 +1,16 @@ ItemDef( name: "Gnarling Pride", - description: "Territory marker of a Gnarling tribe. - Infused with healing powers.", - kind: Tool( - ( - kind: Sceptre, - stats: ( - equip_time_millis: 400, - power: 1.0, - poise_strength: 1.5, - speed: 1.2 - ), - ) - ), + description: "Territory marker of a Gnarling tribe.\nInfused with healing powers.", + kind: Tool(( + kind: Sceptre, + hands: Two, + stats: ( + equip_time_millis: 400, + power: 1.0, + poise_strength: 1.5, + speed: 1.2, + ), + )), quality: Moderate, tags: [], ) diff --git a/assets/common/items/weapons/shield/shield_1.ron b/assets/common/items/weapons/shield/shield_1.ron index c295f5f02b..dfecf944ee 100644 --- a/assets/common/items/weapons/shield/shield_1.ron +++ b/assets/common/items/weapons/shield/shield_1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Should withstand a few more hits, hopefully...", kind: Tool(( kind: Shield, + hands: One, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/staff/amethyst_staff.ron b/assets/common/items/weapons/staff/amethyst_staff.ron index 168d5fe37a..ac176501f4 100644 --- a/assets/common/items/weapons/staff/amethyst_staff.ron +++ b/assets/common/items/weapons/staff/amethyst_staff.ron @@ -3,6 +3,7 @@ ItemDef( description: "The amethyst faintly glows.", kind: Tool(( kind: Staff, + hands: Two, stats: ( equip_time_millis: 300, power: 1.5, diff --git a/assets/common/items/weapons/staff/bone_staff.ron b/assets/common/items/weapons/staff/bone_staff.ron index 1c1066379b..2009e3b7c3 100644 --- a/assets/common/items/weapons/staff/bone_staff.ron +++ b/assets/common/items/weapons/staff/bone_staff.ron @@ -3,6 +3,7 @@ ItemDef( description: "There\'s a red gem suspended in the bones.", kind: Tool(( kind: Staff, + hands: Two, stats: ( equip_time_millis: 300, power: 1.0, diff --git a/assets/common/items/weapons/staff/cultist_staff.ron b/assets/common/items/weapons/staff/cultist_staff.ron index 6394258a83..e3976b61c4 100644 --- a/assets/common/items/weapons/staff/cultist_staff.ron +++ b/assets/common/items/weapons/staff/cultist_staff.ron @@ -3,6 +3,7 @@ ItemDef( description: "The fire gives off no heat.", kind: Tool(( kind: Staff, + hands: Two, stats: ( equip_time_millis: 300, power: 2.0, diff --git a/assets/common/items/weapons/staff/staff_1.ron b/assets/common/items/weapons/staff/staff_1.ron index e0f4d16761..b720135ef0 100644 --- a/assets/common/items/weapons/staff/staff_1.ron +++ b/assets/common/items/weapons/staff/staff_1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Walking stick with a sharpened end.", kind: Tool(( kind: Staff, + hands: Two, stats: ( equip_time_millis: 200, power: 0.5, diff --git a/assets/common/items/weapons/staff/starter_staff.ron b/assets/common/items/weapons/staff/starter_staff.ron index a231366190..1190c9fbcf 100644 --- a/assets/common/items/weapons/staff/starter_staff.ron +++ b/assets/common/items/weapons/staff/starter_staff.ron @@ -3,6 +3,7 @@ ItemDef( description: "Smells like resin and magic.", kind: Tool(( kind: Staff, + hands: Two, stats: ( equip_time_millis: 300, power: 0.5, diff --git a/assets/common/items/weapons/sword/cultist_purp_2h-0.ron b/assets/common/items/weapons/sword/cultist_purp_2h-0.ron index 017a90786e..b3175b6c2a 100644 --- a/assets/common/items/weapons/sword/cultist_purp_2h-0.ron +++ b/assets/common/items/weapons/sword/cultist_purp_2h-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "This belonged to an evil Cult Leader.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 2.0, diff --git a/assets/common/items/weapons/sword/frost_cleaver_2h-0.ron b/assets/common/items/weapons/sword/frost_cleaver_2h-0.ron index 303d2ebdbb..50ae1251dd 100644 --- a/assets/common/items/weapons/sword/frost_cleaver_2h-0.ron +++ b/assets/common/items/weapons/sword/frost_cleaver_2h-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "Radiates a freezing aura.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.7, diff --git a/assets/common/items/weapons/sword/frost_cleaver_2h-1.ron b/assets/common/items/weapons/sword/frost_cleaver_2h-1.ron index bf1c6c6752..d2bc2105ab 100644 --- a/assets/common/items/weapons/sword/frost_cleaver_2h-1.ron +++ b/assets/common/items/weapons/sword/frost_cleaver_2h-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "Forged from a single piece of eternal ice.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.95, diff --git a/assets/common/items/weapons/sword/greatsword_2h_dam-0.ron b/assets/common/items/weapons/sword/greatsword_2h_dam-0.ron index 83f84776f2..7476dc759b 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_dam-0.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_dam-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "The blade has been chipped quite a few times.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.8, diff --git a/assets/common/items/weapons/sword/greatsword_2h_dam-1.ron b/assets/common/items/weapons/sword/greatsword_2h_dam-1.ron index a58721d010..129bda61f0 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_dam-1.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_dam-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "The blade has been chipped quite a few times.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.8, diff --git a/assets/common/items/weapons/sword/greatsword_2h_dam-2.ron b/assets/common/items/weapons/sword/greatsword_2h_dam-2.ron index 4c638e3e1d..eb69c646d3 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_dam-2.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_dam-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "The blade has been chipped quite a few times.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.8, diff --git a/assets/common/items/weapons/sword/greatsword_2h_fine-0.ron b/assets/common/items/weapons/sword/greatsword_2h_fine-0.ron index 83ed49dbeb..a9b5f746c9 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_fine-0.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_fine-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been polished and sharpened recently.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/sword/greatsword_2h_fine-1.ron b/assets/common/items/weapons/sword/greatsword_2h_fine-1.ron index ab941163ac..532c23a82f 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_fine-1.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_fine-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been polished and sharpened recently.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/sword/greatsword_2h_fine-2.ron b/assets/common/items/weapons/sword/greatsword_2h_fine-2.ron index c8d906c694..2ce295e216 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_fine-2.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_fine-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been polished and sharpened recently.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.4, diff --git a/assets/common/items/weapons/sword/greatsword_2h_orn-0.ron b/assets/common/items/weapons/sword/greatsword_2h_orn-0.ron index 6cd0df19e3..083b0c2813 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_orn-0.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_orn-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "The sword\'s almost a work of art.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.7, diff --git a/assets/common/items/weapons/sword/greatsword_2h_orn-1.ron b/assets/common/items/weapons/sword/greatsword_2h_orn-1.ron index 6cd0df19e3..083b0c2813 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_orn-1.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_orn-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "The sword\'s almost a work of art.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.7, diff --git a/assets/common/items/weapons/sword/greatsword_2h_orn-2.ron b/assets/common/items/weapons/sword/greatsword_2h_orn-2.ron index 45b21e0054..015e267374 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_orn-2.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_orn-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "The sword\'s almost a work of art.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.7, diff --git a/assets/common/items/weapons/sword/greatsword_2h_simple-0.ron b/assets/common/items/weapons/sword/greatsword_2h_simple-0.ron index df0a11c561..7d074c0aad 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_simple-0.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_simple-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been well used.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.1, diff --git a/assets/common/items/weapons/sword/greatsword_2h_simple-1.ron b/assets/common/items/weapons/sword/greatsword_2h_simple-1.ron index df0a11c561..7d074c0aad 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_simple-1.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_simple-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been well used.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.1, diff --git a/assets/common/items/weapons/sword/greatsword_2h_simple-2.ron b/assets/common/items/weapons/sword/greatsword_2h_simple-2.ron index 533f314e3a..a94d87d5ae 100644 --- a/assets/common/items/weapons/sword/greatsword_2h_simple-2.ron +++ b/assets/common/items/weapons/sword/greatsword_2h_simple-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been well used.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.1, diff --git a/assets/common/items/weapons/sword/long_2h_dam-0.ron b/assets/common/items/weapons/sword/long_2h_dam-0.ron index 6dc87df30c..e311f47e44 100644 --- a/assets/common/items/weapons/sword/long_2h_dam-0.ron +++ b/assets/common/items/weapons/sword/long_2h_dam-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s slightly cracked.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.6, diff --git a/assets/common/items/weapons/sword/long_2h_dam-1.ron b/assets/common/items/weapons/sword/long_2h_dam-1.ron index 6dc87df30c..e311f47e44 100644 --- a/assets/common/items/weapons/sword/long_2h_dam-1.ron +++ b/assets/common/items/weapons/sword/long_2h_dam-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s slightly cracked.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.6, diff --git a/assets/common/items/weapons/sword/long_2h_dam-2.ron b/assets/common/items/weapons/sword/long_2h_dam-2.ron index 6dc87df30c..e311f47e44 100644 --- a/assets/common/items/weapons/sword/long_2h_dam-2.ron +++ b/assets/common/items/weapons/sword/long_2h_dam-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s slightly cracked.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.6, diff --git a/assets/common/items/weapons/sword/long_2h_dam-3.ron b/assets/common/items/weapons/sword/long_2h_dam-3.ron index 6dc87df30c..e311f47e44 100644 --- a/assets/common/items/weapons/sword/long_2h_dam-3.ron +++ b/assets/common/items/weapons/sword/long_2h_dam-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s slightly cracked.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.6, diff --git a/assets/common/items/weapons/sword/long_2h_dam-4.ron b/assets/common/items/weapons/sword/long_2h_dam-4.ron index 6dc87df30c..e311f47e44 100644 --- a/assets/common/items/weapons/sword/long_2h_dam-4.ron +++ b/assets/common/items/weapons/sword/long_2h_dam-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s slightly cracked.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.6, diff --git a/assets/common/items/weapons/sword/long_2h_dam-5.ron b/assets/common/items/weapons/sword/long_2h_dam-5.ron index 6dc87df30c..e311f47e44 100644 --- a/assets/common/items/weapons/sword/long_2h_dam-5.ron +++ b/assets/common/items/weapons/sword/long_2h_dam-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s slightly cracked.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.6, diff --git a/assets/common/items/weapons/sword/long_2h_fine-0.ron b/assets/common/items/weapons/sword/long_2h_fine-0.ron index caba633326..52ee1dc773 100644 --- a/assets/common/items/weapons/sword/long_2h_fine-0.ron +++ b/assets/common/items/weapons/sword/long_2h_fine-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It shines when you hold it up to the light.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/sword/long_2h_fine-1.ron b/assets/common/items/weapons/sword/long_2h_fine-1.ron index caba633326..52ee1dc773 100644 --- a/assets/common/items/weapons/sword/long_2h_fine-1.ron +++ b/assets/common/items/weapons/sword/long_2h_fine-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It shines when you hold it up to the light.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/sword/long_2h_fine-2.ron b/assets/common/items/weapons/sword/long_2h_fine-2.ron index caba633326..52ee1dc773 100644 --- a/assets/common/items/weapons/sword/long_2h_fine-2.ron +++ b/assets/common/items/weapons/sword/long_2h_fine-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "It shines when you hold it up to the light.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/sword/long_2h_fine-3.ron b/assets/common/items/weapons/sword/long_2h_fine-3.ron index fd58f8cee2..866a443fc7 100644 --- a/assets/common/items/weapons/sword/long_2h_fine-3.ron +++ b/assets/common/items/weapons/sword/long_2h_fine-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "It shines when you hold it up to the light.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/sword/long_2h_fine-4.ron b/assets/common/items/weapons/sword/long_2h_fine-4.ron index caba633326..52ee1dc773 100644 --- a/assets/common/items/weapons/sword/long_2h_fine-4.ron +++ b/assets/common/items/weapons/sword/long_2h_fine-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "It shines when you hold it up to the light.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/sword/long_2h_fine-5.ron b/assets/common/items/weapons/sword/long_2h_fine-5.ron index 3146f176bd..2858c3e710 100644 --- a/assets/common/items/weapons/sword/long_2h_fine-5.ron +++ b/assets/common/items/weapons/sword/long_2h_fine-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "It shines when you hold it up to the light.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.2, diff --git a/assets/common/items/weapons/sword/long_2h_orn-0.ron b/assets/common/items/weapons/sword/long_2h_orn-0.ron index bf0602dfef..0404b5302e 100644 --- a/assets/common/items/weapons/sword/long_2h_orn-0.ron +++ b/assets/common/items/weapons/sword/long_2h_orn-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s probably the weapon of some noble.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.5, diff --git a/assets/common/items/weapons/sword/long_2h_orn-1.ron b/assets/common/items/weapons/sword/long_2h_orn-1.ron index 766d34a0b7..99cc5766ad 100644 --- a/assets/common/items/weapons/sword/long_2h_orn-1.ron +++ b/assets/common/items/weapons/sword/long_2h_orn-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s probably the weapon of some noble.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.5, diff --git a/assets/common/items/weapons/sword/long_2h_orn-2.ron b/assets/common/items/weapons/sword/long_2h_orn-2.ron index bf0602dfef..0404b5302e 100644 --- a/assets/common/items/weapons/sword/long_2h_orn-2.ron +++ b/assets/common/items/weapons/sword/long_2h_orn-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s probably the weapon of some noble.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.5, diff --git a/assets/common/items/weapons/sword/long_2h_orn-3.ron b/assets/common/items/weapons/sword/long_2h_orn-3.ron index bf0602dfef..0404b5302e 100644 --- a/assets/common/items/weapons/sword/long_2h_orn-3.ron +++ b/assets/common/items/weapons/sword/long_2h_orn-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s probably the weapon of some noble.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.5, diff --git a/assets/common/items/weapons/sword/long_2h_orn-4.ron b/assets/common/items/weapons/sword/long_2h_orn-4.ron index 766d34a0b7..99cc5766ad 100644 --- a/assets/common/items/weapons/sword/long_2h_orn-4.ron +++ b/assets/common/items/weapons/sword/long_2h_orn-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s probably the weapon of some noble.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.5, diff --git a/assets/common/items/weapons/sword/long_2h_orn-5.ron b/assets/common/items/weapons/sword/long_2h_orn-5.ron index 766d34a0b7..99cc5766ad 100644 --- a/assets/common/items/weapons/sword/long_2h_orn-5.ron +++ b/assets/common/items/weapons/sword/long_2h_orn-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s probably the weapon of some noble.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.5, diff --git a/assets/common/items/weapons/sword/long_2h_simple-0.ron b/assets/common/items/weapons/sword/long_2h_simple-0.ron index 05103fb88d..d8ca455f9a 100644 --- a/assets/common/items/weapons/sword/long_2h_simple-0.ron +++ b/assets/common/items/weapons/sword/long_2h_simple-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It was well maintained by it\'s previous owner.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.9, diff --git a/assets/common/items/weapons/sword/long_2h_simple-1.ron b/assets/common/items/weapons/sword/long_2h_simple-1.ron index 05103fb88d..d8ca455f9a 100644 --- a/assets/common/items/weapons/sword/long_2h_simple-1.ron +++ b/assets/common/items/weapons/sword/long_2h_simple-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It was well maintained by it\'s previous owner.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.9, diff --git a/assets/common/items/weapons/sword/long_2h_simple-2.ron b/assets/common/items/weapons/sword/long_2h_simple-2.ron index 7b94fed5f0..5f41e99460 100644 --- a/assets/common/items/weapons/sword/long_2h_simple-2.ron +++ b/assets/common/items/weapons/sword/long_2h_simple-2.ron @@ -3,6 +3,7 @@ ItemDef( description: "It was well maintained by it\'s previous owner.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.9, diff --git a/assets/common/items/weapons/sword/long_2h_simple-3.ron b/assets/common/items/weapons/sword/long_2h_simple-3.ron index 05103fb88d..d8ca455f9a 100644 --- a/assets/common/items/weapons/sword/long_2h_simple-3.ron +++ b/assets/common/items/weapons/sword/long_2h_simple-3.ron @@ -3,6 +3,7 @@ ItemDef( description: "It was well maintained by it\'s previous owner.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.9, diff --git a/assets/common/items/weapons/sword/long_2h_simple-4.ron b/assets/common/items/weapons/sword/long_2h_simple-4.ron index 05103fb88d..d8ca455f9a 100644 --- a/assets/common/items/weapons/sword/long_2h_simple-4.ron +++ b/assets/common/items/weapons/sword/long_2h_simple-4.ron @@ -3,6 +3,7 @@ ItemDef( description: "It was well maintained by it\'s previous owner.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.9, diff --git a/assets/common/items/weapons/sword/long_2h_simple-5.ron b/assets/common/items/weapons/sword/long_2h_simple-5.ron index 05103fb88d..d8ca455f9a 100644 --- a/assets/common/items/weapons/sword/long_2h_simple-5.ron +++ b/assets/common/items/weapons/sword/long_2h_simple-5.ron @@ -3,6 +3,7 @@ ItemDef( description: "It was well maintained by it\'s previous owner.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 0.9, diff --git a/assets/common/items/weapons/sword/short_sword_0.ron b/assets/common/items/weapons/sword/short_sword_0.ron index 1788776740..ad78e5affc 100644 --- a/assets/common/items/weapons/sword/short_sword_0.ron +++ b/assets/common/items/weapons/sword/short_sword_0.ron @@ -3,6 +3,7 @@ ItemDef( description: "There\'s blood encrusted on the blade.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 400, power: 0.75, diff --git a/assets/common/items/weapons/sword/starter_sword.ron b/assets/common/items/weapons/sword/starter_sword.ron index ce4d00d23a..faaeaea880 100644 --- a/assets/common/items/weapons/sword/starter_sword.ron +++ b/assets/common/items/weapons/sword/starter_sword.ron @@ -3,6 +3,7 @@ ItemDef( description: "Held together by Rust and hope.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 300, power: 0.5, diff --git a/assets/common/items/weapons/sword/wood_sword.ron b/assets/common/items/weapons/sword/wood_sword.ron index 968781c53d..3ad9b2ab9e 100644 --- a/assets/common/items/weapons/sword/wood_sword.ron +++ b/assets/common/items/weapons/sword/wood_sword.ron @@ -3,6 +3,7 @@ ItemDef( description: "The resin glows.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 400, power: 0.8, diff --git a/assets/common/items/weapons/sword/zweihander_sword_0.ron b/assets/common/items/weapons/sword/zweihander_sword_0.ron index 966abd2a9b..c4dade8430 100644 --- a/assets/common/items/weapons/sword/zweihander_sword_0.ron +++ b/assets/common/items/weapons/sword/zweihander_sword_0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s a big sword, and sharp too.", kind: Tool(( kind: Sword, + hands: Two, stats: ( equip_time_millis: 500, power: 1.5, diff --git a/assets/common/items/weapons/sword_1h/bloodsteel-0.ron b/assets/common/items/weapons/sword_1h/bloodsteel-0.ron new file mode 100644 index 0000000000..0186f5b007 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/bloodsteel-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bloodrose", + description: "Infused with blood.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.45, + poise_strength: 1.0, + speed: 1.3, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/bloodsteel-1.ron b/assets/common/items/weapons/sword_1h/bloodsteel-1.ron new file mode 100644 index 0000000000..acc31f3549 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/bloodsteel-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bloodsteel Sword", + description: "Infused with blood.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 2.0, + poise_strength: 1.0, + speed: 0.75, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/bloodsteel-2.ron b/assets/common/items/weapons/sword_1h/bloodsteel-2.ron new file mode 100644 index 0000000000..b72acb86b8 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/bloodsteel-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Razorblade", + description: "Infused with blood.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.75, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/bronze-0.ron b/assets/common/items/weapons/sword_1h/bronze-0.ron new file mode 100644 index 0000000000..72650414ea --- /dev/null +++ b/assets/common/items/weapons/sword_1h/bronze-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bronze Khopesh", + description: "Forged with bronze.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.65, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/bronze-1.ron b/assets/common/items/weapons/sword_1h/bronze-1.ron new file mode 100644 index 0000000000..b87e296ab9 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/bronze-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Bronze Shortsword", + description: "Forged with bronze.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.75, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/bronze-2.ron b/assets/common/items/weapons/sword_1h/bronze-2.ron new file mode 100644 index 0000000000..13905573ca --- /dev/null +++ b/assets/common/items/weapons/sword_1h/bronze-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Fanged Blade", + description: "Forged with bronze.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.85, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/cobalt-0.ron b/assets/common/items/weapons/sword_1h/cobalt-0.ron new file mode 100644 index 0000000000..22b53da46f --- /dev/null +++ b/assets/common/items/weapons/sword_1h/cobalt-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Cobalt Shortsword", + description: "Forged with cobalt.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.3, + poise_strength: 1.0, + speed: 1.2, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/cobalt-1.ron b/assets/common/items/weapons/sword_1h/cobalt-1.ron new file mode 100644 index 0000000000..8a5e1f9fc7 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/cobalt-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Cobalt Warblade", + description: "Forged with cobalt.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.7, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/cobalt-2.ron b/assets/common/items/weapons/sword_1h/cobalt-2.ron new file mode 100644 index 0000000000..1e6251d382 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/cobalt-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Falchion", + description: "Forged with cobalt.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.4, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/cobalt-3.ron b/assets/common/items/weapons/sword_1h/cobalt-3.ron new file mode 100644 index 0000000000..3cdbe8ba81 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/cobalt-3.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Forked Sword", + description: "Forged with cobalt.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.6, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/iron-0.ron b/assets/common/items/weapons/sword_1h/iron-0.ron new file mode 100644 index 0000000000..11b89e69fc --- /dev/null +++ b/assets/common/items/weapons/sword_1h/iron-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Gladius", + description: "Forged with iron.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.0, + poise_strength: 1.0, + speed: 1.0, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/iron-1.ron b/assets/common/items/weapons/sword_1h/iron-1.ron new file mode 100644 index 0000000000..f4335f3740 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/iron-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Iron Khopesh", + description: "Forged with iron.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.9, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/iron-2.ron b/assets/common/items/weapons/sword_1h/iron-2.ron new file mode 100644 index 0000000000..479d5a0b80 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/iron-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Iron Scimitar", + description: "Forged with iron.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.2, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/iron-3.ron b/assets/common/items/weapons/sword_1h/iron-3.ron new file mode 100644 index 0000000000..8ab9418dae --- /dev/null +++ b/assets/common/items/weapons/sword_1h/iron-3.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Swift Rapier", + description: "Forged with iron.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 0.8, + poise_strength: 1.0, + speed: 1.2, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/iron-4.ron b/assets/common/items/weapons/sword_1h/iron-4.ron new file mode 100644 index 0000000000..6a1fc6ea43 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/iron-4.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Sword of Man", + description: "Forged with iron.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.1, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Common, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/obsidian-0.ron b/assets/common/items/weapons/sword_1h/obsidian-0.ron new file mode 100644 index 0000000000..a7bbcfe291 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/obsidian-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Macuahuitl", + description: "Embedded with obsidian.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.95, + poise_strength: 1.0, + speed: 0.8, + ), + )), + quality: High, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/orichalcum-0.ron b/assets/common/items/weapons/sword_1h/orichalcum-0.ron new file mode 100644 index 0000000000..d325243e10 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/orichalcum-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Diamond Blade", + description: "Forged with orichalcum.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 2.1, + poise_strength: 1.0, + speed: 0.9, + ), + )), + quality: Epic, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/orichalcum-1.ron b/assets/common/items/weapons/sword_1h/orichalcum-1.ron new file mode 100644 index 0000000000..a6b5bb670c --- /dev/null +++ b/assets/common/items/weapons/sword_1h/orichalcum-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Orichalcum Sword", + description: "Forged with orichalcum.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.9, + poise_strength: 1.0, + speed: 1.1, + ), + )), + quality: Epic, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/steel-0.ron b/assets/common/items/weapons/sword_1h/steel-0.ron new file mode 100644 index 0000000000..d7cf2121e7 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/steel-0.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Butcher's Blade", + description: "Forged with steel.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.5, + poise_strength: 1.0, + speed: 0.75, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/steel-1.ron b/assets/common/items/weapons/sword_1h/steel-1.ron new file mode 100644 index 0000000000..56016c62d1 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/steel-1.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Noble Scimitar", + description: "Forged with steel.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.3, + poise_strength: 1.0, + speed: .95, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/steel-2.ron b/assets/common/items/weapons/sword_1h/steel-2.ron new file mode 100644 index 0000000000..eede6c0e38 --- /dev/null +++ b/assets/common/items/weapons/sword_1h/steel-2.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Royal Guard", + description: "Forged with steel.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.05, + poise_strength: 1.0, + speed: 1.2, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/sword_1h/steel-3.ron b/assets/common/items/weapons/sword_1h/steel-3.ron new file mode 100644 index 0000000000..22bc629bef --- /dev/null +++ b/assets/common/items/weapons/sword_1h/steel-3.ron @@ -0,0 +1,16 @@ +ItemDef( + name: "Steel Sabre", + description: "Forged with steel.", + kind: Tool(( + kind: Sword, + hands: One, + stats: ( + equip_time_millis: 400, + power: 1.2, + poise_strength: 1.0, + speed: 1.05, + ), + )), + quality: Moderate, + tags: [], +) \ No newline at end of file diff --git a/assets/common/items/weapons/tool/broom.ron b/assets/common/items/weapons/tool/broom.ron index 7b806a4a51..1e7f2feda0 100644 --- a/assets/common/items/weapons/tool/broom.ron +++ b/assets/common/items/weapons/tool/broom.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s beginning to fall apart.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/tool/fishing_rod.ron b/assets/common/items/weapons/tool/fishing_rod.ron index 739dff74f4..e672813a66 100644 --- a/assets/common/items/weapons/tool/fishing_rod.ron +++ b/assets/common/items/weapons/tool/fishing_rod.ron @@ -3,6 +3,7 @@ ItemDef( description: "Smells of fish.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/tool/hoe.ron b/assets/common/items/weapons/tool/hoe.ron index e8dc9aa885..cc7c631abc 100644 --- a/assets/common/items/weapons/tool/hoe.ron +++ b/assets/common/items/weapons/tool/hoe.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s stained with dirt.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/tool/pickaxe.ron b/assets/common/items/weapons/tool/pickaxe.ron index 0d951852fa..0c1e14d01b 100644 --- a/assets/common/items/weapons/tool/pickaxe.ron +++ b/assets/common/items/weapons/tool/pickaxe.ron @@ -3,6 +3,7 @@ ItemDef( description: "It has a chipped edge.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/tool/pitchfork.ron b/assets/common/items/weapons/tool/pitchfork.ron index e3198c8e33..53ea6a471c 100644 --- a/assets/common/items/weapons/tool/pitchfork.ron +++ b/assets/common/items/weapons/tool/pitchfork.ron @@ -3,6 +3,7 @@ ItemDef( description: "One of the prongs is broken.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/tool/rake.ron b/assets/common/items/weapons/tool/rake.ron index 7daf778520..cd582b1a3e 100644 --- a/assets/common/items/weapons/tool/rake.ron +++ b/assets/common/items/weapons/tool/rake.ron @@ -3,6 +3,7 @@ ItemDef( description: "Held together with twine.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/tool/shovel-0.ron b/assets/common/items/weapons/tool/shovel-0.ron index 4b58f4d110..1da67f9e4b 100644 --- a/assets/common/items/weapons/tool/shovel-0.ron +++ b/assets/common/items/weapons/tool/shovel-0.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s covered in manure.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/common/items/weapons/tool/shovel-1.ron b/assets/common/items/weapons/tool/shovel-1.ron index 08893389ac..bf58d91c20 100644 --- a/assets/common/items/weapons/tool/shovel-1.ron +++ b/assets/common/items/weapons/tool/shovel-1.ron @@ -3,6 +3,7 @@ ItemDef( description: "It\'s been recently cleaned.", kind: Tool(( kind: Farming, + hands: Two, stats: ( equip_time_millis: 400, power: 1.0, diff --git a/assets/voxygen/item_image_manifest.ron b/assets/voxygen/item_image_manifest.ron index 2f2ce8aa90..203887d3c0 100644 --- a/assets/voxygen/item_image_manifest.ron +++ b/assets/voxygen/item_image_manifest.ron @@ -77,10 +77,6 @@ "voxel.weapon.bow.longbow_horn-0", (0.0, 0.0, 0.0), (90.0, 90.0, 0.0), 1.0, ), - Tool("common.items.npc_weapons.bow.horn_longbow-0"): VoxTrans( - "voxel.weapon.bow.longbow_horn-0", - (0.0, 0.0, 0.0), (90.0, 90.0, 0.0), 1.0, - ), Tool("common.items.weapons.bow.iron_longbow-0"): VoxTrans( "voxel.weapon.bow.longbow_iron-0", (0.0, 0.0, 0.0), (90.0, 90.0, 0.0), 1.0, @@ -98,10 +94,6 @@ "voxel.weapon.dagger.dagger_rusty", (0.0, 0.0, -4.0), (-120.0, 90.0, 0.0), 1.1, ), - Tool("common.items.npc_weapons.dagger.starter_dagger"): VoxTrans( - "voxel.weapon.dagger.dagger_rusty", - (0.0, 0.0, -4.0), (-120.0, 90.0, 0.0), 1.1, - ), Tool("common.items.weapons.dagger.basic_0"): VoxTrans( "voxel.weapon.dagger.dagger_basic-0", (0.0, 0.0, -4.0), (-120.0, 90.0, 0.0), 1.1, @@ -127,18 +119,10 @@ "voxel.weapon.sword.rusty_2h", (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.3, ), - Tool("common.items.npc_weapons.sword.starter_sword"): VoxTrans( - "voxel.weapon.sword.rusty_2h", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.3, - ), Tool("common.items.weapons.sword.zweihander_sword_0"): VoxTrans( "voxel.weapon.sword.zweihander_2h-0", (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), - Tool("common.items.npc_weapons.sword.zweihander_sword_0"): VoxTrans( - "voxel.weapon.sword.zweihander_2h-0", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.2, - ), Tool("common.items.weapons.sword.wood_sword"): VoxTrans( "voxel.weapon.sword.wood_ore_2h", (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.2, @@ -291,27 +275,104 @@ "voxel.weapon.sword.cultist_purp_2h-0", (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.5, ), - Tool("common.items.npc_weapons.sword.cultist_purp_2h-0"): VoxTrans( - "voxel.weapon.sword.cultist_purp_2h-0", + Tool("common.items.debug.admin_sword"): VoxTrans( + "voxel.weapon.sword.frost_cleaver-1", (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.5, ), - Tool("common.items.debug.cultist_purp_2h_boss-0"): VoxTrans( - "voxel.weapon.sword.cultist_purp_2h-0", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.5, + // 1h Swords + Tool("common.items.weapons.sword_1h.bloodsteel-0"): VoxTrans( + "voxel.weapon.sword_1h.bloodsteel-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), - Tool("common.items.npc_weapons.sword.cultist_purp_2h_boss-0"): VoxTrans( - "voxel.weapon.sword.cultist_purp_2h-0", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.5, + Tool("common.items.weapons.sword_1h.bloodsteel-1"): VoxTrans( + "voxel.weapon.sword_1h.bloodsteel-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.bloodsteel-2"): VoxTrans( + "voxel.weapon.sword_1h.bloodsteel-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.bronze-0"): VoxTrans( + "voxel.weapon.sword_1h.bronze-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.bronze-1"): VoxTrans( + "voxel.weapon.sword_1h.bronze-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.bronze-2"): VoxTrans( + "voxel.weapon.sword_1h.bronze-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.cobalt-0"): VoxTrans( + "voxel.weapon.sword_1h.cobalt-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.cobalt-1"): VoxTrans( + "voxel.weapon.sword_1h.cobalt-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.cobalt-2"): VoxTrans( + "voxel.weapon.sword_1h.cobalt-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.cobalt-3"): VoxTrans( + "voxel.weapon.sword_1h.cobalt-3", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.iron-0"): VoxTrans( + "voxel.weapon.sword_1h.iron-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.iron-1"): VoxTrans( + "voxel.weapon.sword_1h.iron-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.iron-2"): VoxTrans( + "voxel.weapon.sword_1h.iron-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.iron-3"): VoxTrans( + "voxel.weapon.sword_1h.iron-3", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.iron-4"): VoxTrans( + "voxel.weapon.sword_1h.iron-4", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.obsidian-0"): VoxTrans( + "voxel.weapon.sword_1h.obsidian-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.orichalcum-0"): VoxTrans( + "voxel.weapon.sword_1h.orichalcum-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.orichalcum-1"): VoxTrans( + "voxel.weapon.sword_1h.orichalcum-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.steel-0"): VoxTrans( + "voxel.weapon.sword_1h.steel-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.steel-1"): VoxTrans( + "voxel.weapon.sword_1h.steel-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.steel-2"): VoxTrans( + "voxel.weapon.sword_1h.steel-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.sword_1h.steel-3"): VoxTrans( + "voxel.weapon.sword_1h.steel-3", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), // Axes Tool("common.items.weapons.axe.starter_axe"): VoxTrans( "voxel.weapon.axe.2haxe_rusty", (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), - Tool("common.items.npc_weapons.axe.starter_axe"): VoxTrans( - "voxel.weapon.axe.2haxe_rusty", - (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, - ), Tool("common.items.weapons.axe.orc_axe-0"): VoxTrans( "voxel.weapon.axe.2haxe_orc-0", (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, @@ -432,8 +493,77 @@ "voxel.weapon.axe.2haxe_malachite-0", (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), - Tool("common.items.npc_weapons.axe.malachite_axe-0"): VoxTrans( - "voxel.weapon.axe.2haxe_malachite-0", + // 1h Axes + Tool("common.items.weapons.axe_1h.bloodsteel-0"): VoxTrans( + "voxel.weapon.axe_1h.bloodsteel-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.bloodsteel-1"): VoxTrans( + "voxel.weapon.axe_1h.bloodsteel-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.bronze-0"): VoxTrans( + "voxel.weapon.axe_1h.bronze-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.bronze-1"): VoxTrans( + "voxel.weapon.axe_1h.bronze-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.cobalt-0"): VoxTrans( + "voxel.weapon.axe_1h.cobalt-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.cobalt-1"): VoxTrans( + "voxel.weapon.axe_1h.cobalt-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.iron-0"): VoxTrans( + "voxel.weapon.axe_1h.iron-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.iron-1"): VoxTrans( + "voxel.weapon.axe_1h.iron-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.iron-2"): VoxTrans( + "voxel.weapon.axe_1h.iron-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.iron-3"): VoxTrans( + "voxel.weapon.axe_1h.iron-3", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.orichalcum-0"): VoxTrans( + "voxel.weapon.axe_1h.orichalcum-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.steel-0"): VoxTrans( + "voxel.weapon.axe_1h.steel-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.steel-1"): VoxTrans( + "voxel.weapon.axe_1h.steel-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.steel-2"): VoxTrans( + "voxel.weapon.axe_1h.steel-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.stone-0"): VoxTrans( + "voxel.weapon.axe_1h.stone-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.stone-1"): VoxTrans( + "voxel.weapon.axe_1h.stone-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.wood-0"): VoxTrans( + "voxel.weapon.axe_1h.wood-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.axe_1h.wood-1"): VoxTrans( + "voxel.weapon.axe_1h.wood-1", (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), // Hammers @@ -445,10 +575,6 @@ "voxel.weapon.hammer.2hhammer_rusty", (2.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.1, ), - Tool("common.items.npc_weapons.hammer.starter_hammer"): VoxTrans( - "voxel.weapon.hammer.2hhammer_rusty", - (2.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.1, - ), Tool("common.items.weapons.hammer.wood_hammer-0"): VoxTrans( "voxel.weapon.hammer.2hhammer_wood-0", (2.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.1, @@ -581,9 +707,74 @@ "voxel.weapon.hammer.cult_purp-0", (2.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.1, ), - Tool("common.items.npc_weapons.hammer.cultist_purp_2h-0"): VoxTrans( - "voxel.weapon.hammer.cult_purp-0", - (2.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.1, + // 1h Hammers + Tool("common.items.weapons.hammer_1h.bloodsteel-0"): VoxTrans( + "voxel.weapon.hammer_1h.bloodsteel-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.bloodsteel-1"): VoxTrans( + "voxel.weapon.hammer_1h.bloodsteel-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.bronze-0"): VoxTrans( + "voxel.weapon.hammer_1h.bronze-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.bronze-1"): VoxTrans( + "voxel.weapon.hammer_1h.bronze-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.cobalt-0"): VoxTrans( + "voxel.weapon.hammer_1h.cobalt-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.cobalt-1"): VoxTrans( + "voxel.weapon.hammer_1h.cobalt-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.iron-0"): VoxTrans( + "voxel.weapon.hammer_1h.iron-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.iron-1"): VoxTrans( + "voxel.weapon.hammer_1h.iron-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.iron-2"): VoxTrans( + "voxel.weapon.hammer_1h.iron-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.orichalcum-0"): VoxTrans( + "voxel.weapon.hammer_1h.orichalcum-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.steel-0"): VoxTrans( + "voxel.weapon.hammer_1h.steel-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.steel-1"): VoxTrans( + "voxel.weapon.hammer_1h.steel-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.steel-2"): VoxTrans( + "voxel.weapon.hammer_1h.steel-2", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.stone-0"): VoxTrans( + "voxel.weapon.hammer_1h.stone-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.stone-1"): VoxTrans( + "voxel.weapon.hammer_1h.stone-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.wood-0"): VoxTrans( + "voxel.weapon.hammer_1h.wood-0", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, + ), + Tool("common.items.weapons.hammer_1h.wood-1"): VoxTrans( + "voxel.weapon.hammer_1h.wood-1", + (1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), // Staffs Tool("common.items.weapons.staff.staff_1"): VoxTrans( @@ -598,10 +789,6 @@ "voxel.weapon.staff.firestaff_bone", (1.0, 0.0, 0.0), (-130., 90.0, 0.0), 1.2, ), - Tool("common.items.npc_weapons.staff.bone_staff"): VoxTrans( - "voxel.weapon.staff.firestaff_bone", - (1.0, 0.0, 0.0), (-130., 90.0, 0.0), 1.2, - ), Tool("common.items.weapons.staff.amethyst_staff"): VoxTrans( "voxel.weapon.staff.firestaff_amethyst", (1.0, 0.0, 0.0), (-130., 90.0, 0.0), 1.2, @@ -610,10 +797,6 @@ "voxel.weapon.staff.firestaff_cultist", (1.0, 0.0, 0.0), (-130., 90.0, 0.0), 1.2, ), - Tool("common.items.npc_weapons.staff.cultist_staff"): VoxTrans( - "voxel.weapon.staff.firestaff_cultist", - (1.0, 0.0, 0.0), (-130., 90.0, 0.0), 1.2, - ), // Healing Sceptres Tool("common.items.weapons.sceptre.starter_sceptre"): VoxTrans( "voxel.weapon.sceptre.wood-simple", @@ -656,10 +839,6 @@ "voxel.weapon.shield.wood-0", (0.0, 0.0, 0.0), (-90.0, 90.0, 0.0), 2.4, ), - Tool("common.items.npc_weapons.shield.shield_1"): VoxTrans( - "voxel.weapon.shield.wood-0", - (0.0, 0.0, 0.0), (-90.0, 90.0, 0.0), 2.4, - ), // Lanterns Lantern("Black0"): Png( "element.icons.lantern_black-0", @@ -706,38 +885,6 @@ "voxel.weapon.tool.shovel_gold", (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.2, ), - Tool("common.items.npc_weapons.tool.broom"): VoxTrans( - "voxel.weapon.tool.broom-0", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.1, - ), - Tool("common.items.npc_weapons.tool.hoe"): VoxTrans( - "voxel.weapon.tool.hoe_green", - (0.0, 0.0, 0.0), (130.0, 35.0, 180.0), 1.0, - ), - Tool("common.items.npc_weapons.tool.pitchfork"): VoxTrans( - "voxel.weapon.tool.pitchfork-0", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.1, - ), - Tool("common.items.npc_weapons.tool.rake"): VoxTrans( - "voxel.weapon.tool.rake-0", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.0, - ), - Tool("common.items.npc_weapons.tool.fishing_rod"): VoxTrans( - "voxel.weapon.tool.fishing_rod_blue-0", - (0.0, 0.0, 0.0), (90.0, 90.0, 0.0), 1.5, - ), - Tool("common.items.npc_weapons.tool.pickaxe"): VoxTrans( - "voxel.weapon.tool.pickaxe_green-0", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.0, - ), - Tool("common.items.npc_weapons.tool.shovel-0"): VoxTrans( - "voxel.weapon.tool.shovel_green", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.2, - ), - Tool("common.items.npc_weapons.tool.shovel-1"): VoxTrans( - "voxel.weapon.tool.shovel_gold", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.2, - ), // Other Utility(Collar): Png( @@ -1669,11 +1816,7 @@ (0.0, 0.0, 0.0), (-50.0, 30.0, 20.0), 1.1, ), // Debug Items - Tool("common.items.debug.boost"): VoxTrans( - "voxel.weapon.tool.broom_belzeshrub_purple", - (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.1, - ), - Tool("common.items.debug.possess"): VoxTrans( + Tool("common.items.debug.admin_stick"): VoxTrans( "voxel.weapon.tool.broom_belzeshrub_purple", (0.0, 0.0, 0.0), (-135.0, 90.0, 0.0), 1.1, ), diff --git a/assets/voxygen/voxel/humanoid_main_weapon_manifest.ron b/assets/voxygen/voxel/humanoid_main_weapon_manifest.ron index a12e8e6bf2..a36258c555 100644 --- a/assets/voxygen/voxel/humanoid_main_weapon_manifest.ron +++ b/assets/voxygen/voxel/humanoid_main_weapon_manifest.ron @@ -3,10 +3,6 @@ vox_spec: ("weapon.sword.rusty_2h", (-1.5, -6.5, -4.0)), color: None ), - "common.items.npc_weapons.sword.starter_sword": ( - vox_spec: ("weapon.sword.rusty_2h", (-1.5, -6.5, -4.0)), - color: None - ), "common.items.weapons.sword.wood_sword": ( vox_spec: ("weapon.sword.wood_ore_2h", (-1.5, -6.5, -4.0)), color: None @@ -15,10 +11,6 @@ vox_spec: ("weapon.sword.zweihander_2h-0", (-1.5, -6.5, -4.0)), color: None ), - "common.items.npc_weapons.sword.zweihander_sword_0": ( - vox_spec: ("weapon.sword.zweihander_2h-0", (-1.5, -6.5, -4.0)), - color: None - ), "common.items.weapons.sword.short_sword_0": ( vox_spec: ("weapon.sword.short_2h-0", (-1.5, -6.5, -1.0)), color: None @@ -171,18 +163,6 @@ vox_spec: ("weapon.sword.cultist_purp_2h-0", (-2.0, -4.5, -7.5)), color: None ), - "common.items.npc_weapons.sword.cultist_purp_2h-0": ( - vox_spec: ("weapon.sword.cultist_purp_2h-0", (-2.0, -4.5, -7.5)), - color: None - ), - "common.items.debug.cultist_purp_2h_boss-0": ( - vox_spec: ("weapon.sword.cultist_purp_2h-0", (-2.0, -4.5, -7.5)), - color: None - ), - "common.items.npc_weapons.sword.cultist_purp_2h_boss-0": ( - vox_spec: ("weapon.sword.cultist_purp_2h-0", (-2.0, -4.5, -7.5)), - color: None - ), "common.items.weapons.sword.frost_cleaver_2h-0": ( vox_spec: ("weapon.sword.frost_cleaver-0", (-2.0, -4.5, -7.5)), color: None @@ -191,11 +171,96 @@ vox_spec: ("weapon.sword.frost_cleaver-1", (-2.0, -4.5, -7.5)), color: None ), - // Axes - "common.items.npc_weapons.axe.starter_axe": ( - vox_spec: ("weapon.axe.2haxe_rusty", (-1.5, -5.0, -4.0)), + // 1h Swords + "common.items.weapons.sword_1h.bloodsteel-0": ( + vox_spec: ("weapon.sword_1h.bloodsteel-0", (-2.0, -4.5, -7.5)), color: None ), + "common.items.weapons.sword_1h.bloodsteel-1": ( + vox_spec: ("weapon.sword_1h.bloodsteel-1", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.bloodsteel-2": ( + vox_spec: ("weapon.sword_1h.bloodsteel-2", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.bronze-0": ( + vox_spec: ("weapon.sword_1h.bronze-0", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.bronze-1": ( + vox_spec: ("weapon.sword_1h.bronze-1", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.bronze-2": ( + vox_spec: ("weapon.sword_1h.bronze-2", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.cobalt-0": ( + vox_spec: ("weapon.sword_1h.cobalt-0", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.cobalt-1": ( + vox_spec: ("weapon.sword_1h.cobalt-1", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.cobalt-2": ( + vox_spec: ("weapon.sword_1h.cobalt-2", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.cobalt-3": ( + vox_spec: ("weapon.sword_1h.cobalt-3", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.iron-0": ( + vox_spec: ("weapon.sword_1h.iron-0", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.iron-1": ( + vox_spec: ("weapon.sword_1h.iron-1", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.iron-2": ( + vox_spec: ("weapon.sword_1h.iron-2", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.iron-3": ( + vox_spec: ("weapon.sword_1h.iron-3", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.iron-4": ( + vox_spec: ("weapon.sword_1h.iron-4", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.obsidian-0": ( + vox_spec: ("weapon.sword_1h.obsidian-0", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.orichalcum-0": ( + vox_spec: ("weapon.sword_1h.orichalcum-0", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.orichalcum-1": ( + vox_spec: ("weapon.sword_1h.orichalcum-1", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.steel-0": ( + vox_spec: ("weapon.sword_1h.steel-0", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.steel-1": ( + vox_spec: ("weapon.sword_1h.steel-1", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.steel-2": ( + vox_spec: ("weapon.sword_1h.steel-2", (-2.0, -4.5, -7.5)), + color: None + ), + "common.items.weapons.sword_1h.steel-3": ( + vox_spec: ("weapon.sword_1h.steel-3", (-2.0, -4.5, -7.5)), + color: None + ), + // Axes "common.items.weapons.axe.starter_axe": ( vox_spec: ("weapon.axe.2haxe_rusty", (-1.5, -5.0, -4.0)), color: None @@ -316,12 +381,81 @@ vox_spec: ("weapon.axe.2haxe_cobalt-0", (-1.5, -5.0, -5.5)), color: None ), - "common.items.npc_weapons.axe.malachite_axe-0": ( + "common.items.weapons.axe.malachite_axe-0": ( vox_spec: ("weapon.axe.2haxe_malachite-0", (-1.5, -5.0, -6.0)), color: None ), - "common.items.weapons.axe.malachite_axe-0": ( - vox_spec: ("weapon.axe.2haxe_malachite-0", (-1.5, -5.0, -6.0)), + // 1h Axes + "common.items.weapons.axe_1h.bloodsteel-0": ( + vox_spec: ("weapon.axe_1h.bloodsteel-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.bloodsteel-1": ( + vox_spec: ("weapon.axe_1h.bloodsteel-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.bronze-0": ( + vox_spec: ("weapon.axe_1h.bronze-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.bronze-1": ( + vox_spec: ("weapon.axe_1h.bronze-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.cobalt-0": ( + vox_spec: ("weapon.axe_1h.cobalt-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.cobalt-1": ( + vox_spec: ("weapon.axe_1h.cobalt-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.iron-0": ( + vox_spec: ("weapon.axe_1h.iron-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.iron-1": ( + vox_spec: ("weapon.axe_1h.iron-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.iron-2": ( + vox_spec: ("weapon.axe_1h.iron-2", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.iron-3": ( + vox_spec: ("weapon.axe_1h.iron-3", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.orichalcum-0": ( + vox_spec: ("weapon.axe_1h.orichalcum-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.steel-0": ( + vox_spec: ("weapon.axe_1h.steel-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.steel-1": ( + vox_spec: ("weapon.axe_1h.steel-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.steel-2": ( + vox_spec: ("weapon.axe_1h.steel-2", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.stone-0": ( + vox_spec: ("weapon.axe_1h.stone-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.stone-1": ( + vox_spec: ("weapon.axe_1h.stone-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.wood-0": ( + vox_spec: ("weapon.axe_1h.wood-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.axe_1h.wood-1": ( + vox_spec: ("weapon.axe_1h.wood-1", (-1.5, -5.0, -6.0)), color: None ), // Hammers @@ -333,10 +467,6 @@ vox_spec: ("weapon.hammer.2hhammer_rusty", (-2.5, -5.5, -4.5)), color: None ), - "common.items.npc_weapons.hammer.starter_hammer": ( - vox_spec: ("weapon.hammer.2hhammer_rusty", (-2.5, -5.5, -4.5)), - color: None - ), "common.items.weapons.hammer.wood_hammer-0": ( vox_spec: ("weapon.hammer.2hhammer_wood-0", (-3.5, -5.5, -4.5)), color: None @@ -469,20 +599,81 @@ vox_spec: ("weapon.hammer.cult_purp-0", (-3.5, -4.5, -5.0)), color: None ), - "common.items.npc_weapons.hammer.cultist_purp_2h-0": ( - vox_spec: ("weapon.hammer.cult_purp-0", (-3.5, -4.5, -5.0)), - color: None - ), /*"Craftsman": ( //TODO This should be a 1h hammer! vox_spec: ("weapon.hammer.craftsman", (-2.0, -5.0, -5.5)), color: None ),*/ - // Daggers - "common.items.weapons.dagger.starter_dagger": ( - vox_spec: ("weapon.dagger.dagger_rusty", (-1.5, -3.0, -3.0)), + // 1h Hammers + "common.items.weapons.hammer_1h.bloodsteel-0": ( + vox_spec: ("weapon.hammer_1h.bloodsteel-0", (-1.5, -5.0, -6.0)), color: None ), - "common.items.npc_weapons.dagger.starter_dagger": ( + "common.items.weapons.hammer_1h.bloodsteel-1": ( + vox_spec: ("weapon.hammer_1h.bloodsteel-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.bronze-0": ( + vox_spec: ("weapon.hammer_1h.bronze-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.bronze-1": ( + vox_spec: ("weapon.hammer_1h.bronze-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.cobalt-0": ( + vox_spec: ("weapon.hammer_1h.cobalt-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.cobalt-1": ( + vox_spec: ("weapon.hammer_1h.cobalt-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.iron-0": ( + vox_spec: ("weapon.hammer_1h.iron-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.iron-1": ( + vox_spec: ("weapon.hammer_1h.iron-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.iron-2": ( + vox_spec: ("weapon.hammer_1h.iron-2", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.orichalcum-0": ( + vox_spec: ("weapon.hammer_1h.orichalcum-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.steel-0": ( + vox_spec: ("weapon.hammer_1h.steel-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.steel-1": ( + vox_spec: ("weapon.hammer_1h.steel-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.steel-2": ( + vox_spec: ("weapon.hammer_1h.steel-2", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.stone-0": ( + vox_spec: ("weapon.hammer_1h.stone-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.stone-1": ( + vox_spec: ("weapon.hammer_1h.stone-1", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.wood-0": ( + vox_spec: ("weapon.hammer_1h.wood-0", (-1.5, -5.0, -6.0)), + color: None + ), + "common.items.weapons.hammer_1h.wood-1": ( + vox_spec: ("weapon.hammer_1h.wood-1", (-1.5, -5.0, -6.0)), + color: None + ), + // Daggers + "common.items.weapons.dagger.starter_dagger": ( vox_spec: ("weapon.dagger.dagger_rusty", (-1.5, -3.0, -3.0)), color: None ), @@ -499,10 +690,6 @@ vox_spec: ("weapon.shield.wood-0", (-2.5, -5.5, -5.5)), color: None ), - "common.items.npc_weapons.shield.shield_1": ( - vox_spec: ("weapon.shield.wood-0", (-2.5, -5.5, -5.5)), - color: None - ), // Bows "common.items.weapons.bow.starter_bow": ( vox_spec: ("weapon.bow.shortbow_starter", (-0.5, -3.0, -8.5)), @@ -536,10 +723,6 @@ vox_spec: ("weapon.bow.longbow_horn-0", (-1.5, -4.5, -17.5)), color: None ), - "common.items.npc_weapons.bow.horn_longbow-0": ( - vox_spec: ("weapon.bow.longbow_horn-0", (-1.5, -4.5, -17.5)), - color: None - ), "common.items.weapons.bow.iron_longbow-0": ( vox_spec: ("weapon.bow.longbow_iron-0", (-1.5, -4.0, -16.0)), color: None @@ -585,38 +768,6 @@ vox_spec: ("weapon.tool.shovel_gold", (-1.0, -2.5, -4.0)), color: None ), - "common.items.npc_weapons.tool.broom": ( - vox_spec: ("weapon.tool.broom-0", (-1.5, -4.0, -4.0)), - color: None - ), - "common.items.npc_weapons.tool.hoe": ( - vox_spec: ("weapon.tool.hoe_green", (-2.5, -4.5, -4.0)), - color: None - ), - "common.items.npc_weapons.tool.pitchfork": ( - vox_spec: ("weapon.tool.pitchfork-0", (-1.0, -3.5, -4.0)), - color: None - ), - "common.items.npc_weapons.tool.fishing_rod": ( - vox_spec: ("weapon.tool.fishing_rod_blue-0", (-2.5, -4.5, -4.0)), - color: None - ), - "common.items.npc_weapons.tool.rake": ( - vox_spec: ("weapon.tool.rake-0", (-1.0, -5.5, -4.0)), - color: None - ), - "common.items.npc_weapons.tool.pickaxe": ( - vox_spec: ("weapon.tool.pickaxe_green-0", (-1.5, -7.5, -4.0)), - color: None - ), - "common.items.npc_weapons.tool.shovel-0": ( - vox_spec: ("weapon.tool.shovel_green", (-1.0, -2.5, -4.0)), - color: None - ), - "common.items.npc_weapons.tool.shovel-1": ( - vox_spec: ("weapon.tool.shovel_gold", (-1.0, -2.5, -4.0)), - color: None - ), // Staves "common.items.weapons.staff.staff_1": ( vox_spec: ("weapon.staff.firestaff_starter", (-1.5, -3.0, -3.0)), @@ -630,10 +781,6 @@ vox_spec: ("weapon.staff.firestaff_bone", (-1.5, -2.5, -3.0)), color: None ), - "common.items.npc_weapons.staff.bone_staff": ( - vox_spec: ("weapon.staff.firestaff_bone", (-1.5, -2.5, -3.0)), - color: None - ), "common.items.weapons.staff.amethyst_staff": ( vox_spec: ("weapon.staff.firestaff_amethyst", (-1.5, -4.0, -4.0)), color: None @@ -642,10 +789,6 @@ vox_spec: ("weapon.staff.firestaff_cultist", (-2.5, -2.5, -4.0)), color: None ), - "common.items.npc_weapons.staff.cultist_staff": ( - vox_spec: ("weapon.staff.firestaff_cultist", (-2.5, -2.5, -4.0)), - color: None - ), // Healing sceptre "common.items.weapons.sceptre.starter_sceptre": ( vox_spec: ("weapon.sceptre.wood-simple", (-1.5, -2.5, -6.0)), @@ -684,15 +827,11 @@ color: None ), // Misc - "common.items.debug.boost": ( + "common.items.debug.admin_stick": ( vox_spec: ("weapon.tool.broom_belzeshrub_purple", (-3.0, -4.0, -4.0)), color: None ), - "common.items.debug.possess": ( - vox_spec: ("weapon.tool.broom_belzeshrub_purple", (-3.0, -4.0, -4.0)), - color: None - ), - "common.items.debug.cultist_purp_2h_boss-0": ( + "common.items.debug.admin_sword": ( vox_spec: ("weapon.sword.frost_cleaver-1", (-2.0, -4.5, -7.5)), color: None ), @@ -701,8 +840,4 @@ vox_spec: ("armor.empty", (-3.0, -3.5, 1.0)), color: None ), - "common.items.npc_weapons.empty.empty": ( - vox_spec: ("armor.empty", (-3.0, -3.5, 1.0)), - color: None - ), }) diff --git a/assets/voxygen/voxel/weapon/axe_1h/bloodsteel-0.vox b/assets/voxygen/voxel/weapon/axe_1h/bloodsteel-0.vox new file mode 100644 index 0000000000..94b837ceda Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/bloodsteel-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/bloodsteel-1.vox b/assets/voxygen/voxel/weapon/axe_1h/bloodsteel-1.vox new file mode 100644 index 0000000000..032eaa671f Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/bloodsteel-1.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/bronze-0.vox b/assets/voxygen/voxel/weapon/axe_1h/bronze-0.vox new file mode 100644 index 0000000000..ef7d140504 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/bronze-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/bronze-1.vox b/assets/voxygen/voxel/weapon/axe_1h/bronze-1.vox new file mode 100644 index 0000000000..73d151936f Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/bronze-1.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/cobalt-0.vox b/assets/voxygen/voxel/weapon/axe_1h/cobalt-0.vox new file mode 100644 index 0000000000..76f6054e2e Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/cobalt-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/cobalt-1.vox b/assets/voxygen/voxel/weapon/axe_1h/cobalt-1.vox new file mode 100644 index 0000000000..59fa78783f Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/cobalt-1.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/iron-0.vox b/assets/voxygen/voxel/weapon/axe_1h/iron-0.vox new file mode 100644 index 0000000000..cd660622b6 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/iron-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/iron-1.vox b/assets/voxygen/voxel/weapon/axe_1h/iron-1.vox new file mode 100644 index 0000000000..015e32ff06 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/iron-1.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/iron-2.vox b/assets/voxygen/voxel/weapon/axe_1h/iron-2.vox new file mode 100644 index 0000000000..fb1c9465d7 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/iron-2.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/iron-3.vox b/assets/voxygen/voxel/weapon/axe_1h/iron-3.vox new file mode 100644 index 0000000000..4ae5006f9e Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/iron-3.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/orichalcum-0.vox b/assets/voxygen/voxel/weapon/axe_1h/orichalcum-0.vox new file mode 100644 index 0000000000..52e02b3371 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/orichalcum-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/steel-0.vox b/assets/voxygen/voxel/weapon/axe_1h/steel-0.vox new file mode 100644 index 0000000000..5197509dab Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/steel-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/steel-1.vox b/assets/voxygen/voxel/weapon/axe_1h/steel-1.vox new file mode 100644 index 0000000000..de4abf0568 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/steel-1.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/steel-2.vox b/assets/voxygen/voxel/weapon/axe_1h/steel-2.vox new file mode 100644 index 0000000000..117a39f701 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/steel-2.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/stone-0.vox b/assets/voxygen/voxel/weapon/axe_1h/stone-0.vox new file mode 100644 index 0000000000..7e904097b5 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/stone-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/stone-1.vox b/assets/voxygen/voxel/weapon/axe_1h/stone-1.vox new file mode 100644 index 0000000000..356392e80c Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/stone-1.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/wood-0.vox b/assets/voxygen/voxel/weapon/axe_1h/wood-0.vox new file mode 100644 index 0000000000..f8328492b2 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/wood-0.vox differ diff --git a/assets/voxygen/voxel/weapon/axe_1h/wood-1.vox b/assets/voxygen/voxel/weapon/axe_1h/wood-1.vox new file mode 100644 index 0000000000..5ba57fbea8 Binary files /dev/null and b/assets/voxygen/voxel/weapon/axe_1h/wood-1.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/bloodsteel-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/bloodsteel-0.vox new file mode 100644 index 0000000000..c3db9d7e6c Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/bloodsteel-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/bloodsteel-1.vox b/assets/voxygen/voxel/weapon/hammer_1h/bloodsteel-1.vox new file mode 100644 index 0000000000..70fbf0fc34 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/bloodsteel-1.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/bronze-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/bronze-0.vox new file mode 100644 index 0000000000..372f29f3b7 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/bronze-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/bronze-1.vox b/assets/voxygen/voxel/weapon/hammer_1h/bronze-1.vox new file mode 100644 index 0000000000..e5e273a0b7 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/bronze-1.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/cobalt-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/cobalt-0.vox new file mode 100644 index 0000000000..c32a515fa1 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/cobalt-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/cobalt-1.vox b/assets/voxygen/voxel/weapon/hammer_1h/cobalt-1.vox new file mode 100644 index 0000000000..1c0ae1e087 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/cobalt-1.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/iron-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/iron-0.vox new file mode 100644 index 0000000000..d4fc31bf8b Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/iron-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/iron-1.vox b/assets/voxygen/voxel/weapon/hammer_1h/iron-1.vox new file mode 100644 index 0000000000..1379612d82 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/iron-1.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/iron-2.vox b/assets/voxygen/voxel/weapon/hammer_1h/iron-2.vox new file mode 100644 index 0000000000..2524811507 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/iron-2.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/orichalcum-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/orichalcum-0.vox new file mode 100644 index 0000000000..fbebda965b Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/orichalcum-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/steel-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/steel-0.vox new file mode 100644 index 0000000000..875f307e10 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/steel-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/steel-1.vox b/assets/voxygen/voxel/weapon/hammer_1h/steel-1.vox new file mode 100644 index 0000000000..bb2cc6cca3 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/steel-1.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/steel-2.vox b/assets/voxygen/voxel/weapon/hammer_1h/steel-2.vox new file mode 100644 index 0000000000..c0c35d3e73 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/steel-2.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/stone-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/stone-0.vox new file mode 100644 index 0000000000..216ddfb97b Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/stone-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/stone-1.vox b/assets/voxygen/voxel/weapon/hammer_1h/stone-1.vox new file mode 100644 index 0000000000..3debf7736f Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/stone-1.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/wood-0.vox b/assets/voxygen/voxel/weapon/hammer_1h/wood-0.vox new file mode 100644 index 0000000000..20882c3385 Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/wood-0.vox differ diff --git a/assets/voxygen/voxel/weapon/hammer_1h/wood-1.vox b/assets/voxygen/voxel/weapon/hammer_1h/wood-1.vox new file mode 100644 index 0000000000..86437e9edc Binary files /dev/null and b/assets/voxygen/voxel/weapon/hammer_1h/wood-1.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-0.vox b/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-0.vox new file mode 100644 index 0000000000..3178f49d12 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-0.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-1.vox b/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-1.vox new file mode 100644 index 0000000000..732b9e62e6 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-1.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-2.vox b/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-2.vox new file mode 100644 index 0000000000..0009a2bb38 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/bloodsteel-2.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/bronze-0.vox b/assets/voxygen/voxel/weapon/sword_1h/bronze-0.vox new file mode 100644 index 0000000000..d1e22a0ace Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/bronze-0.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/bronze-1.vox b/assets/voxygen/voxel/weapon/sword_1h/bronze-1.vox new file mode 100644 index 0000000000..c87ce5f8f7 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/bronze-1.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/bronze-2.vox b/assets/voxygen/voxel/weapon/sword_1h/bronze-2.vox new file mode 100644 index 0000000000..f6128482f7 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/bronze-2.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/cobalt-0.vox b/assets/voxygen/voxel/weapon/sword_1h/cobalt-0.vox new file mode 100644 index 0000000000..812db3b4e6 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/cobalt-0.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/cobalt-1.vox b/assets/voxygen/voxel/weapon/sword_1h/cobalt-1.vox new file mode 100644 index 0000000000..445430d39a Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/cobalt-1.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/cobalt-2.vox b/assets/voxygen/voxel/weapon/sword_1h/cobalt-2.vox new file mode 100644 index 0000000000..81153bcc5e Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/cobalt-2.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/cobalt-3.vox b/assets/voxygen/voxel/weapon/sword_1h/cobalt-3.vox new file mode 100644 index 0000000000..76c22b6c84 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/cobalt-3.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/iron-0.vox b/assets/voxygen/voxel/weapon/sword_1h/iron-0.vox new file mode 100644 index 0000000000..1d0ebb98ea Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/iron-0.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/iron-1.vox b/assets/voxygen/voxel/weapon/sword_1h/iron-1.vox new file mode 100644 index 0000000000..744a4236ad Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/iron-1.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/iron-2.vox b/assets/voxygen/voxel/weapon/sword_1h/iron-2.vox new file mode 100644 index 0000000000..8b9cbbc50d Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/iron-2.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/iron-3.vox b/assets/voxygen/voxel/weapon/sword_1h/iron-3.vox new file mode 100644 index 0000000000..cef7f59d97 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/iron-3.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/iron-4.vox b/assets/voxygen/voxel/weapon/sword_1h/iron-4.vox new file mode 100644 index 0000000000..1071f4c464 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/iron-4.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/obsidian-0.vox b/assets/voxygen/voxel/weapon/sword_1h/obsidian-0.vox new file mode 100644 index 0000000000..0b31047429 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/obsidian-0.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/orichalcum-0.vox b/assets/voxygen/voxel/weapon/sword_1h/orichalcum-0.vox new file mode 100644 index 0000000000..b54ddbf4f6 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/orichalcum-0.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/orichalcum-1.vox b/assets/voxygen/voxel/weapon/sword_1h/orichalcum-1.vox new file mode 100644 index 0000000000..aa3decbee8 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/orichalcum-1.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/steel-0.vox b/assets/voxygen/voxel/weapon/sword_1h/steel-0.vox new file mode 100644 index 0000000000..5e76cc7096 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/steel-0.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/steel-1.vox b/assets/voxygen/voxel/weapon/sword_1h/steel-1.vox new file mode 100644 index 0000000000..c9830ad2c2 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/steel-1.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/steel-2.vox b/assets/voxygen/voxel/weapon/sword_1h/steel-2.vox new file mode 100644 index 0000000000..e0af36a19d Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/steel-2.vox differ diff --git a/assets/voxygen/voxel/weapon/sword_1h/steel-3.vox b/assets/voxygen/voxel/weapon/sword_1h/steel-3.vox new file mode 100644 index 0000000000..27121c1982 Binary files /dev/null and b/assets/voxygen/voxel/weapon/sword_1h/steel-3.vox differ diff --git a/client/src/lib.rs b/client/src/lib.rs index 2c26d00f86..9b1a37d46f 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -1083,7 +1083,7 @@ impl Client { "Couldn't access controller component on client entity" ); } - self.send_msg_err(ClientGeneral::ControllerInputs(inputs))?; + self.send_msg_err(ClientGeneral::ControllerInputs(Box::new(inputs)))?; } // 2) Build up a list of events for this frame, to be passed to the frontend. diff --git a/common/net/src/msg/client.rs b/common/net/src/msg/client.rs index 91a8c305c5..8b040a6b7b 100644 --- a/common/net/src/msg/client.rs +++ b/common/net/src/msg/client.rs @@ -58,7 +58,7 @@ pub enum ClientGeneral { Character(CharacterId), Spectate, //Only in game - ControllerInputs(comp::ControllerInputs), + ControllerInputs(Box), ControlEvent(comp::ControlEvent), ControlAction(comp::ControlAction), SetViewDistance(u32), diff --git a/common/src/bin/csv_export/main.rs b/common/src/bin/csv_export/main.rs index 5025ee2811..7b876c6470 100644 --- a/common/src/bin/csv_export/main.rs +++ b/common/src/bin/csv_export/main.rs @@ -5,7 +5,7 @@ use structopt::StructOpt; use comp::item::{ armor::{ArmorKind, Protection}, - tool::ToolKind, + tool::{Hands, Tool, ToolKind}, ItemKind, }; use veloren_common::comp; @@ -71,6 +71,7 @@ fn weapon_stats() -> Result<(), Box> { "Path", "Kind", "Name", + "Hands", "Quality", "Power", "Poise Strength", @@ -89,11 +90,13 @@ fn weapon_stats() -> Result<(), Box> { let speed = tool.base_speed().to_string(); let equip_time = tool.equip_time().subsec_millis().to_string(); let kind = get_tool_kind(&tool.kind); + let hands = get_tool_hands(&tool); wtr.write_record(&[ item.item_definition_id(), &kind, item.name(), + &hands, &format!("{:?}", item.quality()), &power, &poise_strength, @@ -127,6 +130,13 @@ fn get_tool_kind(kind: &ToolKind) -> String { } } +fn get_tool_hands(tool: &Tool) -> String { + match tool.hands { + Hands::One => "One".to_string(), + Hands::Two => "Two".to_string(), + } +} + fn get_armor_kind(kind: &ArmorKind) -> String { match kind { ArmorKind::Shoulder(_) => "Shoulder".to_string(), @@ -183,22 +193,22 @@ fn all_items() -> Result<(), Box> { fn main() { let args = Cli::from_args(); - if args.function.eq_ignore_ascii_case("armor_stats") { + if args.function.eq_ignore_ascii_case("armor-stats") { if let Err(e) = armor_stats() { println!("Error: {}\n", e) } - } else if args.function.eq_ignore_ascii_case("weapon_stats") { + } else if args.function.eq_ignore_ascii_case("weapon-stats") { if let Err(e) = weapon_stats() { println!("Error: {}\n", e) } - } else if args.function.eq_ignore_ascii_case("all_items") { + } else if args.function.eq_ignore_ascii_case("all-items") { if let Err(e) = all_items() { println!("Error: {}\n", e) } } else { println!( "Invalid argument, available \ - arguments:\n\"armor_stats\"\n\"weapon_stats\"\n\"all_items\"" + arguments:\n\"armor-stats\"\n\"weapon-stats\"\n\"all-items\"" ) } } diff --git a/common/src/bin/csv_import/main.rs b/common/src/bin/csv_import/main.rs index c3f2f3707b..ad55be1467 100644 --- a/common/src/bin/csv_import/main.rs +++ b/common/src/bin/csv_import/main.rs @@ -171,7 +171,7 @@ fn weapon_stats() -> Result<(), Box> { { let kind = tool.kind; let equip_time_millis: u32 = record - .get(7) + .get(8) .expect(&format!( "Error unwrapping equip time for {:?}", item.item_definition_id() @@ -179,7 +179,7 @@ fn weapon_stats() -> Result<(), Box> { .parse() .expect(&format!("Not a u32? {:?}", item.item_definition_id())); let power: f32 = record - .get(4) + .get(5) .expect(&format!( "Error unwrapping power for {:?}", item.item_definition_id() @@ -187,7 +187,7 @@ fn weapon_stats() -> Result<(), Box> { .parse() .expect(&format!("Not a f32? {:?}", item.item_definition_id())); let poise_strength: f32 = record - .get(5) + .get(6) .expect(&format!( "Error unwrapping poise power for {:?}", item.item_definition_id() @@ -196,7 +196,7 @@ fn weapon_stats() -> Result<(), Box> { .expect(&format!("Not a f32? {:?}", item.item_definition_id())); let speed: f32 = record - .get(6) + .get(7) .expect(&format!( "Error unwrapping speed for {:?}", item.item_definition_id() @@ -204,15 +204,36 @@ fn weapon_stats() -> Result<(), Box> { .parse() .expect(&format!("Not a f32? {:?}", item.item_definition_id())); + let hands = if let Some(hands_raw) = record.get(3) { + match hands_raw { + "One" | "1" | "1h" => comp::item::tool::Hands::One, + "Two" | "2" | "2h" => comp::item::tool::Hands::Two, + _ => { + eprintln!( + "Unknown hand variant for {:?}", + item.item_definition_id() + ); + comp::item::tool::Hands::Two + }, + } + } else { + eprintln!( + "Could not unwrap hand for {:?}", + item.item_definition_id() + ); + comp::item::tool::Hands::Two + }; + let tool = comp::item::tool::Tool::new( kind, + hands, equip_time_millis, power, poise_strength, speed, ); - let quality = if let Some(quality_raw) = record.get(3) { + let quality = if let Some(quality_raw) = record.get(4) { match quality_raw { "Low" => comp::item::Quality::Low, "Common" => comp::item::Quality::Common, @@ -238,7 +259,7 @@ fn weapon_stats() -> Result<(), Box> { comp::item::Quality::Debug }; - let description = record.get(8).expect(&format!( + let description = record.get(9).expect(&format!( "Error unwrapping description for {:?}", item.item_definition_id() )); @@ -282,7 +303,7 @@ fn weapon_stats() -> Result<(), Box> { fn main() { let args = Cli::from_args(); - if args.function.eq_ignore_ascii_case("armor_stats") { + if args.function.eq_ignore_ascii_case("armor-stats") { if get_input( " ------------------------------------------------------------------------------- @@ -312,7 +333,7 @@ Would you like to continue? (y/n) println!("Error: {}\n", e) } } - } else if args.function.eq_ignore_ascii_case("weapon_stats") { + } else if args.function.eq_ignore_ascii_case("weapon-stats") { if get_input( " ------------------------------------------------------------------------------- @@ -343,7 +364,7 @@ Would you like to continue? (y/n) } } } else { - println!("Invalid argument, available arguments:\n\"armor_stats\"\n\"weapon_stats\"\n\"") + println!("Invalid argument, available arguments:\n\"armor-stats\"\n\"weapon-stats\"\n\"") } } diff --git a/common/src/comp/ability.rs b/common/src/comp/ability.rs index 5bfbda0453..5e9d904b17 100644 --- a/common/src/comp/ability.rs +++ b/common/src/comp/ability.rs @@ -6,7 +6,7 @@ use crate::{ }, states::{ behavior::JoinData, - utils::{AbilityKey, StageSection}, + utils::{AbilityInfo, StageSection}, *, }, Knockback, @@ -1060,8 +1060,8 @@ impl CharacterAbility { } } -impl From<(&CharacterAbility, AbilityKey)> for CharacterState { - fn from((ability, key): (&CharacterAbility, AbilityKey)) -> Self { +impl From<(&CharacterAbility, AbilityInfo)> for CharacterState { + fn from((ability, ability_info): (&CharacterAbility, AbilityInfo)) -> Self { match ability { CharacterAbility::BasicMelee { buildup_duration, @@ -1083,7 +1083,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { knockback: *knockback, range: *range, max_angle: *max_angle, - ability_key: key, + ability_info, }, timer: Duration::default(), stage_section: StageSection::Buildup, @@ -1109,7 +1109,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { projectile_gravity: *projectile_gravity, projectile_speed: *projectile_speed, can_continue: *can_continue, - ability_key: key, + ability_info, }, timer: Duration::default(), stage_section: StageSection::Buildup, @@ -1162,7 +1162,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { swing_duration: Duration::from_secs_f32(*swing_duration), recover_duration: Duration::from_secs_f32(*recover_duration), is_interruptible: *is_interruptible, - ability_key: key, + ability_info, }, auto_charge: false, timer: Duration::default(), @@ -1212,7 +1212,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { max_speed_increase: *max_speed_increase, scales_from_combo: *scales_from_combo, is_interruptible: *is_interruptible, - ability_key: key, + ability_info, }, stage: 1, combo: 0, @@ -1246,7 +1246,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { max_angle: *max_angle, forward_leap_strength: *forward_leap_strength, vertical_leap_strength: *vertical_leap_strength, - ability_key: key, + ability_info, }, timer: Duration::default(), stage_section: StageSection::Buildup, @@ -1281,7 +1281,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { is_interruptible: *is_interruptible, forward_speed: *forward_speed, num_spins: *num_spins, - ability_key: key, + ability_info, }, timer: Duration::default(), spins_remaining: *num_spins - 1, @@ -1321,7 +1321,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { swing_duration: Duration::from_secs_f32(*swing_duration), hit_timing: *hit_timing, recover_duration: Duration::from_secs_f32(*recover_duration), - ability_key: key, + ability_info, }, stage_section: StageSection::Charge, timer: Duration::default(), @@ -1362,7 +1362,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { initial_projectile_speed: *initial_projectile_speed, scaled_projectile_speed: *scaled_projectile_speed, move_speed: *move_speed, - ability_key: key, + ability_info, }, timer: Duration::default(), stage_section: StageSection::Buildup, @@ -1393,7 +1393,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { projectile_light: *projectile_light, projectile_gravity: *projectile_gravity, projectile_speed: *projectile_speed, - ability_key: key, + ability_info, }, timer: Duration::default(), stage_section: StageSection::Movement, @@ -1427,7 +1427,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { shockwave_duration: Duration::from_secs_f32(*shockwave_duration), requires_ground: *requires_ground, move_efficiency: *move_efficiency, - ability_key: key, + ability_info, }, timer: Duration::default(), stage_section: StageSection::Buildup, @@ -1459,7 +1459,7 @@ impl From<(&CharacterAbility, AbilityKey)> for CharacterState { energy_regen: *energy_regen, energy_cost: *energy_cost, energy_drain: *energy_drain, - ability_key: key, + ability_info, }, timer: Duration::default(), stage_section: StageSection::Buildup, diff --git a/common/src/comp/body.rs b/common/src/comp/body.rs index 5cfd6d72ac..0e09c027c4 100644 --- a/common/src/comp/body.rs +++ b/common/src/comp/body.rs @@ -452,185 +452,7 @@ impl Body { } } - #[allow(unreachable_patterns)] - pub fn base_exp(&self) -> u32 { - match self { - Body::Humanoid(_) => 5, - Body::QuadrupedSmall(quadruped_small) => match quadruped_small.species { - quadruped_small::Species::Boar => 6, - quadruped_small::Species::Batfox => 2, - quadruped_small::Species::Dodarock => 6, - quadruped_small::Species::Holladon => 8, - quadruped_small::Species::Hyena => 6, - quadruped_small::Species::Truffler => 6, - _ => 4, - }, - Body::QuadrupedMedium(quadruped_medium) => match quadruped_medium.species { - quadruped_medium::Species::Grolgar => 10, - quadruped_medium::Species::Saber => 8, - quadruped_medium::Species::Tiger => 8, - quadruped_medium::Species::Tuskram => 9, - quadruped_medium::Species::Lion => 10, - quadruped_medium::Species::Tarasque => 16, - quadruped_medium::Species::Wolf => 8, - quadruped_medium::Species::Frostfang => 9, - quadruped_medium::Species::Mouflon => 7, - quadruped_medium::Species::Catoblepas => 10, - quadruped_medium::Species::Bonerattler => 10, - quadruped_medium::Species::Deer => 6, - quadruped_medium::Species::Hirdrasil => 9, - quadruped_medium::Species::Roshwalr => 10, - quadruped_medium::Species::Donkey => 8, - quadruped_medium::Species::Camel => 8, - quadruped_medium::Species::Zebra => 8, - quadruped_medium::Species::Antelope => 6, - quadruped_medium::Species::Kelpie => 8, - quadruped_medium::Species::Horse => 8, - _ => 6, - }, - Body::BirdMedium(bird_medium) => match bird_medium.species { - bird_medium::Species::Chicken => 2, - bird_medium::Species::Duck => 2, - bird_medium::Species::Goose => 4, - bird_medium::Species::Parrot => 4, - bird_medium::Species::Peacock => 5, - _ => 8, - }, - Body::FishMedium(_) => 2, - Body::Dragon(_) => 1000, - Body::BirdSmall(_) => 2, - Body::FishSmall(_) => 2, - Body::BipedLarge(biped_large) => match biped_large.species { - biped_large::Species::Ogre => 60, - biped_large::Species::Cyclops => 70, - biped_large::Species::Wendigo => 70, - biped_large::Species::Troll => 50, - biped_large::Species::Dullahan => 100, - biped_large::Species::Mindflayer => 150, - _ => 100, - }, - Body::Object(_) => 1, - Body::Golem(_) => 256, - Body::Theropod(theropod) => match theropod.species { - theropod::Species::Archaeos => 90, - theropod::Species::Odonto => 80, - _ => 50, - }, - Body::QuadrupedLow(quadruped_low) => match quadruped_low.species { - quadruped_low::Species::Crocodile => 10, - quadruped_low::Species::Alligator => 10, - quadruped_low::Species::Salamander => 6, - quadruped_low::Species::Monitor => 4, - quadruped_low::Species::Asp => 4, - quadruped_low::Species::Tortoise => 6, - quadruped_low::Species::Rocksnapper => 12, - quadruped_low::Species::Pangolin => 3, - quadruped_low::Species::Maneater => 14, - quadruped_low::Species::Sandshark => 12, - quadruped_low::Species::Hakulaq => 10, - quadruped_low::Species::Lavadrake => 20, - _ => 10, - }, - } - } - - #[allow(unreachable_patterns)] - pub fn base_dmg(&self) -> f32 { - match self { - Body::Humanoid(_) => 50.0, - Body::QuadrupedSmall(quadruped_small) => match quadruped_small.species { - quadruped_small::Species::Dodarock => 30.0, - quadruped_small::Species::Hyena => 40.0, - quadruped_small::Species::Holladon => 40.0, - quadruped_small::Species::Porcupine => 30.0, - _ => 20.0, - }, - Body::QuadrupedMedium(quadruped_medium) => match quadruped_medium.species { - quadruped_medium::Species::Grolgar => 50.0, - quadruped_medium::Species::Lion => 60.0, - quadruped_medium::Species::Tarasque => 70.0, - quadruped_medium::Species::Mouflon => 30.0, - quadruped_medium::Species::Catoblepas => 20.0, - quadruped_medium::Species::Bonerattler => 50.0, - quadruped_medium::Species::Deer => 30.0, - quadruped_medium::Species::Hirdrasil => 50.0, - quadruped_medium::Species::Roshwalr => 60.0, - quadruped_medium::Species::Donkey => 40.0, - quadruped_medium::Species::Camel => 40.0, - quadruped_medium::Species::Zebra => 40.0, - quadruped_medium::Species::Antelope => 6.0, - quadruped_medium::Species::Kelpie => 60.0, - quadruped_medium::Species::Horse => 50.0, - _ => 40.0, - }, - Body::BirdMedium(bird_medium) => match bird_medium.species { - bird_medium::Species::Chicken => 10.0, - bird_medium::Species::Duck => 10.0, - bird_medium::Species::Goose => 10.0, - bird_medium::Species::Parrot => 20.0, - bird_medium::Species::Peacock => 40.0, - bird_medium::Species::Cockatrice => 60.0, - bird_medium::Species::Eagle => 60.0, - _ => 30.0, - }, - Body::FishMedium(_) => 10.0, - Body::Dragon(_) => 5000.0, - Body::BirdSmall(_) => 10.0, - Body::FishSmall(_) => 10.0, - Body::BipedLarge(biped_large) => match biped_large.species { - biped_large::Species::Ogre => 60.0, - biped_large::Species::Cyclops => 60.0, - biped_large::Species::Wendigo => 60.0, - biped_large::Species::Troll => 60.0, - biped_large::Species::Dullahan => 80.0, - biped_large::Species::Mindflayer => 200.0, - _ => 60.0, - }, - Body::Object(_) => 0.0, - Body::Golem(_) => 250.0, - Body::Theropod(theropod) => match theropod.species { - theropod::Species::Archaeos => 150.0, - theropod::Species::Odonto => 130.0, - _ => 70.0, - }, - Body::QuadrupedLow(quadruped_low) => match quadruped_low.species { - quadruped_low::Species::Crocodile => 50.0, - quadruped_low::Species::Alligator => 50.0, - quadruped_low::Species::Salamander => 50.0, - quadruped_low::Species::Monitor => 30.0, - quadruped_low::Species::Asp => 35.0, - quadruped_low::Species::Tortoise => 10.0, - quadruped_low::Species::Rocksnapper => 80.0, - quadruped_low::Species::Pangolin => 10.0, - quadruped_low::Species::Maneater => 40.0, - quadruped_low::Species::Sandshark => 60.0, - quadruped_low::Species::Hakulaq => 40.0, - _ => 20.0, - }, - } - } - - pub fn base_poise_dmg(&self) -> f32 { 0.0 } - - pub fn base_range(&self) -> f32 { - match self { - Body::Humanoid(_) => 5.0, - Body::QuadrupedSmall(_) => 4.5, - Body::QuadrupedMedium(_) => 5.5, - Body::BirdMedium(_) => 3.5, - Body::FishMedium(_) => 3.5, - Body::Dragon(_) => 12.5, - Body::BirdSmall(_) => 3.0, - Body::FishSmall(_) => 3.0, - Body::BipedLarge(_) => 10.0, - Body::Object(_) => 3.0, - Body::Golem(_) => 7.5, - Body::Theropod(_) => 3.0, - Body::QuadrupedLow(_) => 4.5, - } - } - - /// Returns the eye height for this humanoid. + /// Returns the eye height for this creature. pub fn eye_height(&self) -> f32 { self.height() * 0.9 } pub fn default_light_offset(&self) -> Vec3 { diff --git a/common/src/comp/controller.rs b/common/src/comp/controller.rs index 3fbfce27cd..733d47ef2e 100644 --- a/common/src/comp/controller.rs +++ b/common/src/comp/controller.rs @@ -222,6 +222,7 @@ pub struct ControllerInputs { pub primary: Input, pub secondary: Input, pub ability3: Input, + pub ability4: Input, pub jump: Input, pub roll: Input, pub glide: Input, @@ -249,6 +250,7 @@ impl ControllerInputs { self.primary.tick(dt); self.secondary.tick(dt); self.ability3.tick(dt); + self.ability4.tick(dt); self.jump.tick(dt); self.roll.tick(dt); self.glide.tick(dt); @@ -261,6 +263,7 @@ impl ControllerInputs { self.primary.tick_freshness(); self.secondary.tick_freshness(); self.ability3.tick_freshness(); + self.ability4.tick_freshness(); self.jump.tick_freshness(); self.roll.tick_freshness(); self.glide.tick_freshness(); @@ -274,6 +277,7 @@ impl ControllerInputs { self.primary.update_with_new(new.primary); self.secondary.update_with_new(new.secondary); self.ability3.update_with_new(new.ability3); + self.ability4.update_with_new(new.ability4); self.jump.update_with_new(new.jump); self.roll.update_with_new(new.roll); self.glide.update_with_new(new.glide); @@ -287,7 +291,10 @@ impl ControllerInputs { } pub fn holding_ability_key(&self) -> bool { - self.primary.is_pressed() || self.secondary.is_pressed() || self.ability3.is_pressed() + self.primary.is_pressed() + || self.secondary.is_pressed() + || self.ability3.is_pressed() + || self.ability4.is_pressed() } } diff --git a/common/src/comp/inventory/item/mod.rs b/common/src/comp/inventory/item/mod.rs index f0588cf938..ae1adbcef1 100644 --- a/common/src/comp/inventory/item/mod.rs +++ b/common/src/comp/inventory/item/mod.rs @@ -8,7 +8,7 @@ use crate::{ assets::{self, AssetExt, Error}, comp::{ inventory::{item::tool::AbilityMap, InvSlot}, - Body, CharacterAbility, + CharacterAbility, }, effect::Effect, lottery::Lottery, @@ -99,7 +99,7 @@ impl ItemTag { } } -#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] +#[derive(Clone, Debug, Serialize, Deserialize)] pub enum ItemKind { /// Something wieldable Tool(tool::Tool), @@ -183,11 +183,9 @@ impl PartialEq for ItemDef { fn eq(&self, other: &Self) -> bool { self.item_definition_id == other.item_definition_id } } -#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] +#[derive(Clone, Debug, Serialize, Deserialize)] pub struct ItemConfig { - pub ability1: Option, - pub ability2: Option, - pub ability3: Option, + pub abilities: AbilitySet, pub block_ability: Option, pub dodge_ability: Option, } @@ -198,9 +196,7 @@ impl From<(&ItemKind, &AbilityMap)> for ItemConfig { let abilities = tool.get_abilities(map); return ItemConfig { - ability1: Some(abilities.primary), - ability2: Some(abilities.secondary), - ability3: abilities.skills.get(0).cloned(), + abilities, block_ability: None, dodge_ability: Some(CharacterAbility::default_roll()), }; @@ -367,40 +363,6 @@ impl Item { Ok(Item::new_from_item_def(inner_item)) } - pub fn new_default_for_body(body: &Body) -> Self { - let mut item = Item::new_from_asset_expect("common.items.weapons.empty.empty"); - - let empty_def = &*item.item_def; - item.item_def = Arc::new(ItemDef { - slots: empty_def.slots, - name: empty_def.name.clone(), - kind: empty_def.kind.clone(), - description: empty_def.description.clone(), - item_definition_id: empty_def.item_definition_id.clone(), - quality: empty_def.quality, - tags: Vec::new(), - item_config: Some(ItemConfig { - ability1: Some(CharacterAbility::BasicMelee { - energy_cost: 0.010, - buildup_duration: 0.5, - swing_duration: 0.1, - recover_duration: 0.1, - base_damage: body.base_dmg(), - base_poise_damage: body.base_poise_dmg(), - knockback: 0.0, - range: body.base_range(), - max_angle: 20.0, - }), - ability2: None, - ability3: None, - block_ability: None, - dodge_ability: None, - }), - }); - - item - } - /// Duplicates an item, creating an exact copy but with a new item ID pub fn duplicate(&self) -> Self { Item::new_from_item_def(Arc::clone(&self.item_def)) } diff --git a/common/src/comp/inventory/item/tool.rs b/common/src/comp/inventory/item/tool.rs index 1a9512b454..9e45a89134 100644 --- a/common/src/comp/inventory/item/tool.rs +++ b/common/src/comp/inventory/item/tool.rs @@ -3,7 +3,7 @@ use crate::{ assets::{self, Asset}, - comp::CharacterAbility, + comp::{skills::Skill, CharacterAbility}, }; use hashbrown::HashMap; use serde::{Deserialize, Serialize}; @@ -27,31 +27,13 @@ pub enum ToolKind { Empty, } -impl ToolKind { - pub fn hands(&self) -> Hands { - match self { - ToolKind::Sword => Hands::TwoHand, - ToolKind::Axe => Hands::TwoHand, - ToolKind::Hammer => Hands::TwoHand, - ToolKind::Bow => Hands::TwoHand, - ToolKind::Dagger => Hands::OneHand, - ToolKind::Staff => Hands::TwoHand, - ToolKind::Sceptre => Hands::TwoHand, - ToolKind::Shield => Hands::OneHand, - ToolKind::Unique(_) => Hands::TwoHand, - ToolKind::Debug => Hands::TwoHand, - ToolKind::Farming => Hands::TwoHand, - ToolKind::Empty => Hands::OneHand, - } - } -} - +#[derive(Clone, Copy, Debug, Serialize, Deserialize)] pub enum Hands { - OneHand, - TwoHand, + One, + Two, } -#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)] +#[derive(Clone, Copy, Debug, Serialize, Deserialize)] pub struct Stats { equip_time_millis: u32, power: f32, @@ -59,9 +41,28 @@ pub struct Stats { speed: f32, } -#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] +impl From<&Tool> for Stats { + fn from(tool: &Tool) -> Self { + let raw_stats = tool.stats; + let (power, speed) = match tool.hands { + Hands::One => (0.67, 1.33), + // TODO: Restore this when one-handed weapons are made accessible + // Hands::Two => (1.5, 0.75), + Hands::Two => (1.0, 1.0), + }; + Self { + equip_time_millis: raw_stats.equip_time_millis, + power: raw_stats.power * power, + poise_strength: raw_stats.poise_strength, + speed: raw_stats.speed * speed, + } + } +} + +#[derive(Clone, Debug, Serialize, Deserialize)] pub struct Tool { pub kind: ToolKind, + pub hands: Hands, pub stats: Stats, // TODO: item specific abilities } @@ -71,6 +72,7 @@ impl Tool { // Added for CSV import of stats pub fn new( kind: ToolKind, + hands: Hands, equip_time_millis: u32, power: f32, poise_strength: f32, @@ -78,6 +80,7 @@ impl Tool { ) -> Self { Self { kind, + hands, stats: Stats { equip_time_millis, power, @@ -90,6 +93,7 @@ impl Tool { pub fn empty() -> Self { Self { kind: ToolKind::Empty, + hands: Hands::One, stats: Stats { equip_time_millis: 0, power: 1.00, @@ -127,18 +131,13 @@ impl Tool { pub struct AbilitySet { pub primary: T, pub secondary: T, - pub skills: Vec, + pub abilities: Vec<(Option, T)>, } impl AbilitySet { pub fn modified_by_tool(self, tool: &Tool) -> Self { - self.map(|a| { - a.adjusted_by_stats( - tool.base_power(), - tool.base_poise_strength(), - tool.base_speed(), - ) - }) + let stats = Stats::from(tool); + self.map(|a| a.adjusted_by_stats(stats.power, stats.poise_strength, stats.speed)) } } @@ -147,7 +146,7 @@ impl AbilitySet { AbilitySet { primary: f(self.primary), secondary: f(self.secondary), - skills: self.skills.into_iter().map(|x| f(x)).collect(), + abilities: self.abilities.into_iter().map(|(s, x)| (s, f(x))).collect(), } } @@ -155,7 +154,7 @@ impl AbilitySet { AbilitySet { primary: f(&self.primary), secondary: f(&self.secondary), - skills: self.skills.iter().map(|x| f(x)).collect(), + abilities: self.abilities.iter().map(|(s, x)| (*s, f(x))).collect(), } } } @@ -165,7 +164,7 @@ impl Default for AbilitySet { AbilitySet { primary: CharacterAbility::default(), secondary: CharacterAbility::default(), - skills: vec![], + abilities: vec![], } } } diff --git a/common/src/comp/inventory/loadout_builder.rs b/common/src/comp/inventory/loadout_builder.rs index 7ea301dd78..ff81dcf0df 100644 --- a/common/src/comp/inventory/loadout_builder.rs +++ b/common/src/comp/inventory/loadout_builder.rs @@ -235,7 +235,7 @@ impl LoadoutBuilder { let active_item = if let Some(ItemKind::Tool(_)) = main_tool.as_ref().map(|i| i.kind()) { main_tool } else { - Some(Item::new_default_for_body(&body)) + Some(Item::empty()) }; // Creates rest of loadout diff --git a/common/src/comp/inventory/test.rs b/common/src/comp/inventory/test.rs index acb566cc06..8f6f749046 100644 --- a/common/src/comp/inventory/test.rs +++ b/common/src/comp/inventory/test.rs @@ -5,10 +5,9 @@ use crate::comp::{ }; use lazy_static::lazy_static; lazy_static! { - static ref TEST_ITEMS: Vec = vec![ - Item::new_from_asset_expect("common.items.debug.boost"), - Item::new_from_asset_expect("common.items.debug.possess") - ]; + static ref TEST_ITEMS: Vec = vec![Item::new_from_asset_expect( + "common.items.debug.admin_stick" + ),]; } /// Attempting to push into a full inventory should return the same item. diff --git a/common/src/states/basic_beam.rs b/common/src/states/basic_beam.rs index da9973edf9..3e7028f53f 100644 --- a/common/src/states/basic_beam.rs +++ b/common/src/states/basic_beam.rs @@ -44,7 +44,7 @@ pub struct StaticData { /// Energy drained per pub energy_drain: f32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -68,7 +68,7 @@ impl CharacterBehavior for Data { handle_move(data, &mut update, 0.4); handle_jump(data, &mut update); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::BasicBeam(_) => {}, @@ -78,11 +78,6 @@ impl CharacterBehavior for Data { } } - if unwrap_tool_data(data).is_none() { - update.character = CharacterState::Idle; - return update; - } - match self.stage_section { StageSection::Buildup => { if self.timer < self.static_data.buildup_duration { @@ -119,7 +114,7 @@ impl CharacterBehavior for Data { } }, StageSection::Cast => { - if ability_key_is_pressed(data, self.static_data.ability_key) + if ability_key_is_pressed(data, self.static_data.ability_info.key) && (self.static_data.energy_drain <= f32::EPSILON || update.energy.current() > 0) { diff --git a/common/src/states/basic_melee.rs b/common/src/states/basic_melee.rs index fa645229c2..f9fbfeae1a 100644 --- a/common/src/states/basic_melee.rs +++ b/common/src/states/basic_melee.rs @@ -30,7 +30,7 @@ pub struct StaticData { /// Max angle (45.0 will give you a 90.0 angle window) pub max_angle: f32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -52,7 +52,7 @@ impl CharacterBehavior for Data { handle_move(data, &mut update, 0.7); handle_jump(data, &mut update); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::BasicMelee(_) => {}, diff --git a/common/src/states/basic_ranged.rs b/common/src/states/basic_ranged.rs index 5de4fa1794..a0b5541578 100644 --- a/common/src/states/basic_ranged.rs +++ b/common/src/states/basic_ranged.rs @@ -23,7 +23,7 @@ pub struct StaticData { pub projectile_gravity: Option, pub projectile_speed: f32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, /// Whether or not the ability can auto continue pub can_continue: bool, } @@ -50,7 +50,7 @@ impl CharacterBehavior for Data { handle_move(data, &mut update, 0.3); handle_jump(data, &mut update); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::BasicRanged(_) => {}, @@ -103,7 +103,7 @@ impl CharacterBehavior for Data { ..*self }); } else if self.timer < self.static_data.recover_duration { - if ability_key_is_pressed(data, self.static_data.ability_key) { + if ability_key_is_pressed(data, self.static_data.ability_info.key) { // Recovers update.character = CharacterState::BasicRanged(Data { timer: self diff --git a/common/src/states/charged_melee.rs b/common/src/states/charged_melee.rs index ed1e752c75..9fb63b9f33 100644 --- a/common/src/states/charged_melee.rs +++ b/common/src/states/charged_melee.rs @@ -44,7 +44,7 @@ pub struct StaticData { /// How long the state has until exiting pub recover_duration: Duration, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -68,7 +68,7 @@ impl CharacterBehavior for Data { handle_move(data, &mut update, 0.7); handle_jump(data, &mut update); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::ChargedMelee(_) => {}, @@ -80,7 +80,7 @@ impl CharacterBehavior for Data { match self.stage_section { StageSection::Charge => { - if ability_key_is_pressed(data, self.static_data.ability_key) + if ability_key_is_pressed(data, self.static_data.ability_info.key) && update.energy.current() as f32 >= self.static_data.energy_cost && self.timer < self.static_data.charge_duration { @@ -107,7 +107,7 @@ impl CharacterBehavior for Data { * self.static_data.speed) as i32, source: EnergySource::Ability, }); - } else if ability_key_is_pressed(data, self.static_data.ability_key) + } else if ability_key_is_pressed(data, self.static_data.ability_info.key) && update.energy.current() as f32 >= self.static_data.energy_cost { // Maintains charge diff --git a/common/src/states/charged_ranged.rs b/common/src/states/charged_ranged.rs index eb96d2907f..91c79a87f8 100644 --- a/common/src/states/charged_ranged.rs +++ b/common/src/states/charged_ranged.rs @@ -46,7 +46,7 @@ pub struct StaticData { /// Move speed efficiency pub move_speed: f32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -68,7 +68,7 @@ impl CharacterBehavior for Data { handle_move(data, &mut update, self.static_data.move_speed); handle_jump(data, &mut update); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::ChargedRanged(_) => {}, @@ -99,7 +99,9 @@ impl CharacterBehavior for Data { } }, StageSection::Charge => { - if !ability_key_is_pressed(data, self.static_data.ability_key) && !self.exhausted { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) + && !self.exhausted + { let charge_frac = (self.timer.as_secs_f32() / self.static_data.charge_duration.as_secs_f32()) .min(1.0); @@ -156,7 +158,7 @@ impl CharacterBehavior for Data { ..*self }); } else if self.timer < self.static_data.charge_duration - && ability_key_is_pressed(data, self.static_data.ability_key) + && ability_key_is_pressed(data, self.static_data.ability_info.key) { // Charges update.character = CharacterState::ChargedRanged(Data { @@ -176,7 +178,7 @@ impl CharacterBehavior for Data { * self.static_data.speed) as i32, source: EnergySource::Ability, }); - } else if ability_key_is_pressed(data, self.static_data.ability_key) { + } else if ability_key_is_pressed(data, self.static_data.ability_info.key) { // Holds charge update.character = CharacterState::ChargedRanged(Data { timer: self diff --git a/common/src/states/combo_melee.rs b/common/src/states/combo_melee.rs index 7c5d88c45a..a16bf7edac 100644 --- a/common/src/states/combo_melee.rs +++ b/common/src/states/combo_melee.rs @@ -98,7 +98,7 @@ pub struct StaticData { /// Whether the state can be interrupted by other abilities pub is_interruptible: bool, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } /// A sequence of attacks that can incrementally become faster and more /// damaging. @@ -125,7 +125,7 @@ impl CharacterBehavior for Data { handle_orientation(data, &mut update, 1.0); handle_move(data, &mut update, 0.3); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, self.static_data.is_interruptible); if let CharacterState::Roll(roll) = &mut update.character { roll.was_combo = Some((self.stage, self.combo)); @@ -259,7 +259,7 @@ impl CharacterBehavior for Data { StageSection::Recover => { if self.timer < self.static_data.stage_data[stage_index].base_recover_duration { // Recovers - if ability_key_is_pressed(data, self.static_data.ability_key) { + if ability_key_is_pressed(data, self.static_data.ability_info.key) { // Checks if state will transition to next stage after recover update.character = CharacterState::ComboMelee(Data { static_data: self.static_data.clone(), diff --git a/common/src/states/dash_melee.rs b/common/src/states/dash_melee.rs index 0f8bce5273..e7e19b464e 100644 --- a/common/src/states/dash_melee.rs +++ b/common/src/states/dash_melee.rs @@ -47,7 +47,7 @@ pub struct StaticData { /// Whether the state can be interrupted by other abilities pub is_interruptible: bool, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -73,7 +73,7 @@ impl CharacterBehavior for Data { handle_orientation(data, &mut update, 1.0); handle_move(data, &mut update, 0.1); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, self.static_data.is_interruptible); match update.character { CharacterState::DashMelee(_) => {}, @@ -97,7 +97,10 @@ impl CharacterBehavior for Data { } else { // Transitions to charge section of stage update.character = CharacterState::DashMelee(Data { - auto_charge: !ability_key_is_pressed(data, self.static_data.ability_key), + auto_charge: !ability_key_is_pressed( + data, + self.static_data.ability_info.key, + ), timer: Duration::default(), stage_section: StageSection::Charge, ..*self @@ -107,7 +110,7 @@ impl CharacterBehavior for Data { StageSection::Charge => { if (self.static_data.infinite_charge || self.timer < self.static_data.charge_duration) - && (ability_key_is_pressed(data, self.static_data.ability_key) + && (ability_key_is_pressed(data, self.static_data.ability_info.key) || (self.auto_charge && self.timer < self.static_data.charge_duration)) && update.energy.current() > 0 { diff --git a/common/src/states/leap_melee.rs b/common/src/states/leap_melee.rs index 76779906df..2bd2002e8b 100644 --- a/common/src/states/leap_melee.rs +++ b/common/src/states/leap_melee.rs @@ -36,7 +36,7 @@ pub struct StaticData { /// Affects how high the player leaps pub vertical_leap_strength: f32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -58,7 +58,7 @@ impl CharacterBehavior for Data { handle_move(data, &mut update, 0.3); handle_jump(data, &mut update); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::LeapMelee(_) => {}, diff --git a/common/src/states/repeater_ranged.rs b/common/src/states/repeater_ranged.rs index f130016509..9418336ca5 100644 --- a/common/src/states/repeater_ranged.rs +++ b/common/src/states/repeater_ranged.rs @@ -31,7 +31,7 @@ pub struct StaticData { pub projectile_gravity: Option, pub projectile_speed: f32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -53,7 +53,7 @@ impl CharacterBehavior for Data { handle_move(data, &mut update, 1.0); handle_jump(data, &mut update); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::RepeaterRanged(_) => {}, diff --git a/common/src/states/shockwave.rs b/common/src/states/shockwave.rs index b77c2e283a..42d80b0216 100644 --- a/common/src/states/shockwave.rs +++ b/common/src/states/shockwave.rs @@ -41,7 +41,7 @@ pub struct StaticData { /// Movement speed efficiency pub move_efficiency: f32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -60,7 +60,7 @@ impl CharacterBehavior for Data { let mut update = StateUpdate::from(data); handle_move(data, &mut update, self.static_data.move_efficiency); - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, false); match update.character { CharacterState::Shockwave(_) => {}, diff --git a/common/src/states/spin_melee.rs b/common/src/states/spin_melee.rs index 42f0822afa..418007e000 100644 --- a/common/src/states/spin_melee.rs +++ b/common/src/states/spin_melee.rs @@ -42,7 +42,7 @@ pub struct StaticData { /// Number of spins pub num_spins: u32, /// What key is used to press ability - pub ability_key: AbilityKey, + pub ability_info: AbilityInfo, } #[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -75,7 +75,7 @@ impl CharacterBehavior for Data { }, } - if !ability_key_is_pressed(data, self.static_data.ability_key) { + if !ability_key_is_pressed(data, self.static_data.ability_info.key) { handle_interrupt(data, &mut update, self.static_data.is_interruptible); match update.character { CharacterState::SpinMelee(_) => {}, @@ -176,7 +176,7 @@ impl CharacterBehavior for Data { } else if update.energy.current() as f32 >= self.static_data.energy_cost && (self.spins_remaining != 0 || (self.static_data.is_infinite - && ability_key_is_pressed(data, self.static_data.ability_key))) + && ability_key_is_pressed(data, self.static_data.ability_info.key))) { let new_spins_remaining = if self.static_data.is_infinite { self.spins_remaining diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index 3c467a1039..fd6bba8b15 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -3,8 +3,8 @@ use crate::{ inventory::slot::EquipSlot, item::{Hands, ItemKind, Tool, ToolKind}, quadruped_low, quadruped_medium, - skills::{AxeSkill, BowSkill, HammerSkill, Skill, StaffSkill, SwordSkill}, - theropod, Body, CharacterState, LoadoutManip, StateUpdate, + skills::Skill, + theropod, Body, CharacterAbility, CharacterState, LoadoutManip, StateUpdate, }, consts::{FRIC_GROUND, GRAVITY}, event::{LocalEvent, ServerEvent}, @@ -280,12 +280,13 @@ fn fly_move(data: &JoinData, update: &mut StateUpdate, efficiency: f32) { handle_orientation(data, update, 1.0); } -/// First checks whether `primary`, `secondary` or `ability3` input is pressed, -/// then attempts to go into Equipping state, otherwise Idle +/// First checks whether `primary`, `secondary`, `ability3`, or `ability4` input +/// is pressed, then attempts to go into Equipping state, otherwise Idle pub fn handle_wield(data: &JoinData, update: &mut StateUpdate) { if data.inputs.primary.is_pressed() || data.inputs.secondary.is_pressed() || data.inputs.ability3.is_pressed() + || data.inputs.ability4.is_pressed() { attempt_wield(data, update); } @@ -305,7 +306,7 @@ pub fn attempt_wield(data: &JoinData, update: &mut StateUpdate) { timer: Duration::default(), }); } else { - update.character = CharacterState::Idle; + update.character = CharacterState::Wielding; }; } @@ -401,155 +402,84 @@ pub fn handle_jump(data: &JoinData, update: &mut StateUpdate) { } } -pub fn handle_ability1_input(data: &JoinData, update: &mut StateUpdate) { - if data.inputs.primary.is_pressed() { +fn handle_ability_pressed(data: &JoinData, update: &mut StateUpdate, ability_key: AbilityKey) { + let hands = |equip_slot| match data.inventory.equipped(equip_slot).map(|i| i.kind()) { + Some(ItemKind::Tool(tool)) => Some(tool.hands), + _ => None, + }; + + // Mouse1 and Skill1 always use the MainHand slot + let always_main_hand = matches!(ability_key, AbilityKey::Mouse1 | AbilityKey::Skill1); + // skill_index used to select ability for the AbilityKey::Skill2 input + let (equip_slot, skill_index) = if always_main_hand { + (Some(EquipSlot::Mainhand), 0) + } else { + let hands = (hands(EquipSlot::Mainhand), hands(EquipSlot::Offhand)); + match hands { + (Some(Hands::Two), _) => (Some(EquipSlot::Mainhand), 1), + (_, Some(Hands::One)) => (Some(EquipSlot::Offhand), 0), + (Some(Hands::One), _) => (Some(EquipSlot::Mainhand), 1), + (_, _) => (None, 0), + } + }; + + let unlocked = |(s, a): (Option, CharacterAbility)| { + s.map_or(true, |s| data.stats.skill_set.has_skill(s)) + .then_some(a) + }; + + if let Some(equip_slot) = equip_slot { if let Some(ability) = data .inventory - .equipped(EquipSlot::Mainhand) - .and_then(|i| { - i.item_config_expect().ability1.as_ref().map(|a| { - let tool = match i.kind() { - ItemKind::Tool(tool) => Some(tool.kind), - _ => None, - }; - a.clone().adjusted_by_skills(&data.stats.skill_set, tool) - }) + .equipped(equip_slot) + .map(|i| &i.item_config_expect().abilities) + .and_then(|abilities| match ability_key { + AbilityKey::Mouse1 => Some(abilities.primary.clone()), + AbilityKey::Mouse2 => Some(abilities.secondary.clone()), + AbilityKey::Skill1 => abilities.abilities.get(0).cloned().and_then(unlocked), + AbilityKey::Skill2 => abilities + .abilities + .get(skill_index) + .cloned() + .and_then(unlocked), + AbilityKey::Dodge => None, + }) + .map(|a| { + let tool = unwrap_tool_data(data, equip_slot).map(|t| t.kind); + a.adjusted_by_skills(&data.stats.skill_set, tool) }) .filter(|ability| ability.requirements_paid(data, update)) { - update.character = (&ability, AbilityKey::Mouse1).into(); + update.character = ( + &ability, + AbilityInfo::from_key(data, ability_key, matches!(equip_slot, EquipSlot::Offhand)), + ) + .into(); } } } +pub fn handle_ability1_input(data: &JoinData, update: &mut StateUpdate) { + if data.inputs.primary.is_pressed() { + handle_ability_pressed(data, update, AbilityKey::Mouse1); + } +} + pub fn handle_ability2_input(data: &JoinData, update: &mut StateUpdate) { if data.inputs.secondary.is_pressed() { - let active_tool_kind = match data - .inventory - .equipped(EquipSlot::Mainhand) - .map(|i| i.kind()) - { - Some(ItemKind::Tool(Tool { kind, .. })) => Some(kind), - _ => None, - }; - - let second_tool_kind = match data - .inventory - .equipped(EquipSlot::Offhand) - .map(|i| i.kind()) - { - Some(ItemKind::Tool(Tool { kind, .. })) => Some(kind), - _ => None, - }; - - match ( - active_tool_kind.map(|tk| tk.hands()), - second_tool_kind.map(|tk| tk.hands()), - ) { - (Some(Hands::TwoHand), _) => { - if let Some(ability) = data - .inventory - .equipped(EquipSlot::Mainhand) - .and_then(|i| { - i.item_config_expect().ability2.as_ref().map(|a| { - let tool = match i.kind() { - ItemKind::Tool(tool) => Some(tool.kind), - _ => None, - }; - a.clone().adjusted_by_skills(&data.stats.skill_set, tool) - }) - }) - .filter(|ability| ability.requirements_paid(data, update)) - { - update.character = (&ability, AbilityKey::Mouse2).into(); - } - }, - (_, Some(Hands::OneHand)) => { - if let Some(ability) = data - .inventory - .equipped(EquipSlot::Offhand) - .and_then(|i| { - i.item_config_expect().ability2.as_ref().map(|a| { - let tool = match i.kind() { - ItemKind::Tool(tool) => Some(tool.kind), - _ => None, - }; - a.clone().adjusted_by_skills(&data.stats.skill_set, tool) - }) - }) - .filter(|ability| ability.requirements_paid(data, update)) - { - update.character = (&ability, AbilityKey::Mouse2).into(); - } - }, - (_, _) => {}, - }; + handle_ability_pressed(data, update, AbilityKey::Mouse2); } } pub fn handle_ability3_input(data: &JoinData, update: &mut StateUpdate) { if data.inputs.ability3.is_pressed() { - if let Some(ability) = data - .inventory - .equipped(EquipSlot::Mainhand) - .and_then(|i| { - let tool = match i.kind() { - ItemKind::Tool(tool) => Some(tool.kind), - _ => None, - }; - i.item_config_expect() - .ability3 - .as_ref() - .and_then(|s| match tool { - // TODO: Make this so abilities aren't hardcoded to ability3 - Some(ToolKind::Sword) - if !&data - .stats - .skill_set - .has_skill(Skill::Sword(SwordSkill::UnlockSpin)) => - { - None - }, - Some(ToolKind::Axe) - if !&data - .stats - .skill_set - .has_skill(Skill::Axe(AxeSkill::UnlockLeap)) => - { - None - }, - Some(ToolKind::Hammer) - if !&data - .stats - .skill_set - .has_skill(Skill::Hammer(HammerSkill::UnlockLeap)) => - { - None - }, - Some(ToolKind::Bow) - if !&data - .stats - .skill_set - .has_skill(Skill::Bow(BowSkill::UnlockRepeater)) => - { - None - }, - Some(ToolKind::Staff) - if !&data - .stats - .skill_set - .has_skill(Skill::Staff(StaffSkill::UnlockShockwave)) => - { - None - }, - _ => Some(s), - }) - .map(|a| a.clone().adjusted_by_skills(&data.stats.skill_set, tool)) - }) - .filter(|ability| ability.requirements_paid(data, update)) - { - update.character = (&ability, AbilityKey::Skill1).into(); - } + handle_ability_pressed(data, update, AbilityKey::Skill1); + } +} + +pub fn handle_ability4_input(data: &JoinData, update: &mut StateUpdate) { + if data.inputs.ability4.is_pressed() { + handle_ability_pressed(data, update, AbilityKey::Skill2); } } @@ -569,28 +499,36 @@ pub fn handle_dodge_input(data: &JoinData, update: &mut StateUpdate) { .filter(|ability| ability.requirements_paid(data, update)) { if data.character.is_wield() { - update.character = (&ability, AbilityKey::Dodge).into(); + update.character = ( + &ability, + AbilityInfo::from_key(data, AbilityKey::Dodge, false), + ) + .into(); if let CharacterState::Roll(roll) = &mut update.character { roll.was_wielded = true; } } else if data.character.is_stealthy() { - update.character = (&ability, AbilityKey::Dodge).into(); + update.character = ( + &ability, + AbilityInfo::from_key(data, AbilityKey::Dodge, false), + ) + .into(); if let CharacterState::Roll(roll) = &mut update.character { roll.was_sneak = true; } } else { - update.character = (&ability, AbilityKey::Dodge).into(); + update.character = ( + &ability, + AbilityInfo::from_key(data, AbilityKey::Dodge, false), + ) + .into(); } } } } -pub fn unwrap_tool_data<'a>(data: &'a JoinData) -> Option<&'a Tool> { - if let Some(ItemKind::Tool(tool)) = data - .inventory - .equipped(EquipSlot::Mainhand) - .map(|i| i.kind()) - { +pub fn unwrap_tool_data<'a>(data: &'a JoinData, equip_slot: EquipSlot) -> Option<&'a Tool> { + if let Some(ItemKind::Tool(tool)) = data.inventory.equipped(equip_slot).map(|i| i.kind()) { Some(&tool) } else { None @@ -602,6 +540,7 @@ pub fn handle_interrupt(data: &JoinData, update: &mut StateUpdate, attacks_inter handle_ability1_input(data, update); handle_ability2_input(data, update); handle_ability3_input(data, update); + handle_ability4_input(data, update); } handle_dodge_input(data, update); } @@ -611,6 +550,7 @@ pub fn ability_key_is_pressed(data: &JoinData, ability_key: AbilityKey) -> bool AbilityKey::Mouse1 => data.inputs.primary.is_pressed(), AbilityKey::Mouse2 => data.inputs.secondary.is_pressed(), AbilityKey::Skill1 => data.inputs.ability3.is_pressed(), + AbilityKey::Skill2 => data.inputs.ability4.is_pressed(), AbilityKey::Dodge => data.inputs.roll.is_pressed(), } } @@ -642,6 +582,7 @@ pub enum AbilityKey { Mouse1, Mouse2, Skill1, + Skill2, Dodge, } @@ -678,3 +619,46 @@ impl MovementDirection { .unwrap_or_default() } } + +#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)] +pub struct AbilityInfo { + pub tool: Option, + pub hand: Option, + pub key: AbilityKey, +} + +impl AbilityInfo { + pub fn from_key(data: &JoinData, key: AbilityKey, from_offhand: bool) -> Self { + let tool_data = if from_offhand { + unwrap_tool_data(data, EquipSlot::Offhand) + } else { + unwrap_tool_data(data, EquipSlot::Mainhand) + }; + let (tool, hand) = if from_offhand { + (tool_data.map(|t| t.kind), Some(HandInfo::OffHand)) + } else { + ( + tool_data.map(|t| t.kind), + tool_data.map(|t| HandInfo::from_main_tool(t)), + ) + }; + + Self { tool, hand, key } + } +} + +#[derive(Clone, Copy, Debug, PartialEq, Serialize, Deserialize)] +pub enum HandInfo { + TwoHanded, + MainHand, + OffHand, +} + +impl HandInfo { + pub fn from_main_tool(tool: &Tool) -> Self { + match tool.hands { + Hands::Two => Self::TwoHanded, + Hands::One => Self::MainHand, + } + } +} diff --git a/common/src/states/wielding.rs b/common/src/states/wielding.rs index 30a8c69d4b..dc21ae44d7 100644 --- a/common/src/states/wielding.rs +++ b/common/src/states/wielding.rs @@ -19,6 +19,7 @@ impl CharacterBehavior for Data { handle_ability1_input(&data, &mut update); handle_ability2_input(&data, &mut update); handle_ability3_input(&data, &mut update); + handle_ability4_input(&data, &mut update); handle_dodge_input(&data, &mut update); update diff --git a/server/src/events/interaction.rs b/server/src/events/interaction.rs index ddfdc50261..93ab93643a 100644 --- a/server/src/events/interaction.rs +++ b/server/src/events/interaction.rs @@ -226,7 +226,7 @@ pub fn handle_possess(server: &Server, possessor_uid: Uid, possesse_uid: Uid) { .expect("Could not read inventory component while possessing") .or_insert(Inventory::new_empty()); - let debug_item = comp::Item::new_from_asset_expect("common.items.debug.possess"); + let debug_item = comp::Item::new_from_asset_expect("common.items.debug.admin_stick"); if let item::ItemKind::Tool(_) = debug_item.kind() { inventory .swap( diff --git a/server/src/migrations/2021-02-12-054315_purge_duplicate_items/down.sql b/server/src/migrations/2021-02-12-054315_purge_duplicate_items/down.sql new file mode 100644 index 0000000000..291a97c5ce --- /dev/null +++ b/server/src/migrations/2021-02-12-054315_purge_duplicate_items/down.sql @@ -0,0 +1 @@ +-- This file should undo anything in `up.sql` \ No newline at end of file diff --git a/server/src/migrations/2021-02-12-054315_purge_duplicate_items/up.sql b/server/src/migrations/2021-02-12-054315_purge_duplicate_items/up.sql new file mode 100644 index 0000000000..0048bcb03a --- /dev/null +++ b/server/src/migrations/2021-02-12-054315_purge_duplicate_items/up.sql @@ -0,0 +1,50 @@ +UPDATE item +SET item_definition_id = 'common.items.debug.admin_sword' WHERE item_definition_id = 'common.items.debug.cultist_purp_2h_boss-0'; +UPDATE item +SET item_definition_id = 'common.items.debug.admin_stick' WHERE item_definition_id = 'common.items.debug.boost'; +UPDATE item +SET item_definition_id = 'common.items.debug.admin_stick' WHERE item_definition_id = 'common.items.debug.possess'; +UPDATE item +SET item_definition_id = 'common.items.weapons.malachite_axe-0' WHERE item_definition_id = 'common.items.npc_weapons.malachite_axe-0'; +UPDATE item +SET item_definition_id = 'common.items.weapons.axe.starter_axe' WHERE item_definition_id = 'common.items.npc_weapons.axe.starter_axe'; +UPDATE item +SET item_definition_id = 'common.items.weapons.bow.horn_longbow' WHERE item_definition_id = 'common.items.npc_weapons.bow.horn_longbow'; +UPDATE item +SET item_definition_id = 'common.items.weapons.dagger.starter_dagger' WHERE item_definition_id = 'common.items.npc_weapons.dagger.starter_dagger'; +UPDATE item +SET item_definition_id = 'common.items.weapons.empty.empty' WHERE item_definition_id = 'common.items.npc_weapons.empty.empty'; +UPDATE item +SET item_definition_id = 'common.items.weapons.hammer.cultist_purp_2h-0' WHERE item_definition_id = 'common.items.npc_weapons.hammer.cultist_purp_2h-0'; +UPDATE item +SET item_definition_id = 'common.items.weapons.hammer.starter_hammer' WHERE item_definition_id = 'common.items.npc_weapons.hammer.starter_hammer'; +UPDATE item +SET item_definition_id = 'common.items.weapons.shield.shield_1' WHERE item_definition_id = 'common.items.npc_weapons.shield.shield_1'; +UPDATE item +SET item_definition_id = 'common.items.weapons.staff.bone_staff' WHERE item_definition_id = 'common.items.npc_weapons.staff.bone_staff'; +UPDATE item +SET item_definition_id = 'common.items.weapons.staff.cultist_staff' WHERE item_definition_id = 'common.items.npc_weapons.staff.cultist_staff'; +UPDATE item +SET item_definition_id = 'common.items.weapons.sword.cultist_purp_2h-0' WHERE item_definition_id = 'common.items.npc_weapons.sword.cultist_purp_2h_boss-0'; +UPDATE item +SET item_definition_id = 'common.items.weapons.sword.cultust_purp_2h-0' WHERE item_definition_id = 'common.items.npc_weapons.sword.cultust_purp_2h-0'; +UPDATE item +SET item_definition_id = 'common.items.weapons.sword.starter_sword' WHERE item_definition_id = 'common.items.npc_weapons.sword.starter_sword'; +UPDATE item +SET item_definition_id = 'common.items.weapons.sword.zweihander_sword_0' WHERE item_definition_id = 'common.items.npc_weapons.sword.zweihander_sword_0'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.broom' WHERE item_definition_id = 'common.items.npc_weapons.tool.broom'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.fishing_rod' WHERE item_definition_id = 'common.items.npc_weapons.tool.fishing_rod'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.hoe' WHERE item_definition_id = 'common.items.npc_weapons.tool.hoe'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.pickaxe' WHERE item_definition_id = 'common.items.npc_weapons.tool.pickaxe'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.pitchfork' WHERE item_definition_id = 'common.items.npc_weapons.tool.pitchfork'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.rake' WHERE item_definition_id = 'common.items.npc_weapons.tool.rake'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.shovel-0' WHERE item_definition_id = 'common.items.npc_weapons.tool.shovel-0'; +UPDATE item +SET item_definition_id = 'common.items.weapons.tool.shovel-1' WHERE item_definition_id = 'common.items.npc_weapons.tool.shovel-1'; \ No newline at end of file diff --git a/server/src/sys/msg/in_game.rs b/server/src/sys/msg/in_game.rs index 1d90ff70a5..c8076c9bc6 100644 --- a/server/src/sys/msg/in_game.rs +++ b/server/src/sys/msg/in_game.rs @@ -71,7 +71,7 @@ impl Sys { ClientGeneral::ControllerInputs(inputs) => { if matches!(presence.kind, PresenceKind::Character(_)) { if let Some(controller) = controllers.get_mut(entity) { - controller.inputs.update_with_new(inputs); + controller.inputs.update_with_new(*inputs); } } }, diff --git a/voxygen/anim/src/character/idle.rs b/voxygen/anim/src/character/idle.rs index e4394dac97..df357c49d2 100644 --- a/voxygen/anim/src/character/idle.rs +++ b/voxygen/anim/src/character/idle.rs @@ -8,7 +8,13 @@ use std::{f32::consts::PI, ops::Mul}; pub struct IdleAnimation; impl Animation for IdleAnimation { - type Dependency = (Option, Option, f64); + #[allow(clippy::type_complexity)] + type Dependency = ( + Option, + Option, + (Option, Option), + f64, + ); type Skeleton = CharacterSkeleton; #[cfg(feature = "use-dyn-lib")] @@ -17,7 +23,7 @@ impl Animation for IdleAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "character_idle")] fn update_skeleton_inner( skeleton: &Self::Skeleton, - (active_tool_kind, second_tool_kind, global_time): Self::Dependency, + (active_tool_kind, second_tool_kind, hands, global_time): Self::Dependency, anim_time: f64, _rate: &mut f32, s_a: &SkeletonAttr, @@ -137,11 +143,8 @@ impl Animation for IdleAnimation { next.torso.position = Vec3::new(0.0, 0.0, 0.0) * s_a.scaler; - next.second.scale = match ( - active_tool_kind.map(|tk| tk.hands()), - second_tool_kind.map(|tk| tk.hands()), - ) { - (Some(Hands::OneHand), Some(Hands::OneHand)) => Vec3::one(), + next.second.scale = match hands { + (Some(Hands::One), Some(Hands::One)) => Vec3::one(), (_, _) => Vec3::zero(), }; diff --git a/voxygen/anim/src/character/jump.rs b/voxygen/anim/src/character/jump.rs index 27db8b89b4..b012388d12 100644 --- a/voxygen/anim/src/character/jump.rs +++ b/voxygen/anim/src/character/jump.rs @@ -7,9 +7,11 @@ use std::f32::consts::PI; pub struct JumpAnimation; impl Animation for JumpAnimation { + #[allow(clippy::type_complexity)] type Dependency = ( Option, Option, + (Option, Option), Vec3, Vec3, f64, @@ -23,7 +25,7 @@ impl Animation for JumpAnimation { fn update_skeleton_inner( skeleton: &Self::Skeleton, - (active_tool_kind, second_tool_kind, orientation, last_ori, global_time): Self::Dependency, + (active_tool_kind, second_tool_kind, hands, orientation, last_ori, global_time): Self::Dependency, anim_time: f64, _rate: &mut f32, s_a: &SkeletonAttr, @@ -179,11 +181,8 @@ impl Animation for JumpAnimation { next.torso.orientation = Quaternion::rotation_x(-0.2); next.torso.scale = Vec3::one() / 11.0 * s_a.scaler; - next.second.scale = match ( - active_tool_kind.map(|tk| tk.hands()), - second_tool_kind.map(|tk| tk.hands()), - ) { - (Some(Hands::OneHand), Some(Hands::OneHand)) => Vec3::one(), + next.second.scale = match hands { + (Some(Hands::One), Some(Hands::One)) => Vec3::one(), (_, _) => Vec3::zero(), }; diff --git a/voxygen/anim/src/character/run.rs b/voxygen/anim/src/character/run.rs index 685e1f2061..fb95b4879e 100644 --- a/voxygen/anim/src/character/run.rs +++ b/voxygen/anim/src/character/run.rs @@ -10,6 +10,7 @@ pub struct RunAnimation; type RunAnimationDependency = ( Option, Option, + (Option, Option), Vec3, Vec3, Vec3, @@ -32,6 +33,7 @@ impl Animation for RunAnimation { ( active_tool_kind, second_tool_kind, + hands, velocity, orientation, last_ori, @@ -263,11 +265,8 @@ impl Animation for RunAnimation { next.torso.position = Vec3::new(0.0, 0.0, 0.0) * s_a.scaler; next.torso.scale = Vec3::one() / 11.0 * s_a.scaler; - next.second.scale = match ( - active_tool_kind.map(|tk| tk.hands()), - second_tool_kind.map(|tk| tk.hands()), - ) { - (Some(Hands::OneHand), Some(Hands::OneHand)) => Vec3::one(), + next.second.scale = match hands { + (Some(Hands::One), Some(Hands::One)) => Vec3::one(), (_, _) => Vec3::zero(), }; diff --git a/voxygen/anim/src/character/stand.rs b/voxygen/anim/src/character/stand.rs index b9cb4be619..1ec77e6f04 100644 --- a/voxygen/anim/src/character/stand.rs +++ b/voxygen/anim/src/character/stand.rs @@ -8,7 +8,14 @@ use std::{f32::consts::PI, ops::Mul}; pub struct StandAnimation; impl Animation for StandAnimation { - type Dependency = (Option, Option, f64, Vec3); + #[allow(clippy::type_complexity)] + type Dependency = ( + Option, + Option, + (Option, Option), + f64, + Vec3, + ); type Skeleton = CharacterSkeleton; #[cfg(feature = "use-dyn-lib")] @@ -17,7 +24,7 @@ impl Animation for StandAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "character_stand")] fn update_skeleton_inner( skeleton: &Self::Skeleton, - (active_tool_kind, second_tool_kind, global_time, avg_vel): Self::Dependency, + (active_tool_kind, second_tool_kind, hands, global_time, avg_vel): Self::Dependency, anim_time: f64, _rate: &mut f32, s_a: &SkeletonAttr, @@ -143,11 +150,8 @@ impl Animation for StandAnimation { next.torso.position = Vec3::new(0.0, 0.0, 0.0) * s_a.scaler; - next.second.scale = match ( - active_tool_kind.map(|tk| tk.hands()), - second_tool_kind.map(|tk| tk.hands()), - ) { - (Some(Hands::OneHand), Some(Hands::OneHand)) => Vec3::one(), + next.second.scale = match hands { + (Some(Hands::One), Some(Hands::One)) => Vec3::one(), (_, _) => Vec3::zero(), }; diff --git a/voxygen/anim/src/character/swim.rs b/voxygen/anim/src/character/swim.rs index ebb6f3d29a..26878b9436 100644 --- a/voxygen/anim/src/character/swim.rs +++ b/voxygen/anim/src/character/swim.rs @@ -10,6 +10,7 @@ pub struct SwimAnimation; type SwimAnimationDependency = ( Option, Option, + (Option, Option), Vec3, Vec3, Vec3, @@ -28,7 +29,16 @@ impl Animation for SwimAnimation { fn update_skeleton_inner( skeleton: &Self::Skeleton, - (active_tool_kind, second_tool_kind, velocity, orientation, last_ori, global_time, avg_vel): Self::Dependency, + ( + active_tool_kind, + second_tool_kind, + hands, + velocity, + orientation, + last_ori, + global_time, + avg_vel, + ): Self::Dependency, anim_time: f64, rate: &mut f32, s_a: &SkeletonAttr, @@ -223,11 +233,8 @@ impl Animation for SwimAnimation { * Quaternion::rotation_z(tilt * 8.0); next.torso.scale = Vec3::one() / 11.0 * s_a.scaler; - next.second.scale = match ( - active_tool_kind.map(|tk| tk.hands()), - second_tool_kind.map(|tk| tk.hands()), - ) { - (Some(Hands::OneHand), Some(Hands::OneHand)) => Vec3::one(), + next.second.scale = match hands { + (Some(Hands::One), Some(Hands::One)) => Vec3::one(), (_, _) => Vec3::zero(), }; diff --git a/voxygen/src/audio/sfx/event_mapper/combat/tests.rs b/voxygen/src/audio/sfx/event_mapper/combat/tests.rs index 45a6e47c1c..af3f53eadc 100644 --- a/voxygen/src/audio/sfx/event_mapper/combat/tests.rs +++ b/voxygen/src/audio/sfx/event_mapper/combat/tests.rs @@ -78,7 +78,7 @@ fn maps_basic_melee() { knockback: 0.0, range: 1.0, max_angle: 1.0, - ability_key: states::utils::AbilityKey::Mouse1, + ability_info: empty_ability_info(), }, timer: Duration::default(), stage_section: states::utils::StageSection::Buildup, @@ -132,7 +132,7 @@ fn matches_ability_stage() { max_speed_increase: 0.8, scales_from_combo: 2, is_interruptible: true, - ability_key: states::utils::AbilityKey::Mouse1, + ability_info: empty_ability_info(), }, stage: 1, combo: 0, @@ -191,7 +191,7 @@ fn ignores_different_ability_stage() { max_speed_increase: 0.8, scales_from_combo: 2, is_interruptible: true, - ability_key: states::utils::AbilityKey::Mouse1, + ability_info: empty_ability_info(), }, stage: 1, combo: 0, @@ -215,3 +215,11 @@ fn ignores_different_ability_stage() { ) ); } + +fn empty_ability_info() -> states::utils::AbilityInfo { + states::utils::AbilityInfo { + tool: None, + hand: None, + key: states::utils::AbilityKey::Mouse1, + } +} diff --git a/voxygen/src/hud/hotbar.rs b/voxygen/src/hud/hotbar.rs index a334cb9c2e..a717c96b01 100644 --- a/voxygen/src/hud/hotbar.rs +++ b/voxygen/src/hud/hotbar.rs @@ -1,5 +1,9 @@ use crate::hud::slots::EquipSlot; -use common::comp::{slot::InvSlotId, Inventory}; +use common::comp::{ + item::{tool::Hands, ItemKind}, + slot::InvSlotId, + Inventory, +}; use serde::{Deserialize, Serialize}; #[derive(Clone, Copy, Debug, PartialEq)] @@ -20,6 +24,7 @@ pub enum Slot { pub enum SlotContents { Inventory(InvSlotId), Ability3, + Ability4, } #[derive(Clone, Debug)] @@ -74,44 +79,16 @@ impl State { let stats = client.state().ecs().read_storage::(); let stat = stats.get(client.entity()); let should_be_present = if let (Some(inventory), Some(stat)) = (inventory, stat) { - inventory - .equipped(EquipSlot::Mainhand) - .map(|i| i.kind()) - .filter(|kind| { - use common::comp::{ - item::{ - tool::{ToolKind, UniqueKind}, - ItemKind, - }, - skills::{self, Skill}, - }; - if let ItemKind::Tool(tool) = kind { - match tool.kind { - ToolKind::Sword => stat - .skill_set - .has_skill(Skill::Sword(skills::SwordSkill::UnlockSpin)), - ToolKind::Axe => stat - .skill_set - .has_skill(Skill::Axe(skills::AxeSkill::UnlockLeap)), - ToolKind::Hammer => stat - .skill_set - .has_skill(Skill::Hammer(skills::HammerSkill::UnlockLeap)), - ToolKind::Bow => stat - .skill_set - .has_skill(Skill::Bow(skills::BowSkill::UnlockRepeater)), - ToolKind::Staff => stat - .skill_set - .has_skill(Skill::Staff(skills::StaffSkill::UnlockShockwave)), - ToolKind::Debug - | ToolKind::Unique(UniqueKind::QuadMedQuick) - | ToolKind::Unique(UniqueKind::QuadLowBreathe) => true, - _ => false, - } - } else { - false - } - }) - .is_some() + inventory.equipped(EquipSlot::Mainhand).map_or(false, |i| { + i.item_config_expect() + .abilities + .abilities + .get(0) + .as_ref() + .map_or(false, |(s, _)| { + s.map_or(true, |s| stat.skill_set.has_skill(s)) + }) + }) } else { false }; @@ -131,4 +108,60 @@ impl State { .for_each(|s| *s = None) } } + + pub fn maintain_ability4(&mut self, client: &client::Client) { + use specs::WorldExt; + let inventories = client.state().ecs().read_storage::(); + let inventory = inventories.get(client.entity()); + let stats = client.state().ecs().read_storage::(); + let stat = stats.get(client.entity()); + let should_be_present = if let (Some(inventory), Some(stat)) = (inventory, stat) { + let hands = |equip_slot| match inventory.equipped(equip_slot).map(|i| i.kind()) { + Some(ItemKind::Tool(tool)) => Some(tool.hands), + _ => None, + }; + + let active_tool_hands = hands(EquipSlot::Mainhand); + let second_tool_hands = hands(EquipSlot::Offhand); + + let (equip_slot, skill_index) = match (active_tool_hands, second_tool_hands) { + (Some(Hands::Two), _) => (Some(EquipSlot::Mainhand), 1), + (_, Some(Hands::One)) => (Some(EquipSlot::Offhand), 0), + (Some(Hands::One), _) => (Some(EquipSlot::Mainhand), 1), + (_, _) => (None, 0), + }; + + if let Some(equip_slot) = equip_slot { + inventory.equipped(equip_slot).map_or(false, |i| { + i.item_config_expect() + .abilities + .abilities + .get(skill_index) + .as_ref() + .map_or(false, |(s, _)| { + s.map_or(true, |s| stat.skill_set.has_skill(s)) + }) + }) + } else { + false + } + } else { + false + }; + + if should_be_present { + if !self + .slots + .iter() + .any(|s| matches!(s, Some(SlotContents::Ability4))) + { + self.slots[1] = Some(SlotContents::Ability4); + } + } else { + self.slots + .iter_mut() + .filter(|s| matches!(s, Some(SlotContents::Ability4))) + .for_each(|s| *s = None) + } + } } diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 01a530be68..1261c20bf9 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -401,6 +401,7 @@ pub enum Event { ChangeHotbarState(Box), TradeAction(TradeAction), Ability3(bool), + Ability4(bool), Logout, Quit, ChangeLanguage(Box), @@ -2685,8 +2686,9 @@ impl Hud { bypass_dialog: false, }); }, - hotbar::SlotContents::Ability3 => {}, /* Event::Ability3(true), - * sticks */ + hotbar::SlotContents::Ability3 | hotbar::SlotContents::Ability4 => { + }, /* Event::Ability3(true), + * sticks */ } }); } @@ -2694,6 +2696,7 @@ impl Hud { } } self.hotbar.maintain_ability3(client); + self.hotbar.maintain_ability4(client); events } @@ -2752,6 +2755,7 @@ impl Hud { } }, hotbar::SlotContents::Ability3 => events.push(Event::Ability3(state)), + hotbar::SlotContents::Ability4 => events.push(Event::Ability4(state)), }); } } diff --git a/voxygen/src/hud/skillbar.rs b/voxygen/src/hud/skillbar.rs index 5f607689d5..bdfd3ee807 100644 --- a/voxygen/src/hud/skillbar.rs +++ b/voxygen/src/hud/skillbar.rs @@ -452,36 +452,42 @@ impl<'a> Widget for Skillbar<'a> { .equipped(EquipSlot::Mainhand) .map(|i| i.kind()) .and_then(|kind| match kind { - ItemKind::Tool(Tool { kind, .. }) => match kind { - ToolKind::Hammer => Some(( - "Smash of Doom", - "\nAn AOE attack with knockback. \nLeaps to position of \ - cursor.", - )), - ToolKind::Axe => { - Some(("Spin Leap", "\nA slashing running spin leap.")) - }, - ToolKind::Staff => Some(( - "Firebomb", - "\nWhirls a big fireball into the air. \nExplodes the ground \ - and does\na big amount of damage", - )), - ToolKind::Sword => Some(( - "Whirlwind", - "\nMove forward while spinning with \n your sword.", - )), - ToolKind::Bow => Some(( - "Burst", - "\nLaunches a burst of arrows at the top \nof a running leap.", - )), - ToolKind::Debug => Some(( - "Possessing Arrow", - "\nShoots a poisonous arrow.\nLets you control your target.", - )), - _ => None, - }, + ItemKind::Tool(Tool { kind, .. }) => ability_description(kind), _ => None, }), + hotbar::SlotContents::Ability4 => { + let hands = |equip_slot| match content_source + .1 + .equipped(equip_slot) + .map(|i| i.kind()) + { + Some(ItemKind::Tool(tool)) => Some(tool.hands), + _ => None, + }; + + let active_tool_hands = hands(EquipSlot::Mainhand); + let second_tool_hands = hands(EquipSlot::Offhand); + + let equip_slot = match (active_tool_hands, second_tool_hands) { + (Some(Hands::Two), _) => Some(EquipSlot::Mainhand), + (_, Some(Hands::One)) => Some(EquipSlot::Offhand), + (Some(Hands::One), _) => Some(EquipSlot::Mainhand), + (_, _) => None, + }; + + if let Some(equip_slot) = equip_slot { + content_source + .1 + .equipped(equip_slot) + .map(|i| i.kind()) + .and_then(|kind| match kind { + ItemKind::Tool(Tool { kind, .. }) => ability_description(kind), + _ => None, + }) + } else { + None + } + }, }) }; // Slot 1-5 @@ -587,12 +593,10 @@ impl<'a> Widget for Skillbar<'a> { let active_tool = get_tool(self.inventory, EquipSlot::Mainhand); let second_tool = get_tool(self.inventory, EquipSlot::Offhand); - let tool = match ( - active_tool.map(|x| x.kind.hands()), - second_tool.map(|x| x.kind.hands()), - ) { - (Some(Hands::TwoHand), _) => active_tool, - (_, Some(Hands::OneHand)) => second_tool, + let tool = match (active_tool.map(|x| x.hands), second_tool.map(|x| x.hands)) { + (Some(Hands::Two), _) => active_tool, + (_, Some(Hands::One)) => second_tool, + (Some(Hands::One), _) => active_tool, (_, _) => None, }; @@ -892,3 +896,31 @@ impl<'a> Widget for Skillbar<'a> { .set(state.ids.m2_ico, ui); } } + +fn ability_description(tool: &ToolKind) -> Option<(&str, &str)> { + match tool { + ToolKind::Hammer => Some(( + "Smash of Doom", + "\nAn AOE attack with knockback. \nLeaps to position of cursor.", + )), + ToolKind::Axe => Some(("Spin Leap", "\nA slashing running spin leap.")), + ToolKind::Staff => Some(( + "Firebomb", + "\nWhirls a big fireball into the air. \nExplodes the ground and does\na big amount \ + of damage", + )), + ToolKind::Sword => Some(( + "Whirlwind", + "\nMove forward while spinning with \n your sword.", + )), + ToolKind::Bow => Some(( + "Burst", + "\nLaunches a burst of arrows at the top \nof a running leap.", + )), + ToolKind::Debug => Some(( + "Possessing Arrow", + "\nShoots a poisonous arrow.\nLets you control your target.", + )), + _ => None, + } +} diff --git a/voxygen/src/hud/slots.rs b/voxygen/src/hud/slots.rs index 305c5def4e..338555b6d4 100644 --- a/voxygen/src/hud/slots.rs +++ b/voxygen/src/hud/slots.rs @@ -6,7 +6,7 @@ use super::{ use crate::ui::slot::{self, SlotKey, SumSlot}; use common::comp::{ item::{ - tool::{AbilityMap, ToolKind}, + tool::{AbilityMap, Hands, ToolKind}, ItemKind, }, slot::InvSlotId, @@ -123,20 +123,52 @@ impl<'a> SlotKey, HotbarImageSource<'a>> for HotbarSlot { }; tool.and_then(|tool| { - match tool.kind { - ToolKind::Staff => Some(HotbarImage::FireAoe), - ToolKind::Hammer => Some(HotbarImage::HammerLeap), - ToolKind::Axe => Some(HotbarImage::AxeLeapSlash), - ToolKind::Bow => Some(HotbarImage::BowJumpBurst), - ToolKind::Debug => Some(HotbarImage::SnakeArrow), - ToolKind::Sword => Some(HotbarImage::SwordWhirlwind), - _ => None, - } - .map(|i| { + hotbar_image(tool.kind).map(|i| { ( i, - if let Some(skill) = tool.get_abilities(ability_map).skills.get(0) { - if energy.current() >= skill.get_energy_cost() { + if let Some(skill) = tool.get_abilities(ability_map).abilities.get(0) { + if energy.current() >= skill.1.get_energy_cost() { + Some(Color::Rgba(1.0, 1.0, 1.0, 1.0)) + } else { + Some(Color::Rgba(0.3, 0.3, 0.3, 0.8)) + } + } else { + Some(Color::Rgba(1.0, 1.0, 1.0, 1.0)) + }, + ) + }) + }) + }, + hotbar::SlotContents::Ability4 => { + let hands = |equip_slot| match inventory.equipped(equip_slot).map(|i| i.kind()) { + Some(ItemKind::Tool(tool)) => Some(tool.hands), + _ => None, + }; + + let active_tool_hands = hands(EquipSlot::Mainhand); + let second_tool_hands = hands(EquipSlot::Offhand); + + let (equip_slot, skill_index) = match (active_tool_hands, second_tool_hands) { + (Some(Hands::Two), _) => (Some(EquipSlot::Mainhand), 1), + (_, Some(Hands::One)) => (Some(EquipSlot::Offhand), 0), + (Some(Hands::One), _) => (Some(EquipSlot::Mainhand), 1), + (_, _) => (None, 0), + }; + + let tool = match equip_slot.and_then(|es| inventory.equipped(es).map(|i| i.kind())) + { + Some(ItemKind::Tool(tool)) => Some(tool), + _ => None, + }; + + tool.and_then(|tool| { + hotbar_image(tool.kind).map(|i| { + ( + i, + if let Some(skill) = + tool.get_abilities(ability_map).abilities.get(skill_index) + { + if energy.current() >= skill.1.get_energy_cost() { Some(Color::Rgba(1.0, 1.0, 1.0, 1.0)) } else { Some(Color::Rgba(0.3, 0.3, 0.3, 0.8)) @@ -157,6 +189,7 @@ impl<'a> SlotKey, HotbarImageSource<'a>> for HotbarSlot { .and_then(|content| match content { hotbar::SlotContents::Inventory(idx) => inventory.get(idx), hotbar::SlotContents::Ability3 => None, + hotbar::SlotContents::Ability4 => None, }) .map(|item| item.amount()) .filter(|amount| *amount > 1) @@ -194,3 +227,15 @@ impl From for SlotKind { } impl SumSlot for SlotKind {} + +fn hotbar_image(tool: ToolKind) -> Option { + match tool { + ToolKind::Staff => Some(HotbarImage::FireAoe), + ToolKind::Hammer => Some(HotbarImage::HammerLeap), + ToolKind::Axe => Some(HotbarImage::AxeLeapSlash), + ToolKind::Bow => Some(HotbarImage::BowJumpBurst), + ToolKind::Debug => Some(HotbarImage::SnakeArrow), + ToolKind::Sword => Some(HotbarImage::SwordWhirlwind), + _ => None, + } +} diff --git a/voxygen/src/hud/util.rs b/voxygen/src/hud/util.rs index 142a1f1c92..7f66264869 100644 --- a/voxygen/src/hud/util.rs +++ b/voxygen/src/hud/util.rs @@ -1,6 +1,6 @@ use common::comp::item::{ armor::{Armor, ArmorKind, Protection}, - tool::{Tool, ToolKind}, + tool::{Hands, Tool, ToolKind}, ItemDesc, ItemKind, }; use std::{borrow::Cow, fmt::Write}; @@ -118,13 +118,19 @@ fn tool_desc(tool: &Tool, desc: &str) -> String { let power = tool.base_power(); //let poise_strength = tool.base_poise_strength(); let speed = tool.base_speed(); + let hands = match tool.hands { + Hands::One => "One", + Hands::Two => "Two", + }; if !desc.is_empty() { format!( - "{}\n\nDPS: {:0.1}\n\nPower: {:0.1}\n\nSpeed: {:0.1}\n\n{}\n\n", + "{}-Handed {}\n\nDPS: {:0.1}\n\nPower: {:0.1}\n\nSpeed: {:0.1}\n\n{}\n\n", // add back when ready for poise //"{}\n\nDPS: {:0.1}\n\nPower: {:0.1}\n\nPoise Strength: {:0.1}\n\nSpeed: \ // {:0.1}\n\n{}\n\n", + hands, kind, speed * power * 10.0, // Damage per second power * 10.0, @@ -134,10 +140,11 @@ fn tool_desc(tool: &Tool, desc: &str) -> String { ) } else { format!( - "{}\n\nDPS: {:0.1}\n\nPower: {:0.1}\n\nSpeed: {:0.1}\n\n", + "{}-Handed {}\n\nDPS: {:0.1}\n\nPower: {:0.1}\n\nSpeed: {:0.1}\n\n", // add back when ready for poise //"{}\n\nDPS: {:0.1}\n\nPower: {:0.1}\n\nPoise Strength: {:0.1}\n\nSpeed: \ // {:0.1}\n\n", + hands, kind, speed * power * 10.0, // Damage per second power * 10.0, diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 40e6fa1c6e..f1717bd619 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -689,21 +689,25 @@ impl FigureMgr { let active_item_kind = inventory .and_then(|i| i.equipped(EquipSlot::Mainhand)) .map(|i| i.kind()); - let active_tool_kind = if let Some(ItemKind::Tool(tool)) = active_item_kind { - Some(tool.kind) - } else { - None - }; + let (active_tool_kind, active_tool_hand) = + if let Some(ItemKind::Tool(tool)) = active_item_kind { + (Some(tool.kind), Some(tool.hands)) + } else { + (None, None) + }; let second_item_kind = inventory .and_then(|i| i.equipped(EquipSlot::Offhand)) .map(|i| i.kind()); - let second_tool_kind = if let Some(ItemKind::Tool(tool)) = second_item_kind { - Some(tool.kind) - } else { - None - }; + let (second_tool_kind, second_tool_hand) = + if let Some(ItemKind::Tool(tool)) = second_item_kind { + (Some(tool.kind), Some(tool.hands)) + } else { + (None, None) + }; + + let hands = (active_tool_hand, second_tool_hand); match body { Body::Humanoid(body) => { @@ -742,7 +746,13 @@ impl FigureMgr { // Standing (true, false, false) => anim::character::StandAnimation::update_skeleton( &CharacterSkeleton::default(), - (active_tool_kind, second_tool_kind, time, state.avg_vel), + ( + active_tool_kind, + second_tool_kind, + hands, + time, + state.avg_vel, + ), state.state_time, &mut state_animation_rate, skeleton_attr, @@ -753,6 +763,7 @@ impl FigureMgr { ( active_tool_kind, second_tool_kind, + hands, vel.0, // TODO: Update to use the quaternion. ori * anim::vek::Vec3::::unit_y(), @@ -771,6 +782,7 @@ impl FigureMgr { ( active_tool_kind, second_tool_kind, + hands, // TODO: Update to use the quaternion. ori * anim::vek::Vec3::::unit_y(), state.last_ori * anim::vek::Vec3::::unit_y(), @@ -786,6 +798,7 @@ impl FigureMgr { ( active_tool_kind, second_tool_kind, + hands, vel.0, // TODO: Update to use the quaternion. ori * anim::vek::Vec3::::unit_y(), diff --git a/voxygen/src/scene/simple.rs b/voxygen/src/scene/simple.rs index 63c8277b0d..c3cd629d07 100644 --- a/voxygen/src/scene/simple.rs +++ b/voxygen/src/scene/simple.rs @@ -308,26 +308,30 @@ impl Scene { .and_then(|inv| inv.equipped(EquipSlot::Mainhand)) .map(|i| i.kind()); - let active_tool_kind = if let Some(ItemKind::Tool(tool)) = active_item_kind { - Some(tool.kind) - } else { - None - }; + let (active_tool_kind, active_tool_hand) = + if let Some(ItemKind::Tool(tool)) = active_item_kind { + (Some(tool.kind), Some(tool.hands)) + } else { + (None, None) + }; let second_item_kind = inventory .and_then(|inv| inv.equipped(EquipSlot::Offhand)) .map(|i| i.kind()); - let second_tool_kind = if let Some(ItemKind::Tool(tool)) = second_item_kind { - Some(tool.kind) - } else { - None - }; + let (second_tool_kind, second_tool_hand) = + if let Some(ItemKind::Tool(tool)) = second_item_kind { + (Some(tool.kind), Some(tool.hands)) + } else { + (None, None) + }; + + let hands = (active_tool_hand, second_tool_hand); if let Some(body) = scene_data.body { let tgt_skeleton = IdleAnimation::update_skeleton( self.figure_state.skeleton_mut(), - (active_tool_kind, second_tool_kind, scene_data.time), + (active_tool_kind, second_tool_kind, hands, scene_data.time), scene_data.time, &mut 0.0, &SkeletonAttr::from(&body), diff --git a/voxygen/src/session.rs b/voxygen/src/session.rs index d69068d270..f8ff6ddc7d 100644 --- a/voxygen/src/session.rs +++ b/voxygen/src/session.rs @@ -1165,6 +1165,7 @@ impl PlayState for SessionState { client.perform_trade_action(action); }, HudEvent::Ability3(state) => self.inputs.ability3.set_state(state), + HudEvent::Ability4(state) => self.inputs.ability4.set_state(state), HudEvent::ChangeFOV(new_fov) => { global_state.settings.graphics.fov = new_fov; global_state.settings.save_to_file_warn(); diff --git a/world/src/site/dungeon/mod.rs b/world/src/site/dungeon/mod.rs index 9b9b5a3518..41e9184715 100644 --- a/world/src/site/dungeon/mod.rs +++ b/world/src/site/dungeon/mod.rs @@ -699,7 +699,7 @@ impl Floor { ) .with_loot_drop(comp::Item::new_from_asset_expect(chosen)) .with_main_tool(comp::Item::new_from_asset_expect( - "common.items.npc_weapons.staff.cultist_staff", + "common.items.weapons.staff.cultist_staff", )), _ => entity .with_name("Cultist Warlord") diff --git a/world/src/site/settlement/mod.rs b/world/src/site/settlement/mod.rs index 6281b6eb65..35fdeea176 100644 --- a/world/src/site/settlement/mod.rs +++ b/world/src/site/settlement/mod.rs @@ -941,14 +941,14 @@ impl Settlement { _ => entity .with_main_tool(Item::new_from_asset_expect( match dynamic_rng.gen_range(0..7) { - 0 => "common.items.npc_weapons.tool.broom", - 1 => "common.items.npc_weapons.tool.hoe", - 2 => "common.items.npc_weapons.tool.pickaxe", - 3 => "common.items.npc_weapons.tool.pitchfork", - 4 => "common.items.npc_weapons.tool.rake", - 5 => "common.items.npc_weapons.tool.shovel-0", - _ => "common.items.npc_weapons.tool.shovel-1", - //_ => "common.items.npc_weapons.bow.starter_bow", TODO: Re-Add this when we have a better way of distributing npc_weapons here + 0 => "common.items.weapons.tool.broom", + 1 => "common.items.weapons.tool.hoe", + 2 => "common.items.weapons.tool.pickaxe", + 3 => "common.items.weapons.tool.pitchfork", + 4 => "common.items.weapons.tool.rake", + 5 => "common.items.weapons.tool.shovel-0", + _ => "common.items.weapons.tool.shovel-1", + //_ => "common.items.weapons.bow.starter_bow", TODO: Re-Add this when we have a better way of distributing npc_weapons here }, )) .with_loadout_config(loadout_builder::LoadoutConfig::Villager)