Removed fine-grained Item enums and replaced them with Strings

This change allows to introduce new weapons and pair them
with graphical assets without need to recompile.
This commit is contained in:
BottledByte 2020-08-02 01:21:32 +00:00 committed by Imbris
parent 8d31cfd459
commit dc91209a7b
175 changed files with 667 additions and 802 deletions

View File

@ -3,7 +3,7 @@ Item(
description: "You can hear him giggle whenever\nyou hit the ground a bit too hard...",
kind: Tool(
(
kind: Debug(Boost),
kind: Debug("Boost"),
stats: (
equip_time_millis: 0,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "You can hear him giggle whenever\nyou hit the ground a bit too hard...",
kind: Tool(
(
kind: Debug(Boost),
kind: Debug("Boost"),
stats: (
equip_time_millis: 0,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "An axe forged from steel that thirsts for blood.",
kind: Tool(
(
kind: Axe(BloodsteelAxe0),
kind: Axe("BloodsteelAxe0"),
stats: (
equip_time_millis: 400,
power: 1.60,

View File

@ -3,7 +3,7 @@ Item(
description: "An axe forged from steel that thirsts for blood.",
kind: Tool(
(
kind: Axe(BloodsteelAxe1),
kind: Axe("BloodsteelAxe1"),
stats: (
equip_time_millis: 400,
power: 1.60,

View File

@ -3,7 +3,7 @@ Item(
description: "An axe forged from steel that thirsts for blood.",
kind: Tool(
(
kind: Axe(BloodsteelAxe2),
kind: Axe("BloodsteelAxe2"),
stats: (
equip_time_millis: 400,
power: 1.60,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from bronze.",
kind: Tool(
(
kind: Axe(BronzeAxe0),
kind: Axe("BronzeAxe0"),
stats: (
equip_time_millis: 400,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from bronze.",
kind: Tool(
(
kind: Axe(BronzeAxe1),
kind: Axe("BronzeAxe1"),
stats: (
equip_time_millis: 400,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from cobalt.",
kind: Tool(
(
kind: Axe(CobaltAxe0),
kind: Axe("CobaltAxe0"),
stats: (
equip_time_millis: 400,
power: 1.80,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe0),
kind: Axe("IronAxe0"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe1),
kind: Axe("IronAxe1"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe2),
kind: Axe("IronAxe2"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe3),
kind: Axe("IronAxe3"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe4),
kind: Axe("IronAxe4"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe5),
kind: Axe("IronAxe5"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe6),
kind: Axe("IronAxe6"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe7),
kind: Axe("IronAxe7"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe8),
kind: Axe("IronAxe8"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from iron.",
kind: Tool(
(
kind: Axe(IronAxe9),
kind: Axe("IronAxe9"),
stats: (
equip_time_millis: 400,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "An axe infused with malachite.",
kind: Tool(
(
kind: Axe(MalachiteAxe0),
kind: Axe("MalachiteAxe0"),
stats: (
equip_time_millis: 400,
power: 2.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Created by orcs to cleave beasts in 2.",
kind: Tool(
(
kind: Axe(OrcAxe0),
kind: Axe("OrcAxe0"),
stats: (
equip_time_millis: 400,
power: 0.60,

View File

@ -3,7 +3,7 @@ Item(
description: "Every dent tells the story of a chopped tree.",
kind: Tool(
(
kind: Axe(BasicAxe),
kind: Axe("BasicAxe"),
stats: (
equip_time_millis: 400,
power: 0.50,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from steel.",
kind: Tool(
(
kind: Axe(SteelAxe0),
kind: Axe("SteelAxe0"),
stats: (
equip_time_millis: 400,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from steel.",
kind: Tool(
(
kind: Axe(SteelAxe1),
kind: Axe("SteelAxe1"),
stats: (
equip_time_millis: 400,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from steel.",
kind: Tool(
(
kind: Axe(SteelAxe2),
kind: Axe("SteelAxe2"),
stats: (
equip_time_millis: 400,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from steel.",
kind: Tool(
(
kind: Axe(SteelAxe3),
kind: Axe("SteelAxe3"),
stats: (
equip_time_millis: 400,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from steel.",
kind: Tool(
(
kind: Axe(SteelAxe4),
kind: Axe("SteelAxe4"),
stats: (
equip_time_millis: 400,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from steel.",
kind: Tool(
(
kind: Axe(SteelAxe5),
kind: Axe("SteelAxe5"),
stats: (
equip_time_millis: 400,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged from steel.",
kind: Tool(
(
kind: Axe(SteelAxe6),
kind: Axe("SteelAxe6"),
stats: (
equip_time_millis: 400,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Hopefully it's previous owner won't miss it.",
kind: Tool(
(
kind: Axe(WornIronAxe0),
kind: Axe("WornIronAxe0"),
stats: (
equip_time_millis: 400,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "Hopefully it's previous owner won't miss it.",
kind: Tool(
(
kind: Axe(WornIronAxe1),
kind: Axe("WornIronAxe1"),
stats: (
equip_time_millis: 400,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "Hopefully it's previous owner won't miss it.",
kind: Tool(
(
kind: Axe(WornIronAxe2),
kind: Axe("WornIronAxe2"),
stats: (
equip_time_millis: 400,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "Hopefully it's previous owner won't miss it.",
kind: Tool(
(
kind: Axe(WornIronAxe3),
kind: Axe("WornIronAxe3"),
stats: (
equip_time_millis: 400,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "The blade is in the shape of a beetle.",
kind: Tool(
(
kind: Axe(WornIronAxe4),
kind: Axe("WornIronAxe4"),
stats: (
equip_time_millis: 400,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "You don't recognize the creature these horns belong to.",
kind: Tool(
(
kind: Bow(HornLongbow0),
kind: Bow("HornLongbow0"),
stats: (
equip_time_millis: 400,
power: 1.50,

View File

@ -3,7 +3,7 @@ Item(
description: "Has an insignia on it.",
kind: Tool(
(
kind: Bow(IronLongbow0),
kind: Bow("IronLongbow0"),
stats: (
equip_time_millis: 400,
power: 1.75,

View File

@ -3,7 +3,7 @@ Item(
description: "There's a new leaf starting to grow.",
kind: Tool(
(
kind: Bow(LeafyLongbow0),
kind: Bow("LeafyLongbow0"),
stats: (
equip_time_millis: 400,
power: 1.25,

View File

@ -3,7 +3,7 @@ Item(
description: "The wood still seems alive.",
kind: Tool(
(
kind: Bow(LeafyShortbow0),
kind: Bow("LeafyShortbow0"),
stats: (
equip_time_millis: 400,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "You can sense power resting in the bow.",
kind: Tool(
(
kind: Bow(RareLongbow),
kind: Bow("RareLongbow"),
stats: (
equip_time_millis: 400,
power: 2.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Someone carved his initials into it.",
kind: Tool(
(
kind: Bow(ShortBow0),
kind: Bow("ShortBow0"),
stats: (
equip_time_millis: 400,
power: 0.50,

View File

@ -3,7 +3,7 @@ Item(
description: "It's been well used.",
kind: Tool(
(
kind: Bow(WoodLongbow0),
kind: Bow("WoodLongbow0"),
stats: (
equip_time_millis: 400,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "It's hard to pull all the way back.",
kind: Tool(
(
kind: Bow(WoodLongbow1),
kind: Bow("WoodLongbow1"),
stats: (
equip_time_millis: 400,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Strips of leather are wrapped around the handle.",
kind: Tool(
(
kind: Bow(WoodShortbow0),
kind: Bow("WoodShortbow0"),
stats: (
equip_time_millis: 400,
power: 0.75,

View File

@ -3,7 +3,7 @@ Item(
description: "Works on the ground too.",
kind: Tool(
(
kind: Bow(WoodShortbow1),
kind: Bow("WoodShortbow1"),
stats: (
equip_time_millis: 400,
power: 0.75,

View File

@ -3,7 +3,7 @@ Item(
description: "Easily concealed.",
kind: Tool(
(
kind: Dagger(BasicDagger),
kind: Dagger("BasicDagger"),
stats: (
equip_time_millis: 300,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with bronze.",
kind: Tool(
(
kind: Hammer(BronzeHammer0),
kind: Hammer("BronzeHammer0"),
stats: (
equip_time_millis: 500,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with bronze.",
kind: Tool(
(
kind: Hammer(BronzeHammer1),
kind: Hammer("BronzeHammer1"),
stats: (
equip_time_millis: 500,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with cobalt.",
kind: Tool(
(
kind: Hammer(CobaltHammer0),
kind: Hammer("CobaltHammer0"),
stats: (
equip_time_millis: 500,
power: 1.60,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with cobalt.",
kind: Tool(
(
kind: Hammer(CobaltHammer1),
kind: Hammer("CobaltHammer1"),
stats: (
equip_time_millis: 500,
power: 1.60,

View File

@ -3,7 +3,7 @@ Item(
description: "The head is barely secured.",
kind: Tool(
(
kind: Hammer(FlimsyHammer),
kind: Hammer("FlimsyHammer"),
stats: (
equip_time_millis: 500,
power: 0.50,

View File

@ -3,7 +3,7 @@ Item(
description: "Breaks bones like sticks and stones.",
kind: Tool(
(
kind: Hammer(BasicHammer),
kind: Hammer("BasicHammer"),
stats: (
equip_time_millis: 500,
power: 0.50,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer0),
kind: Hammer("IronHammer0"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer1),
kind: Hammer("IronHammer1"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer2),
kind: Hammer("IronHammer2"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer3),
kind: Hammer("IronHammer3"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer4),
kind: Hammer("IronHammer4"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer5),
kind: Hammer("IronHammer5"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer6),
kind: Hammer("IronHammer6"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer7),
kind: Hammer("IronHammer7"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with iron.",
kind: Tool(
(
kind: Hammer(IronHammer8),
kind: Hammer("IronHammer8"),
stats: (
equip_time_millis: 500,
power: 1.20,

View File

@ -3,7 +3,7 @@ Item(
description: "It's crackling with lightning.",
kind: Tool(
(
kind: Hammer(Mjolnir),
kind: Hammer("Mjolnir"),
stats: (
equip_time_millis: 500,
power: 2.00,

View File

@ -3,7 +3,7 @@ Item(
description: "You feel an evil presence in the hammer.",
kind: Tool(
(
kind: Hammer(RamsheadHammer),
kind: Hammer("RamsheadHammer"),
stats: (
equip_time_millis: 500,
power: 1.80,

View File

@ -3,7 +3,7 @@ Item(
description: "There are strange runes inscribed into it.",
kind: Tool(
(
kind: Hammer(RunicHammer),
kind: Hammer("RunicHammer"),
stats: (
equip_time_millis: 500,
power: 1.80,

View File

@ -3,7 +3,7 @@ Item(
description: "'Property of...' The rest is missing.",
kind: Tool(
(
kind: Hammer(BasicHammer),
kind: Hammer("BasicHammer"),
stats: (
equip_time_millis: 500,
power: 0.50,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with steel.",
kind: Tool(
(
kind: Hammer(SteelHammer0),
kind: Hammer("SteelHammer0"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with steel.",
kind: Tool(
(
kind: Hammer(SteelHammer1),
kind: Hammer("SteelHammer1"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with steel.",
kind: Tool(
(
kind: Hammer(SteelHammer2),
kind: Hammer("SteelHammer2"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with steel.",
kind: Tool(
(
kind: Hammer(SteelHammer3),
kind: Hammer("SteelHammer3"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with steel.",
kind: Tool(
(
kind: Hammer(SteelHammer4),
kind: Hammer("SteelHammer4"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "Forged with steel.",
kind: Tool(
(
kind: Hammer(SteelHammer5),
kind: Hammer("SteelHammer5"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "It seems brittle.",
kind: Tool(
(
kind: Hammer(StoneHammer0),
kind: Hammer("StoneHammer0"),
stats: (
equip_time_millis: 500,
power: 0.70,

View File

@ -3,7 +3,7 @@ Item(
description: "It seems brittle.",
kind: Tool(
(
kind: Hammer(StoneHammer1),
kind: Hammer("StoneHammer1"),
stats: (
equip_time_millis: 500,
power: 0.70,

View File

@ -3,7 +3,7 @@ Item(
description: "It seems brittle.",
kind: Tool(
(
kind: Hammer(StoneHammer2),
kind: Hammer("StoneHammer2"),
stats: (
equip_time_millis: 500,
power: 0.70,

View File

@ -3,7 +3,7 @@ Item(
description: "It seems brittle.",
kind: Tool(
(
kind: Hammer(StoneHammer3),
kind: Hammer("StoneHammer3"),
stats: (
equip_time_millis: 500,
power: 0.70,

View File

@ -3,7 +3,7 @@ Item(
description: "Seems sturdy enough.",
kind: Tool(
(
kind: Hammer(WoodHammer0),
kind: Hammer("WoodHammer0"),
stats: (
equip_time_millis: 500,
power: 0.60,

View File

@ -3,7 +3,7 @@ Item(
description: "The previous owner won't miss it much.",
kind: Tool(
(
kind: Hammer(WornIronHammer0),
kind: Hammer("WornIronHammer0"),
stats: (
equip_time_millis: 500,
power: 0.85,

View File

@ -3,7 +3,7 @@ Item(
description: "The previous owner won't miss it much.",
kind: Tool(
(
kind: Hammer(WornIronHammer1),
kind: Hammer("WornIronHammer1"),
stats: (
equip_time_millis: 500,
power: 0.85,

View File

@ -3,7 +3,7 @@ Item(
description: "The previous owner won't miss it much.",
kind: Tool(
(
kind: Hammer(WornIronHammer2),
kind: Hammer("WornIronHammer2"),
stats: (
equip_time_millis: 500,
power: 0.85,

View File

@ -3,7 +3,7 @@ Item(
description: "The previous owner won't miss it much.",
kind: Tool(
(
kind: Hammer(WornIronHammer3),
kind: Hammer("WornIronHammer3"),
stats: (
equip_time_millis: 500,
power: 0.85,

View File

@ -3,7 +3,7 @@ Item(
description: "Should withstand a few more hits, hopefully...",
kind: Tool (
(
kind: Shield(BasicShield),
kind: Shield("BasicShield"),
stats: (
equip_time_millis: 400,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "The amethyst faintly glows.",
kind: Tool(
(
kind: Staff(AmethystStaff),
kind: Staff("AmethystStaff"),
stats: (
equip_time_millis: 300,
power: 1.50,

View File

@ -3,7 +3,7 @@ Item(
description: "There's a red gem suspended in the bones.",
kind: Tool(
(
kind: Staff(BoneStaff),
kind: Staff("BoneStaff"),
stats: (
equip_time_millis: 300,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "The fire gives off no heat.",
kind: Tool(
(
kind: Staff(CultistStaff),
kind: Staff("CultistStaff"),
stats: (
equip_time_millis: 300,
power: 2.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Walking stick with a sharpened end.",
kind: Tool(
(
kind: Staff(BasicStaff),
kind: Staff("BasicStaff"),
stats: (
equip_time_millis: 200,
power: 0.50,

View File

@ -3,7 +3,7 @@ Item(
description: "Heals your allies with the power of nature.",
kind: Tool(
(
kind: Staff(Sceptre),
kind: Staff("Sceptre"),
stats: (
equip_time_millis: 400,
power: 1.00,

View File

@ -3,7 +3,7 @@ Item(
description: "Smells like resin and magic.",
kind: Tool(
(
kind: Staff(BasicStaff),
kind: Staff("BasicStaff"),
stats: (
equip_time_millis: 300,
power: 0.50,

View File

@ -3,7 +3,7 @@ Item(
description: "This belonged to an evil Cult Leader.",
kind: Tool(
(
kind: Sword(CultPurp0),
kind: Sword("CultPurp0"),
stats: (
equip_time_millis: 500,
power: 2.00,

View File

@ -3,7 +3,7 @@ Item(
description: "The blade has been chipped quite a few times.",
kind: Tool(
(
kind: Sword(GreatswordDam0),
kind: Sword("GreatswordDam0"),
stats: (
equip_time_millis: 500,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "The blade has been chipped quite a few times.",
kind: Tool(
(
kind: Sword(GreatswordDam1),
kind: Sword("GreatswordDam1"),
stats: (
equip_time_millis: 500,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "The blade has been chipped quite a few times.",
kind: Tool(
(
kind: Sword(GreatswordDam2),
kind: Sword("GreatswordDam2"),
stats: (
equip_time_millis: 500,
power: 0.80,

View File

@ -3,7 +3,7 @@ Item(
description: "It's been polished and sharpened recently.",
kind: Tool(
(
kind: Sword(GreatswordFine0),
kind: Sword("GreatswordFine0"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "It's been polished and sharpened recently.",
kind: Tool(
(
kind: Sword(GreatswordFine1),
kind: Sword("GreatswordFine1"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "It's been polished and sharpened recently.",
kind: Tool(
(
kind: Sword(GreatswordFine2),
kind: Sword("GreatswordFine2"),
stats: (
equip_time_millis: 500,
power: 1.40,

View File

@ -3,7 +3,7 @@ Item(
description: "The sword's almost a work of art.",
kind: Tool(
(
kind: Sword(GreatswordOrn0),
kind: Sword("GreatswordOrn0"),
stats: (
equip_time_millis: 500,
power: 1.70,

View File

@ -3,7 +3,7 @@ Item(
description: "The sword's almost a work of art.",
kind: Tool(
(
kind: Sword(GreatswordOrn1),
kind: Sword("GreatswordOrn1"),
stats: (
equip_time_millis: 500,
power: 1.70,

View File

@ -3,7 +3,7 @@ Item(
description: "The sword's almost a work of art.",
kind: Tool(
(
kind: Sword(GreatswordOrn2),
kind: Sword("GreatswordOrn2"),
stats: (
equip_time_millis: 500,
power: 1.70,

View File

@ -3,7 +3,7 @@ Item(
description: "It's been well used.",
kind: Tool(
(
kind: Sword(GreatswordSimple0),
kind: Sword("GreatswordSimple0"),
stats: (
equip_time_millis: 500,
power: 1.10,

View File

@ -3,7 +3,7 @@ Item(
description: "It's been well used.",
kind: Tool(
(
kind: Sword(GreatswordSimple1),
kind: Sword("GreatswordSimple1"),
stats: (
equip_time_millis: 500,
power: 1.10,

View File

@ -3,7 +3,7 @@ Item(
description: "It's been well used.",
kind: Tool(
(
kind: Sword(GreatswordSimple2),
kind: Sword("GreatswordSimple2"),
stats: (
equip_time_millis: 500,
power: 1.10,

View File

@ -3,7 +3,7 @@ Item(
description: "It's slightly cracked.",
kind: Tool(
(
kind: Sword(LongDam0),
kind: Sword("LongDam0"),
stats: (
equip_time_millis: 500,
power: 0.60,

View File

@ -3,7 +3,7 @@ Item(
description: "It's slightly cracked.",
kind: Tool(
(
kind: Sword(LongDam1),
kind: Sword("LongDam1"),
stats: (
equip_time_millis: 500,
power: 0.60,

Some files were not shown because too many files have changed in this diff Show More