Banana Clown Outfit (#22068)

* Banana Clown Outfit

* Update SkatesComponent.cs
This commit is contained in:
brainfood1183
2023-12-04 23:12:02 +00:00
committed by GitHub
parent 50113da441
commit 63bc4bf6b1
27 changed files with 316 additions and 7 deletions

View File

@@ -198,6 +198,19 @@
- HamsterWearable
- WhitelistChameleon
- type: entity
parent: ClothingMaskClown
id: ClothingMaskClownBanana
name: banana clown wig and mask
components:
- type: Sprite
sprite: Clothing/Mask/clown_banana.rsi
- type: Clothing
sprite: Clothing/Mask/clown_banana.rsi
- type: Construction
graph: BananaClownMask
node: mask
- type: entity
parent: ClothingMaskBase
id: ClothingMaskJoy

View File

@@ -28,6 +28,26 @@
- ClownShoes
- WhitelistChameleon
- type: entity
parent: ClothingShoesClown
id: ClothingShoesClownBanana
name: banana clown shoes
description: "When humor and footwear combine into new levels of absurdity."
components:
- type: Sprite
sprite: Clothing/Shoes/Specific/clown_banana.rsi
- type: Clothing
sprite: Clothing/Shoes/Specific/clown_banana.rsi
- type: FootstepModifier
footstepSoundCollection:
collection: FootstepSlip
- type: Construction
graph: BananaClownShoes
node: shoes
- type: Skates
minimumSpeed: 20
acceleration: 5
- type: entity
parent: ClothingShoesBaseButcherable
id: ClothingShoesBling
@@ -47,6 +67,7 @@
energy: 2
color: "#FFD800"
netsync: false
- type: entity
parent: ClothingShoesBaseButcherable
id: ClothingShoesCult

View File

@@ -200,6 +200,27 @@
- type: Clothing
sprite: Clothing/Uniforms/Jumpsuit/clown.rsi
femaleMask: UniformTop
- type: Tag
tags:
- ClownSuit
- type: entity
parent: ClothingUniformJumpsuitClown
id: ClothingUniformJumpsuitClownBanana
name: banana clown suit
components:
- type: Sprite
sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi
- type: Clothing
sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi
femaleMask: UniformTop
- type: Construction
graph: BananaClownJumpsuit
node: jumpsuit
- type: Armor
modifiers:
coefficients:
Radiation: 0.8
- type: entity
parent: ClothingUniformBase

View File

@@ -294,6 +294,7 @@
tags:
- Recyclable
- Trash
- BananaPeel
- type: SolutionContainerManager
solutions:
food:

View File

@@ -0,0 +1,113 @@
- type: constructionGraph
id: BananaClownJumpsuit
start: start
graph:
- node: start
edges:
- to: jumpsuit
steps:
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- material: Bananium
amount: 1
doAfter: 1
- tag: ClownSuit
name: A Clown Suit
icon:
sprite: Clothing/Uniforms/Jumpsuit/clown.rsi
state: icon
doAfter: 1
- node: jumpsuit
entity: ClothingUniformJumpsuitClownBanana
- type: constructionGraph
id: BananaClownShoes
start: start
graph:
- node: start
edges:
- to: shoes
steps:
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- material: Bananium
amount: 1
doAfter: 1
- tag: ClownShoes
name: Clown Shoes
icon:
sprite: Clothing/Shoes/Specific/clown.rsi
state: icon
doAfter: 1
- node: shoes
entity: ClothingShoesClownBanana
- type: constructionGraph
id: BananaClownMask
start: start
graph:
- node: start
edges:
- to: mask
steps:
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- tag: BananaPeel
name: A Banana Peel
icon:
sprite: Objects/Specific/Hydroponics/banana.rsi
state: peel
doAfter: 1
- material: Bananium
amount: 1
doAfter: 1
- tag: ClownMask
name: A Clown Mask
icon:
sprite: Clothing/Mask/clown.rsi
state: icon
doAfter: 1
- node: mask
entity: ClothingMaskClownBanana

View File

@@ -30,3 +30,36 @@
description: Helmet made of bones.
icon: { sprite: Clothing/Head/Helmets/bone_helmet.rsi, state: icon }
objectType: Item
- type: construction
name: banana clown mask
id: BananaClownMask
graph: BananaClownMask
startNode: start
targetNode: mask
category: construction-category-clothing
description: A clown mask upgraded with banana peels.
icon: { sprite: Clothing/Mask/clown_banana.rsi, state: icon }
objectType: Item
- type: construction
name: banana clown suit
id: BananaClownJumpsuit
graph: BananaClownJumpsuit
startNode: start
targetNode: jumpsuit
category: construction-category-clothing
description: A clown suit upgraded with banana peels.
icon: { sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi, state: icon }
objectType: Item
- type: construction
name: banana clown shoes
id: BananaClownShoes
graph: BananaClownShoes
startNode: start
targetNode: shoes
category: construction-category-clothing
description: A pair of clown shoes upgraded with banana peels.
icon: { sprite: Clothing/Shoes/Specific/clown_banana.rsi, state: icon }
objectType: Item

View File

@@ -347,3 +347,11 @@
back: SpearBone
head: ClothingHeadHelmetBone
shoes: ClothingShoesCult
#Banana Clown
- type: startingGear
id: BananaClown
equipment:
shoes: ClothingShoesClownBanana
jumpsuit: ClothingUniformJumpsuitClownBanana
mask: ClothingMaskClownBanana

View File

@@ -167,3 +167,8 @@
- /Audio/Effects/Footsteps/bells3.ogg
- /Audio/Effects/Footsteps/bells4.ogg
- /Audio/Effects/Footsteps/bells5.ogg
- type: soundCollection
id: FootstepSlip
files:
- /Audio/Effects/slip.ogg

View File

@@ -31,6 +31,9 @@
- type: Tag
id: Balloon
- type: Tag
id: BananaPeel
- type: Tag
id: BaseballBat
@@ -311,6 +314,9 @@
- type: Tag
id: ClownShoes
- type: Tag
id: ClownSuit
- type: Tag
id: CluwneHorn