-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2c5a83
commit 32537c0
Showing
6 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
Resources/Prototypes/DeltaV/Entities/Objects/Decoration/flora.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
- type: entity | ||
id: BushBase | ||
name: Bush | ||
description: A pretty bush. | ||
placement: | ||
mode: PlaceFree | ||
components: | ||
- type: SpriteFade | ||
- type: Clickable | ||
- type: InteractionOutline | ||
- type: Sprite | ||
noRot: true | ||
sprite: DeltaV/Objects/Decoration/Flora/bush.rsi | ||
state: base | ||
drawdepth: Mobs | ||
- type: Tag | ||
tags: | ||
- Structure | ||
- type: Physics | ||
bodyType: Static | ||
- type: Damageable | ||
damageContainer: StructuralInorganic | ||
damageModifierSet: Wood | ||
- type: MeleeSound | ||
soundGroups: | ||
Brute: | ||
path: /Audio/Effects/chop.ogg | ||
params: | ||
variation: 0.05 | ||
- type: Destructible | ||
thresholds: | ||
- trigger: | ||
!type:DamageTrigger | ||
damage: 10 | ||
behaviors: | ||
- !type:DoActsBehavior | ||
acts: [ "Destruction" ] | ||
- !type:PlaySoundBehavior | ||
sound: | ||
collection: WoodDestroy | ||
- !type:SpawnEntitiesBehavior | ||
spawn: | ||
MaterialWoodPlank: | ||
min: 0 | ||
max: 1 | ||
|
||
- type: entity | ||
parent: BushBase | ||
id: BushLightBase | ||
name: Light Bush | ||
description: A pretty bush! | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Decoration/Flora/bush.rsi | ||
layers: | ||
- state: base_light | ||
|
||
- type: entity | ||
parent: BushBase | ||
id: BushHibiscus | ||
name: Hibiscus Bush | ||
description: A pretty bush, with hibiscuses! | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Decoration/Flora/bush.rsi | ||
layers: | ||
- state: base | ||
- state: hibiscus | ||
|
||
- type: entity | ||
parent: BushHibiscus | ||
id: BushLightHibiscus | ||
name: Light Hibiscus Bush | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Decoration/Flora/bush.rsi | ||
layers: | ||
- state: base_light | ||
- state: hibiscus | ||
|
||
- type: entity | ||
parent: BushBase | ||
id: BushHydrangea | ||
name: Hydrangea Bush | ||
description: A pretty bush, with hydrangeas! | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Decoration/Flora/bush.rsi | ||
layers: | ||
- state: base | ||
- state: hydrangea | ||
|
||
- type: entity | ||
parent: BushHydrangea | ||
id: BushLightHydrangea | ||
name: Light Hydrangea Bush | ||
components: | ||
- type: Sprite | ||
sprite: DeltaV/Objects/Decoration/Flora/bush.rsi | ||
layers: | ||
- state: base_light | ||
- state: hydrangea |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.47 KB
Resources/Textures/DeltaV/Objects/Decoration/Flora/bush.rsi/base_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.25 KB
Resources/Textures/DeltaV/Objects/Decoration/Flora/bush.rsi/hibiscus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.27 KB
Resources/Textures/DeltaV/Objects/Decoration/Flora/bush.rsi/hydrangea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions
23
Resources/Textures/DeltaV/Objects/Decoration/Flora/bush.rsi/meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Made by rosieposieeee (Github)", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "base" | ||
}, | ||
{ | ||
"name": "base_light" | ||
}, | ||
{ | ||
"name": "hibiscus" | ||
}, | ||
{ | ||
"name": "hydrangea" | ||
} | ||
] | ||
} |