diff options
| author | historia <[not public]> | 2026-06-09 05:59:20 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-09 05:59:20 -0400 |
| commit | 9eb5ab1818b6b19501fd7209db1987c9e06cc919 (patch) | |
| tree | 76e046b0bf611dfe939a8c8f6507467de2e9e20f /data/items | |
| download | thehouseoficarus-9eb5ab1818b6b19501fd7209db1987c9e06cc919.tar.gz | |
first commit
Diffstat (limited to 'data/items')
| -rw-r--r-- | data/items/bones.yaml | 6 | ||||
| -rw-r--r-- | data/items/bronze_pickaxe.yaml | 7 | ||||
| -rw-r--r-- | data/items/bronze_sword.yaml | 13 | ||||
| -rw-r--r-- | data/items/copper_ore.yaml | 6 | ||||
| -rw-r--r-- | data/items/credits.yaml | 6 | ||||
| -rw-r--r-- | data/items/oak_logs.yaml | 6 | ||||
| -rw-r--r-- | data/items/tin_ore.yaml | 6 |
7 files changed, 50 insertions, 0 deletions
diff --git a/data/items/bones.yaml b/data/items/bones.yaml new file mode 100644 index 0000000..de868a0 --- /dev/null +++ b/data/items/bones.yaml @@ -0,0 +1,6 @@ +id: "bones" +name: "bones" +aliases: ["bone"] +description: "A pile of bones." +value: 2 +stackable: false diff --git a/data/items/bronze_pickaxe.yaml b/data/items/bronze_pickaxe.yaml new file mode 100644 index 0000000..a64395e --- /dev/null +++ b/data/items/bronze_pickaxe.yaml @@ -0,0 +1,7 @@ +id: "bronze_pickaxe" +name: "bronze pickaxe" +aliases: ["pickaxe", "pick", "bronze"] +description: "A basic bronze pickaxe for mining." +value: 8 +stackable: false +toolbelt: true diff --git a/data/items/bronze_sword.yaml b/data/items/bronze_sword.yaml new file mode 100644 index 0000000..e8ba217 --- /dev/null +++ b/data/items/bronze_sword.yaml @@ -0,0 +1,13 @@ +id: "bronze_sword" +name: "bronze sword" +aliases: ["sword", "bronze"] +description: "A basic bronze short sword." +value: 12 +stackable: false +equip_slot: "main_hand" +weapon_type: "melee" +stats: + attack_bonus: 4 + strength_bonus: 3 + defense_bonus: 0 +speed: 4 diff --git a/data/items/copper_ore.yaml b/data/items/copper_ore.yaml new file mode 100644 index 0000000..5f11316 --- /dev/null +++ b/data/items/copper_ore.yaml @@ -0,0 +1,6 @@ +id: "copper_ore" +name: "copper ore" +aliases: ["copper", "ore"] +description: "A chunk of copper ore." +value: 3 +stackable: false diff --git a/data/items/credits.yaml b/data/items/credits.yaml new file mode 100644 index 0000000..80c109e --- /dev/null +++ b/data/items/credits.yaml @@ -0,0 +1,6 @@ +id: "credits" +name: "credits" +aliases: ["credit", "creds"] +description: "A handful of universal credits." +value: 1 +stackable: true diff --git a/data/items/oak_logs.yaml b/data/items/oak_logs.yaml new file mode 100644 index 0000000..24cd0d0 --- /dev/null +++ b/data/items/oak_logs.yaml @@ -0,0 +1,6 @@ +id: "oak_logs" +name: "oak logs" +aliases: ["logs", "oak", "log"] +description: "Some sturdy oak logs." +value: 4 +stackable: false diff --git a/data/items/tin_ore.yaml b/data/items/tin_ore.yaml new file mode 100644 index 0000000..62a55b4 --- /dev/null +++ b/data/items/tin_ore.yaml @@ -0,0 +1,6 @@ +id: "tin_ore" +name: "tin ore" +aliases: ["tin", "ore"] +description: "A chunk of tin ore." +value: 2 +stackable: false |
