Skip to content

Commit

Permalink
feat(data): Add three different swords
Browse files Browse the repository at this point in the history
Now we have a variety of swords to find, each with varying strength.
  • Loading branch information
yngtdd committed Apr 10, 2022
1 parent eb4fc7b commit 3495b72
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion resources/template.ron
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,22 @@ Templates (
),
Template(
entity_type: Item,
name: "Rusty Sword", glyph: '/', levels: [0, 1, 2],
name: "Rusty Sword", glyph: 's', levels: [0, 1, 2],
frequency: 1,
base_damage: Some(1)
),
Template(
entity_type: Item,
name: "Shiny Sword", glyph: 'S', levels: [0, 1, 2],
frequency: 1,
base_damage: Some(2)
),
Template(
entity_type: Item,
name: "Huge Sword", glyph: '/', levels: [0, 1, 2],
frequency: 1,
base_damage: Some(3)
),
Template(
entity_type: Enemy,
name: "Goblin", glyph: 'g', levels: [0, 1, 2],
Expand Down

0 comments on commit 3495b72

Please sign in to comment.