Telecrystals (and a bit more ECS) (#4775)

This commit is contained in:
Alex Evgrashin
2021-10-08 13:26:42 +03:00
committed by GitHub
parent cf8ec622fd
commit df3b766139
27 changed files with 426 additions and 262 deletions

View File

@@ -217,11 +217,33 @@
itemId: lanternextrabright
price: 2
#- type: uplinkListing
# id: UplinkTelecrystal
# category: Misc
# itemId: Telecrystal
# price: 1
- type: uplinkListing
id: UplinkTelecrystal
category: Misc
itemId: Telecrystal1
price: 1
listingName: telecrystal [1]
- type: uplinkListing
id: UplinkTelecrystal5
category: Misc
itemId: Telecrystal5
price: 5
listingName: telecrystal [5]
- type: uplinkListing
id: UplinkTelecrystal10
category: Misc
itemId: Telecrystal10
price: 10
listingName: telecrystal [10]
- type: uplinkListing
id: UplinkTelecrystal20
category: Misc
itemId: Telecrystal
price: 20
listingName: telecrystal [20]
# Pointless

View File

@@ -0,0 +1,42 @@
- type: entity
name: telecrystal
parent: BaseItem
id: Telecrystal
suffix: Twenty
description: It seems to be pulsing with suspiciously enticing energies.
components:
- type: Sprite
sprite: Objects/Specific/Syndicate/telecrystal.rsi
netsync: false
state: telecrystal
- type: Item
sprite: Objects/Specific/Syndicate/telecrystal.rsi
- type: Stack
count: 20
max: 20
stackType: Telecrystal
- type: Telecrystal
- type: entity
parent: Telecrystal
id: Telecrystal1
suffix: Single
components:
- type: Stack
count: 1
- type: entity
parent: Telecrystal
id: Telecrystal5
suffix: Five
components:
- type: Stack
count: 5
- type: entity
parent: Telecrystal
id: Telecrystal10
suffix: Ten
components:
- type: Stack
count: 10

View File

@@ -0,0 +1,5 @@
- type: stack
id: Telecrystal
name: telecrystal
icon: Objects/Specific/Syndicate/telecrystal.rsi
spawn: Telecrystal1