Make baseball bat crafting harder
tags:
- BaseballBat
+- type: entity
+ name: incomplete baseball bat
+ parent: BaseItem
+ id: IncompleteBaseBallBat
+ description: A few planks of wood stuck together.
+ components:
+ - type: Sprite
+ sprite: Objects/Weapons/Melee/incomplete_bat.rsi
+ state: icon
+ - type: Item
+ size: Normal
+ - type: Construction
+ graph: WoodenBat
+ node: incompleteBat
+
- type: entity
name: knockback stick
parent: BaseBallBat
-- type: constructionGraph
+- type: constructionGraph
id: WoodenBat
start: start
graph:
- node: start
edges:
- - to: bat
+ - to: incompleteBat
steps:
- material: WoodPlank
amount: 5
doAfter: 4
+
+ - node: incompleteBat
+ entity: IncompleteBaseBallBat
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 5
+ - !type:DeleteEntity {}
+ steps:
+ - tool: Prying
+ doAfter: 1
+ - to: bat
+ steps:
+ - tool: Slicing
+ doAfter: 4
+
- node: bat
entity: BaseBallBat
--- /dev/null
+{
+ "version": 1,
+ "license": "CC-BY-NC-SA-3.0",
+ "copyright": "Taken from goonstation and modified by Swept at commit https://github.com/goonstation/goonstation/pull/3555/commits/b24eb6260647c0fcfe858268a26b6160bc50017a, modified into incomplete version by Vermidia",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ }
+ ]
+}