More belts and welders (#2453)
* Adds sprites * Added prototypes * Adds experimental and mini welder * Adds welder to CE's belt * Lazily filled out the belts * Added to spawn jobs * Merge branch 'master' of https://github.com/space-wizards/space-station-14 into pr/2453 * Update Resources/Prototypes/Entities/Objects/Tools/welders.yml Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
@@ -1,25 +0,0 @@
|
||||
- type: entity
|
||||
id: UtilityBeltClothingFilled
|
||||
parent: UtilityBeltClothing
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- name: Crowbar
|
||||
- name: Wrench
|
||||
- name: Screwdriver
|
||||
- name: Wirecutter
|
||||
- name: Welder
|
||||
- name: Multitool
|
||||
- name: ApcExtensionCableStack
|
||||
|
||||
- type: entity
|
||||
id: UtilityBeltClothingFilledEvent
|
||||
parent: UtilityBeltClothing
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- name: Crowbar
|
||||
- name: Screwdriver
|
||||
- name: Multitool
|
||||
@@ -1,30 +1,162 @@
|
||||
# BASE
|
||||
- type: entity
|
||||
parent: Clothing
|
||||
id: BeltBase
|
||||
id: ClothingBeltBase
|
||||
abstract: true
|
||||
components:
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Clothing
|
||||
Slots: [belt]
|
||||
|
||||
- type: entity
|
||||
parent: BeltBase
|
||||
id: UtilityBeltClothing
|
||||
name: utility belt
|
||||
description: Belt for holding all your usual tools
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/belt_utility.rsi
|
||||
state: utilitybelt
|
||||
- type: Clothing
|
||||
size: 50
|
||||
QuickEquip: false
|
||||
sprite: Clothing/Belt/belt_utility.rsi
|
||||
|
||||
# CONTENT
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltAssault
|
||||
name: assault belt
|
||||
description: "A tactical assault belt."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/assault.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/assault.rsi
|
||||
- type: Storage
|
||||
capacity: 40 # Full tool loadout is 35, plus an extra
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: BeltBase
|
||||
id: SuspendersClothing
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltBandolier
|
||||
name: assault belt
|
||||
description: "A bandolier for holding shotgun ammunition."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/bandolier.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/bandolier.rsi
|
||||
- type: Storage
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltChiefEngineer
|
||||
name: the Chief Engineer's toolbelt
|
||||
description: "Holds tools, looks snazzy."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/ce.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/ce.rsi
|
||||
- type: Storage
|
||||
capacity: 60
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltChampion
|
||||
name: championship belt
|
||||
description: "Proves to the world that you are the strongest!"
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/champion.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/champion.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltHolster
|
||||
name: shoulder holster
|
||||
description: "A holster to carry a handgun and ammo. WARNING: Badasses only."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/holster.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/holster.rsi
|
||||
- type: Storage
|
||||
capacity: 20
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltJanitor
|
||||
name: janibelt
|
||||
description: "A belt used to hold most janitorial supplies."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/janitor.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/janitor.rsi
|
||||
- type: Storage
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltMedical
|
||||
name: medical belt
|
||||
description: "Can hold various medical equipment."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/medical.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/medical.rsi
|
||||
- type: Storage
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltSecurity
|
||||
name: security belt
|
||||
description: "Can hold security gear like handcuffs and flashes."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/security.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/security.rsi
|
||||
- type: Storage
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltSecurityWebbing
|
||||
name: security webbing
|
||||
description: "Unique and versatile chest rig, can hold security gear."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/securitywebbing.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/securitywebbing.rsi
|
||||
- type: Storage
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltMilitaryWebbing
|
||||
name: chest rig
|
||||
description: "A set of tactical webbing worn by Syndicate boarding parties."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/militarywebbing.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/militarywebbing.rsi
|
||||
- type: Storage
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltSheath
|
||||
name: sabre sheath
|
||||
description: "An ornate sheath designed to hold an officer's blade."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/sheath.rsi
|
||||
state: sheath
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/sheath.rsi
|
||||
- type: Storage
|
||||
capacity: 40
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: ClothingBeltSuspenders
|
||||
name: suspenders
|
||||
description: For holding your pants up.
|
||||
components:
|
||||
@@ -32,6 +164,17 @@
|
||||
sprite: Clothing/Belt/suspenders.rsi
|
||||
state: icon
|
||||
- type: Clothing
|
||||
size: 50
|
||||
QuickEquip: false
|
||||
sprite: Clothing/Belt/suspenders.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingBeltBase
|
||||
id: UtilityBeltClothing #Change to ClothingBeltUtility
|
||||
name: utility belt
|
||||
description: "Can hold various things."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Belt/utility.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Belt/utility.rsi
|
||||
- type: Storage
|
||||
capacity: 40 # Full tool loadout is 35, plus an extra
|
||||
|
||||
65
Resources/Prototypes/Entities/Clothing/Belt/filled_belts.yml
Normal file
@@ -0,0 +1,65 @@
|
||||
- type: entity
|
||||
id: UtilityBeltClothingFilled #Change to ClothingBeltUtilityFilled
|
||||
parent: UtilityBeltClothing #Change to ClothingBeltUtility
|
||||
description: "Holds tools."
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- name: Crowbar
|
||||
- name: Wrench
|
||||
- name: Screwdriver
|
||||
- name: Wirecutter
|
||||
- name: Welder
|
||||
- name: Multitool
|
||||
|
||||
- type: entity
|
||||
id: UtilityBeltClothingFilledEvent
|
||||
parent: UtilityBeltClothing
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- name: Crowbar
|
||||
- name: Screwdriver
|
||||
- name: Multitool
|
||||
|
||||
- type: entity
|
||||
id: ClothingBeltChiefEngineerFilled
|
||||
parent: ClothingBeltChiefEngineer
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- name: PowerDrill
|
||||
- name: JawsOfLife
|
||||
- name: WelderExperimental
|
||||
- name: Multitool
|
||||
- name: ApcExtensionCableStack
|
||||
|
||||
- type: entity
|
||||
id: ClothingBeltSecurityFilled
|
||||
parent: ClothingBeltSecurity
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- name: SecGlasses
|
||||
- name: GrenadeFlashBang
|
||||
- name: GrenadeFlashBang
|
||||
- name: Stunbaton
|
||||
- name: Handcuffs
|
||||
- name: Handcuffs
|
||||
|
||||
- type: entity
|
||||
id: ClothingBeltJanitorFilled
|
||||
parent: ClothingBeltJanitor
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- name: Soap #Make a soap group and pick between when i'm not lazy
|
||||
- name: SprayBottleSpaceCleaner
|
||||
- name: # GrenadeChem
|
||||
- name: # GrenadeChem
|
||||
- name: FlashlightLantern
|
||||
@@ -61,40 +61,6 @@
|
||||
cyan: "#18a2d5"
|
||||
yellow: "#ffa500"
|
||||
|
||||
- type: entity
|
||||
name: welding tool
|
||||
parent: BaseItem
|
||||
id: Welder
|
||||
description: 'Melts anything as long as it''s fueled, don''t forget your eye protection!'
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Objects/Tools/welder.rsi
|
||||
layers:
|
||||
- state: welder
|
||||
- state: welder_flame
|
||||
shader: unshaded
|
||||
visible: false
|
||||
- type: Item
|
||||
size: 10
|
||||
sprite: Objects/Tools/welder.rsi
|
||||
HeldPrefix: off
|
||||
- type: ItemCooldown
|
||||
- type: MeleeWeapon
|
||||
- type: ItemStatus
|
||||
- type: SolutionContainer
|
||||
maxVol: 100
|
||||
caps: AddTo, NoExamine
|
||||
contents:
|
||||
reagents:
|
||||
- ReagentId: chem.WeldingFuel
|
||||
Quantity: 100
|
||||
- type: Welder
|
||||
weldSoundCollection: Welder
|
||||
- type: PointLight
|
||||
enabled: false
|
||||
radius: 1.5
|
||||
color: orange
|
||||
|
||||
- type: entity
|
||||
name: wrench
|
||||
parent: BaseItem
|
||||
|
||||
77
Resources/Prototypes/Entities/Objects/Tools/welders.yml
Normal file
@@ -0,0 +1,77 @@
|
||||
- type: entity
|
||||
name: welding tool
|
||||
parent: BaseItem
|
||||
id: Welder
|
||||
description: "Melts anything as long as it's fueled, don't forget your eye protection!"
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Objects/Tools/welder.rsi
|
||||
layers:
|
||||
- state: icon
|
||||
- state: welder_flame
|
||||
shader: unshaded
|
||||
visible: false
|
||||
- type: Item
|
||||
size: 10
|
||||
sprite: Objects/Tools/welder.rsi
|
||||
HeldPrefix: off
|
||||
- type: ItemCooldown
|
||||
- type: MeleeWeapon
|
||||
- type: ItemStatus
|
||||
- type: SolutionContainer
|
||||
maxVol: 100
|
||||
caps: AddTo, NoExamine
|
||||
contents:
|
||||
reagents:
|
||||
- ReagentId: chem.WeldingFuel
|
||||
Quantity: 100
|
||||
- type: Welder
|
||||
weldSoundCollection: Welder
|
||||
- type: PointLight
|
||||
enabled: false
|
||||
radius: 1.5
|
||||
color: orange
|
||||
|
||||
- type: entity
|
||||
name: experimental welding tool
|
||||
parent: Welder
|
||||
id: WelderExperimental
|
||||
description: "An experimental welder capable of self-fuel generation and less harmful to the eyes."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Objects/Tools/welder_experimental.rsi
|
||||
- type: Item
|
||||
sprite: Objects/Tools/welder_experimental.rsi
|
||||
- type: SolutionContainer
|
||||
maxVol: 1000
|
||||
caps: AddTo, NoExamine
|
||||
contents:
|
||||
reagents:
|
||||
- ReagentId: chem.WeldingFuel
|
||||
Quantity: 1000
|
||||
- type: PointLight
|
||||
enabled: false
|
||||
radius: 1.5
|
||||
color: lightblue
|
||||
|
||||
- type: entity
|
||||
name: emergency welding tool
|
||||
parent: Welder
|
||||
id: WelderMini
|
||||
description: "A miniature welder used during emergencies."
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Objects/Tools/welder_mini.rsi
|
||||
- type: Item
|
||||
sprite: Objects/Tools/welder_mini.rsi
|
||||
- type: SolutionContainer
|
||||
maxVol: 25
|
||||
caps: AddTo, NoExamine
|
||||
contents:
|
||||
reagents:
|
||||
- ReagentId: chem.WeldingFuel
|
||||
Quantity: 25
|
||||
- type: PointLight
|
||||
enabled: false
|
||||
radius: 1.0
|
||||
color: orange
|
||||
@@ -19,3 +19,4 @@
|
||||
head: HatPurplesoft
|
||||
idcard: JanitorPDA
|
||||
ears: HeadsetService
|
||||
belt: ClothingBeltJanitorFilled
|
||||
|
||||
@@ -23,5 +23,5 @@
|
||||
backpack: BackpackEngineeringFilled
|
||||
shoes: ShoesBrown
|
||||
idcard: CEPDA
|
||||
belt: UtilityBeltClothingFilled
|
||||
ears: HeadsetEngineering
|
||||
belt: ClothingBeltChiefEngineerFilled
|
||||
|
||||
@@ -25,3 +25,4 @@
|
||||
outerclothing: OuterclothingLabcoatcmo
|
||||
idcard: CMOPDA
|
||||
ears: HeadsetMedicalAlt
|
||||
belt: ClothingBeltMedical
|
||||
|
||||
@@ -20,3 +20,4 @@
|
||||
outerclothing: OuterclothingLabcoatmedspecopen
|
||||
idcard: MedicalPDA
|
||||
ears: HeadsetMedical
|
||||
belt: ClothingBeltMedical
|
||||
|
||||
@@ -28,3 +28,4 @@
|
||||
head: HatBeretHoS
|
||||
idcard: HoSPDA
|
||||
ears: HeadsetSecurityAlt
|
||||
belt: ClothingBeltSecurityFilled
|
||||
|
||||
@@ -22,3 +22,4 @@
|
||||
outerclothing: OuterclothingArmorVest
|
||||
idcard: SecurityPDA
|
||||
ears: HeadsetSecurity
|
||||
belt: ClothingBeltSecurityFilled
|
||||
|
||||
@@ -23,3 +23,4 @@
|
||||
outerclothing: OuterclothingArmorVest
|
||||
idcard: WardenPDA
|
||||
ears: HeadsetSecurity
|
||||
belt: ClothingBeltSecurityFilled
|
||||
|
||||
BIN
Resources/Textures/Clothing/Belt/assault.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 363 B |
BIN
Resources/Textures/Clothing/Belt/assault.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 382 B |
BIN
Resources/Textures/Clothing/Belt/assault.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 341 B |
BIN
Resources/Textures/Clothing/Belt/assault.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 368 B |
74
Resources/Textures/Clothing/Belt/assault.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
Resources/Textures/Clothing/Belt/bandolier.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 376 B |
BIN
Resources/Textures/Clothing/Belt/bandolier.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 342 B |
BIN
Resources/Textures/Clothing/Belt/bandolier.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 311 B |
BIN
Resources/Textures/Clothing/Belt/bandolier.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 309 B |
74
Resources/Textures/Clothing/Belt/bandolier.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 176 B |
|
After Width: | Height: | Size: 206 B |
|
After Width: | Height: | Size: 176 B |
|
After Width: | Height: | Size: 186 B |
|
After Width: | Height: | Size: 203 B |
|
After Width: | Height: | Size: 207 B |
|
After Width: | Height: | Size: 212 B |
|
After Width: | Height: | Size: 223 B |
|
After Width: | Height: | Size: 223 B |
|
After Width: | Height: | Size: 228 B |
|
After Width: | Height: | Size: 271 B |
|
After Width: | Height: | Size: 271 B |
236
Resources/Textures/Clothing/Belt/belt_icon_overlay.rsi/meta.json
Normal file
@@ -0,0 +1,236 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dc89ef0239830774bd3d9d7d6c8da2856da2b869",
|
||||
"states": [
|
||||
{
|
||||
"name": "crowbar",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "crowbar_brass",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "crowbar_large",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "crowbar_red",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "cutters_brass",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "cutters_red",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "cutters_yellow",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "drill_bolt",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "drill_screw",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "flashbang",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jaws_cutter",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "jaws_pry",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "multitool",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "multitool_red",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "multitool_yellow",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "screwdriver",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "screwdriver_brass",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "screwdriver_head",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "screwdriver_nuke",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "stunbaton",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "stunbaton_active",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "stunbaton_nocell",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wrench",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wrench_brass",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "wrench_medical",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 141 B |
|
After Width: | Height: | Size: 141 B |
|
After Width: | Height: | Size: 141 B |
|
After Width: | Height: | Size: 145 B |
|
After Width: | Height: | Size: 172 B |
|
After Width: | Height: | Size: 110 B |
|
After Width: | Height: | Size: 172 B |
|
After Width: | Height: | Size: 210 B |
|
After Width: | Height: | Size: 210 B |
|
After Width: | Height: | Size: 210 B |
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 168 B |
|
After Width: | Height: | Size: 180 B |
BIN
Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/baton.png
Normal file
|
After Width: | Height: | Size: 196 B |
BIN
Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/gun.png
Normal file
|
After Width: | Height: | Size: 147 B |
|
After Width: | Height: | Size: 148 B |
|
After Width: | Height: | Size: 275 B |
101
Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/meta.json
Normal file
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/dc89ef0239830774bd3d9d7d6c8da2856da2b869",
|
||||
"states": [
|
||||
{
|
||||
"name": "baton",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "gun",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "handcuff",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "injector",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tank",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
Resources/Textures/Clothing/Belt/belt_mob_overlay.rsi/tank.png
Normal file
|
After Width: | Height: | Size: 327 B |
|
Before Width: | Height: | Size: 294 B |
@@ -1 +0,0 @@
|
||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 9a3a3a180344460263e8df7ea2565128e07b86b5", "states": [{"name": "equipped-BELT", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "utilitybelt", "directions": 1, "delays": [[1.0]]}]}
|
||||
BIN
Resources/Textures/Clothing/Belt/ce.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 459 B |
BIN
Resources/Textures/Clothing/Belt/ce.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 433 B |
BIN
Resources/Textures/Clothing/Belt/ce.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 333 B |
BIN
Resources/Textures/Clothing/Belt/ce.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 334 B |
74
Resources/Textures/Clothing/Belt/ce.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
Resources/Textures/Clothing/Belt/champion.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 510 B |
BIN
Resources/Textures/Clothing/Belt/champion.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 580 B |
BIN
Resources/Textures/Clothing/Belt/champion.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 336 B |
BIN
Resources/Textures/Clothing/Belt/champion.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 360 B |
74
Resources/Textures/Clothing/Belt/champion.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
Resources/Textures/Clothing/Belt/holster.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 351 B |
BIN
Resources/Textures/Clothing/Belt/holster.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 295 B |
BIN
Resources/Textures/Clothing/Belt/holster.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 247 B |
BIN
Resources/Textures/Clothing/Belt/holster.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 234 B |
74
Resources/Textures/Clothing/Belt/holster.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
Resources/Textures/Clothing/Belt/janitor.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 369 B |
BIN
Resources/Textures/Clothing/Belt/janitor.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 495 B |
BIN
Resources/Textures/Clothing/Belt/janitor.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 354 B |
BIN
Resources/Textures/Clothing/Belt/janitor.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 345 B |
74
Resources/Textures/Clothing/Belt/janitor.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
Resources/Textures/Clothing/Belt/medical.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 342 B |
BIN
Resources/Textures/Clothing/Belt/medical.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 387 B |
BIN
Resources/Textures/Clothing/Belt/medical.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 356 B |
BIN
Resources/Textures/Clothing/Belt/medical.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 336 B |
74
Resources/Textures/Clothing/Belt/medical.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 721 B |
BIN
Resources/Textures/Clothing/Belt/militarywebbing.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 376 B |
|
After Width: | Height: | Size: 440 B |
|
After Width: | Height: | Size: 451 B |
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
Resources/Textures/Clothing/Belt/security.rsi/equipped-BELT.png
Normal file
|
After Width: | Height: | Size: 366 B |
BIN
Resources/Textures/Clothing/Belt/security.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 452 B |
BIN
Resources/Textures/Clothing/Belt/security.rsi/inhand-left.png
Normal file
|
After Width: | Height: | Size: 341 B |
BIN
Resources/Textures/Clothing/Belt/security.rsi/inhand-right.png
Normal file
|
After Width: | Height: | Size: 368 B |
74
Resources/Textures/Clothing/Belt/security.rsi/meta.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 867 B |
BIN
Resources/Textures/Clothing/Belt/securitywebbing.rsi/icon.png
Normal file
|
After Width: | Height: | Size: 487 B |
|
After Width: | Height: | Size: 440 B |
|
After Width: | Height: | Size: 451 B |
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
65
Resources/Textures/Clothing/Belt/sheath.rsi/meta.json
Normal file
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039",
|
||||
"states": [
|
||||
{
|
||||
"name": "sheath-equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "sheath-sabre-equipped-BELT",
|
||||
"directions": 4,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
],
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "sheath-sabre",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "sheath",
|
||||
"directions": 1,
|
||||
"delays": [
|
||||
[
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 315 B |
|
After Width: | Height: | Size: 500 B |
BIN
Resources/Textures/Clothing/Belt/sheath.rsi/sheath-sabre.png
Normal file
|
After Width: | Height: | Size: 418 B |