diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index 10e1e05e5e..7ccf30b227 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -8,8 +8,11 @@ sprite: Objects/Weapons/Melee/baseball_bat.rsi state: icon - type: MeleeWeapon - damage: 20 + damage: 15 - type: Item size: 24 sprite: Objects/Weapons/Melee/baseball_bat.rsi prefix: inhand + - type: Construction + graph: WoodenBat + node: bat diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bat.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bat.yml new file mode 100644 index 0000000000..56530f443e --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bat.yml @@ -0,0 +1,13 @@ +- type: constructionGraph + id: WoodenBat + start: start + graph: + - node: start + edges: + - to: bat + steps: + - material: WoodPlank + amount: 5 + doAfter: 4 + - node: bat + entity: BaseBallBat diff --git a/Resources/Prototypes/Recipes/Crafting/bat.yml b/Resources/Prototypes/Recipes/Crafting/bat.yml new file mode 100644 index 0000000000..dcfc03a8bb --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/bat.yml @@ -0,0 +1,12 @@ +- type: construction + name: baseball bat + id: bat + graph: WoodenBat + startNode: start + targetNode: bat + category: Weapons + description: A robust baseball bat. + icon: + sprite: Objects/Weapons/Melee/baseball_bat.rsi + state: icon + objectType: Item