primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s

This commit is contained in:
2024-04-29 21:38:53 -03:00
commit e11bf493a1
2532 changed files with 55878 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Broom",
legacy_description: "It's beginning to fall apart.",
kind: Tool((
kind: Farming,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Common,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Fishing Rod",
legacy_description: "Smells of fish.",
kind: Tool((
kind: Farming,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Common,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Golf Club",
legacy_description: "Peasant swatter. Fiercely anti-urbanist. Climate crisis? What climate crisis?",
kind: Tool((
kind: Hammer,
hands: Two,
stats: (
equip_time_secs: 0.5,
power: 0.6,
effect_power: 1.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Low,
tags: [],
ability_spec: Some(Custom("Golf Club")),
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Hoe",
legacy_description: "It's stained with dirt.",
kind: Tool((
kind: Farming,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 1.5,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Common,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Pickaxe",
legacy_description: "It has a chipped edge.",
kind: Tool((
kind: Farming,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Common,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Pitchfork",
legacy_description: "One of the prongs is broken.",
kind: Tool((
kind: Farming,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 4.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Common,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,20 @@
ItemDef(
legacy_name: "Rake",
legacy_description: "Held together with twine.",
kind: Tool((
kind: Farming,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Common,
tags: [],
ability_spec: None,
)

View File

@@ -0,0 +1,22 @@
ItemDef(
legacy_name: "Shovel",
legacy_description: "It's covered in manure.",
kind: Tool((
kind: Shovel,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 2.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Moderate,
tags: [
CraftingTool,
],
ability_spec: None,
)

View File

@@ -0,0 +1,22 @@
ItemDef(
legacy_name: "Shovel",
legacy_description: "It's been recently cleaned.",
kind: Tool((
kind: Shovel,
hands: Two,
stats: (
equip_time_secs: 0.4,
power: 1.0,
effect_power: 2.0,
speed: 1.0,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
),
)),
quality: Common,
tags: [
CraftingTool,
],
ability_spec: None,
)