Make baseball bat crafting require a slicing tool (#26742)
Make baseball bat crafting harder
This commit is contained in:
@@ -40,6 +40,21 @@
|
||||
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
|
||||
|
||||
@@ -1,13 +1,31 @@
|
||||
- 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
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 703 B |
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user