Make baseball bat crafting require a slicing tool (#26742)
Make baseball bat crafting harder
This commit is contained in:
@@ -40,6 +40,21 @@
|
|||||||
tags:
|
tags:
|
||||||
- BaseballBat
|
- 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
|
- type: entity
|
||||||
name: knockback stick
|
name: knockback stick
|
||||||
parent: BaseBallBat
|
parent: BaseBallBat
|
||||||
|
|||||||
@@ -1,13 +1,31 @@
|
|||||||
- type: constructionGraph
|
- type: constructionGraph
|
||||||
id: WoodenBat
|
id: WoodenBat
|
||||||
start: start
|
start: start
|
||||||
graph:
|
graph:
|
||||||
- node: start
|
- node: start
|
||||||
edges:
|
edges:
|
||||||
- to: bat
|
- to: incompleteBat
|
||||||
steps:
|
steps:
|
||||||
- material: WoodPlank
|
- material: WoodPlank
|
||||||
amount: 5
|
amount: 5
|
||||||
doAfter: 4
|
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
|
- node: bat
|
||||||
entity: BaseBallBat
|
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