* watches

* rename

* add it into loot pools
This commit is contained in:
Nemanja
2024-07-13 02:09:19 -04:00
committed by GitHub
parent 361ec59412
commit 49096cf14f
67 changed files with 452 additions and 0 deletions

View File

@@ -170,6 +170,8 @@
prob: 0.20
- id: BarberScissors
prob: 0.05
- id: Wristwatch
prob: 0.05
- id: BookRandomStory
prob: 0.1
# Syndicate loot

View File

@@ -67,6 +67,7 @@
- ClothingHeadHatCowboyBountyHunter
- ClothingNeckAutismPin
- ClothingNeckGoldAutismPin
- WristwatchGold
rareChance: 0.01
prototypes:
- Lighter
@@ -128,6 +129,7 @@
- ClothingShoesTourist
- ClothingUniformJumpsuitLoungewear
- ClothingHeadHatCowboyRed
- Wristwatch
chance: 0.6
offset: 0.0

View File

@@ -0,0 +1,59 @@
- type: entity
id: Wristwatch
parent: BaseItem
name: wristwatch
description: A cheap watch for telling time. How much did you waste playing Space Station 14?
components:
- type: Sprite
sprite: Objects/Devices/wristwatch.rsi
layers:
- state: wristwatch
- map: [ "enum.ClockVisualLayers.MinuteHand"]
- map: [ "enum.ClockVisualLayers.HourHand"]
- type: Clock
- type: Item
sprite: Objects/Devices/wristwatch.rsi
size: Small
- type: Clothing
sprite: Objects/Devices/wristwatch.rsi
slots:
- gloves
- type: Appearance
- type: Damageable
damageContainer: Inorganic
- type: StaticPrice
price: 50
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 100
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageGroupTrigger
damageGroup: Brute
damage: 25
behaviors:
- !type:DoActsBehavior
acts: [ "Breakage" ]
- type: entity
id: WristwatchGold
parent: Wristwatch
name: gold watch
description: A fancy watch worth more than your kidney. It was owned by the notorious Syndicate mobster Vunibaldo "200 Pound Horse Meat Grinder" Frediani.
components:
- type: Sprite
sprite: Objects/Devices/goldwatch.rsi
layers:
- state: goldwatch
- map: [ "enum.ClockVisualLayers.MinuteHand"]
- map: [ "enum.ClockVisualLayers.HourHand"]
- type: Item
sprite: Objects/Devices/goldwatch.rsi
- type: Clothing
sprite: Objects/Devices/goldwatch.rsi
- type: StaticPrice
price: 500 #if you ever increase the price of kidneys, increase this too.