Potted plants from TG.

This commit is contained in:
Pieter-Jan Briers
2020-04-23 13:56:16 +02:00
parent 70794f76f2
commit 6cad18bff4
34 changed files with 435 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
- type: entity
id: PottedPlantBase
abstract: true
components:
- type: Clickable
- type: InteractionOutline
- type: Collidable
- type: Sprite
sprite: Objects/potted_plants.rsi
- type: Icon
sprite: Objects/potted_plants.rsi
- type: entity
id: PottedPlantRandom
parent: PottedPlantBase
name: potted plant
description: A little bit of nature contained in a pot.
components:
- type: Sprite
state: random
- type: Icon
state: random
- type: RandomPottedPlant
- type: entity
id: PottedPlantRandomPlastic
parent: PottedPlantBase
name: plastic potted plant
description: A fake, cheap looking, plastic tree. Perfect for people who kill every plant they touch.
components:
- type: Sprite
state: plant-26
- type: Icon
state: plant-26
- type: RandomPottedPlant
plastic: true
- type: entity
id: PottedPlantRD
parent: PottedPlantBase
name: "RD's potted plant"
description: "A gift from the botanical staff, presented after the RD's reassignment. There's a tag on it that says \"Y'all come back now, y'hear?\"\nIt doesn't look very healthy..."
components:
- type: Sprite
state: plant-25
- type: Icon
state: plant-25
- type: entity
id: PottedPlantBioluminscent
parent: PottedPlantBase
name: "bioluminescent potted plant"
description: "It produces light!"
components:
- type: Sprite
state: plant-09
- type: Icon
state: plant-09
- type: PointLight
radius: 2
color: "#2cb2e8"
power: 0.25