Loadout update (#461)
* some full species sprite * floral wreath * alchemist cloak, loadout restruct * giant head clothing refactor * Update entities.ftl * backpacks loadout! yay * trinkets * Update general.yml * oopsie * Update general.yml * fixes * Delete test-ship.yml
@@ -1,17 +1,27 @@
|
||||
# Basic
|
||||
# General
|
||||
|
||||
cp14-loadout-basic-cloak = Cloak
|
||||
cp14-loadout-basic-eyes = Goggles
|
||||
cp14-loadout-basic-gloves = Gloves
|
||||
cp14-loadout-basic-head = Head
|
||||
cp14-loadout-basic-mask = Mask
|
||||
cp14-loadout-basic-pants = Pants
|
||||
cp14-loadout-basic-shirt = Shirt
|
||||
cp14-loadout-basic-shoes = Shoes
|
||||
cp14-loadout-general-cloak = Cloak
|
||||
cp14-loadout-general-eyes = Goggles
|
||||
cp14-loadout-general-gloves = Gloves
|
||||
cp14-loadout-general-head = Head
|
||||
cp14-loadout-general-mask = Mask
|
||||
cp14-loadout-general-pants = Pants
|
||||
cp14-loadout-general-shirt = Shirt
|
||||
cp14-loadout-general-shoes = Shoes
|
||||
cp14-loadout-general-back = Back
|
||||
cp14-loadout-general-trinkets = Trinkets
|
||||
|
||||
# Org
|
||||
# Alchemist
|
||||
|
||||
cp14-loadout-alchemist-head = Alchemist's head
|
||||
cp14-loadout-alchemist-cloak = Alchemist's cloak
|
||||
cp14-loadout-alchemist-eyes = Alchemical goggles
|
||||
|
||||
# Captain
|
||||
|
||||
cp14-loadout-captain-cloak = Captain's cloak
|
||||
cp14-loadout-captain-head = Captain's head
|
||||
|
||||
# Guard commander
|
||||
|
||||
cp14-loadout-guard-commander-cloak = Guard commander's cloak
|
||||
@@ -201,7 +201,7 @@ ent-CP14ClothingCloakFurcapeBlue = { ent-CP14ClothingCloakFurcapeBlack }
|
||||
ent-CP14ClothingCloakSimpleWhite = белый плащ
|
||||
.desc = Длинный плащ с высоким воротником.
|
||||
|
||||
ent-CP14ClothingCloakSimpleDarkBlue = { ent-CP14ClothingCloakSimpleWhite }
|
||||
ent-CP14ClothingCloakSimpleDarkBlue = темный плащ
|
||||
.desc = { ent-CP14ClothingCloakSimpleWhite.desc }
|
||||
|
||||
ent-CP14ClothingCloakCaptainJacket = капитанский жилет
|
||||
|
||||
@@ -1,17 +1,27 @@
|
||||
# Basic
|
||||
# General
|
||||
|
||||
cp14-loadout-basic-cloak = Накидка
|
||||
cp14-loadout-basic-eyes = Очки
|
||||
cp14-loadout-basic-gloves = Перчатки
|
||||
cp14-loadout-basic-head = Головa
|
||||
cp14-loadout-basic-mask = Маска
|
||||
cp14-loadout-basic-pants = Штаны
|
||||
cp14-loadout-basic-shirt = Рубашка
|
||||
cp14-loadout-basic-shoes = Обувь
|
||||
cp14-loadout-general-cloak = Накидка
|
||||
cp14-loadout-general-eyes = Очки
|
||||
cp14-loadout-general-gloves = Перчатки
|
||||
cp14-loadout-general-head = Шляпа
|
||||
cp14-loadout-general-mask = Маска
|
||||
cp14-loadout-general-pants = Штаны
|
||||
cp14-loadout-general-shirt = Рубашка
|
||||
cp14-loadout-general-shoes = Обувь
|
||||
cp14-loadout-general-back = Спина
|
||||
cp14-loadout-general-trinkets = Безделушки
|
||||
|
||||
# Org
|
||||
# Alchemist
|
||||
|
||||
cp14-loadout-alchemist-head = Шляпа алхимика
|
||||
cp14-loadout-alchemist-cloak = Накидка алхимика
|
||||
cp14-loadout-alchemist-eyes = Алхимические очки
|
||||
|
||||
# Captain
|
||||
|
||||
cp14-loadout-captain-cloak = Капитанская накидка
|
||||
cp14-loadout-captain-head = Капитанская шляпа
|
||||
|
||||
# Guard commander
|
||||
|
||||
cp14-loadout-guard-commander-cloak = Накидка командира стражи
|
||||
@@ -0,0 +1,21 @@
|
||||
- type: entity
|
||||
parent: CP14ClothingCloakBase
|
||||
id: CP14ClothingCloakAlchemistBase
|
||||
abstract: true
|
||||
components:
|
||||
- type: Armor
|
||||
modifiers:
|
||||
coefficients:
|
||||
Heat: 0.9
|
||||
Caustic: 0.75
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingCloakAlchemistBase
|
||||
id: CP14ClothingCloakAlchemist
|
||||
name: alchemist's cloak
|
||||
description: An expensive fabric that can withstand acid splashes - the standard for alchemist experts.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Cloak/alchemist_cloak.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Cloak/alchemist_cloak.rsi
|
||||
@@ -0,0 +1,18 @@
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadCapellina
|
||||
name: capellina
|
||||
description: Protects against large object strikes to the head.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Produced/Armor/capellina.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Produced/Armor/capellina.rsi
|
||||
- type: Armor
|
||||
modifiers:
|
||||
coefficients:
|
||||
Blunt: 0.90
|
||||
Slash: 0.95
|
||||
- type: ClothingSpeedModifier
|
||||
walkModifier: 0.95
|
||||
sprintModifier: 0.95
|
||||
@@ -0,0 +1,10 @@
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadWreath
|
||||
name: floral wreath
|
||||
description: A simple flower decoration. That's so sweet.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Produced/wreath.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Produced/wreath.rsi
|
||||
@@ -0,0 +1,21 @@
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadAlchemistBandana
|
||||
name: alchemist's bandana
|
||||
description: Hides your hair from chemical fumes
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/Alchemist/bandana.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/Alchemist/bandana.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadAlchemistBeret
|
||||
name: alchemist's beret
|
||||
description: You seem very smart.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/Alchemist/beret.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/Alchemist/beret.rsi
|
||||
@@ -0,0 +1,10 @@
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadCaptainCap
|
||||
name: captain's cap
|
||||
description: No, look how handsome he is!
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/Captain/cap.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/Captain/cap.rsi
|
||||
@@ -0,0 +1,155 @@
|
||||
- type: entity
|
||||
abstract: true
|
||||
parent: Clothing
|
||||
id: CP14ClothingHeadBase
|
||||
components:
|
||||
- type: Clothing
|
||||
equipDelay: 0.3
|
||||
unequipDelay: 0.3
|
||||
slots:
|
||||
- HEAD
|
||||
breakOnMove: false
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Item
|
||||
size: Normal
|
||||
storedRotation: -90
|
||||
|
||||
# Berets
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadBeretBase
|
||||
abstract: true
|
||||
description: this is beret.
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBeretBase
|
||||
id: CP14ClothingHeadBeretRed
|
||||
name: red beret
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_red.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_red.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBeretBase
|
||||
id: CP14ClothingHeadBeretPurple
|
||||
name: purple beret
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_purple.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_purple.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBeretBase
|
||||
id: CP14ClothingHeadBeretYellow
|
||||
name: yellow beret
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_yellow.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_yellow.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBeretBase
|
||||
id: CP14ClothingHeadBeretBlue
|
||||
name: blue beret
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_blue.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_blue.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBeretBase
|
||||
id: CP14ClothingHeadBeretBlack
|
||||
name: black beret
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_black.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_black.rsi
|
||||
|
||||
# Bandanas
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadBandanaBase
|
||||
abstract: true
|
||||
description: Favorite mage headdress
|
||||
components:
|
||||
- type: HideLayerClothing
|
||||
slots:
|
||||
- Hair
|
||||
- Snout
|
||||
- HeadTop
|
||||
- HeadSide
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBandanaBase
|
||||
id: CP14ClothingHeadBandanaWhite
|
||||
name: white bandana
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/bandana_white.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/bandana_white.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBandanaBase
|
||||
id: CP14ClothingHeadBandanaYellow
|
||||
name: yellow bandana
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/bandana_yellow.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/bandana_yellow.rsi
|
||||
|
||||
#
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadBeretMercenary
|
||||
name: mercenary beret
|
||||
description: A large red wool hat decorated with a feather.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_mercenary.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/beret_mercenary.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadMetalHeadband
|
||||
name: metall headband
|
||||
description: The odds of it protecting you from a head shot are slim to none.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/metalheadband.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/metalheadband.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadTriangularHat
|
||||
name: triangular hat
|
||||
description: a big, pointy hat for those who like to look smart.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/triangularhat.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/triangularhat.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadTriangularHatGolden
|
||||
name: golden triangular hat
|
||||
description: a big, pointy hat for those who like to look smart. Decorated with a gold hoop.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi
|
||||
@@ -1,156 +0,0 @@
|
||||
- type: entity
|
||||
abstract: true
|
||||
parent: Clothing
|
||||
id: CP14ClothingHeadBase
|
||||
components:
|
||||
- type: Clothing
|
||||
equipDelay: 0.3
|
||||
unequipDelay: 0.3
|
||||
slots:
|
||||
- HEAD
|
||||
breakOnMove: false
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Item
|
||||
size: Normal
|
||||
storedRotation: -90
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadMetalHeadband
|
||||
name: metall headband
|
||||
description: The odds of it protecting you from a head shot are slim to none.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/metalheadband.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/metalheadband.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadTriangularHat
|
||||
name: triangular hat
|
||||
description: a big, pointy hat for those who like to look smart.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/triangularhat.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/triangularhat.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadTriangularHatGolden
|
||||
name: golden triangular hat
|
||||
description: a big, pointy hat for those who like to look smart. Decorated with a gold hoop.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/triangularhat_golden.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/triangularhat_golden.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadRedBeret
|
||||
name: red beret
|
||||
description: this is beret.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Beret/red.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Beret/red.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadPurpleBeret
|
||||
name: purple beret
|
||||
description: this is beret.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Beret/purple.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Beret/purple.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadYellowBeret
|
||||
name: yellow beret
|
||||
description: this is beret.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Beret/yellow.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Beret/yellow.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadBlueBeret
|
||||
name: blue beret
|
||||
description: this is beret.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Beret/blue.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Beret/blue.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadBlackBeret
|
||||
name: black beret
|
||||
description: this is beret.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Beret/black.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Beret/black.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadCaptainCap
|
||||
name: captain's cap
|
||||
description: No, look how handsome he is!
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/captain_cap.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/captain_cap.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadYellowHat
|
||||
name: yellow hat
|
||||
description: For some reason, the mages' favourite yellow hat.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/yellow_hat.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/yellow_hat.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadMercenaryBeret
|
||||
name: mercenary beret
|
||||
description: A large red wool hat decorated with a feather.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Beret/mercenary_beret.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Beret/mercenary_beret.rsi
|
||||
|
||||
- type: entity
|
||||
parent: CP14ClothingHeadBase
|
||||
id: CP14ClothingHeadCapellina
|
||||
name: capellina
|
||||
description: Protects against large object strikes to the head.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _CP14/Clothing/Head/Helmet/capellina.rsi
|
||||
- type: Clothing
|
||||
sprite: _CP14/Clothing/Head/Helmet/capellina.rsi
|
||||
- type: Armor
|
||||
modifiers:
|
||||
coefficients:
|
||||
Blunt: 0.90
|
||||
Slash: 0.95
|
||||
- type: ClothingSpeedModifier
|
||||
walkModifier: 0.99
|
||||
sprintModifier: 0.99
|
||||
@@ -158,10 +158,12 @@
|
||||
- CP14ClothingDressBlack
|
||||
- CP14ClothingPantsSouthernMagician
|
||||
- CP14ClothingPantsMercenaryTrousers
|
||||
- CP14ClothingHeadRedBeret
|
||||
- CP14ClothingHeadPurpleBeret
|
||||
- CP14ClothingHeadYellowBeret
|
||||
- CP14ClothingHeadBlueBeret
|
||||
- CP14ClothingHeadBlackBeret
|
||||
- CP14ClothingHeadYellowHat
|
||||
- CP14ClothingHeadMercenaryBeret
|
||||
- CP14ClothingHeadBeretRed
|
||||
- CP14ClothingHeadBeretPurple
|
||||
- CP14ClothingHeadBeretYellow
|
||||
- CP14ClothingHeadBeretBlue
|
||||
- CP14ClothingHeadBeretBlack
|
||||
- CP14ClothingHeadBeretMercenary
|
||||
- CP14ClothingHeadBandanaWhite
|
||||
- CP14ClothingHeadBandanaYellow
|
||||
- CP14ClothingHeadWreath
|
||||
51
Resources/Prototypes/_CP14/Loadouts/Jobs/alchemist.yml
Normal file
@@ -0,0 +1,51 @@
|
||||
# Head
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14AlchemistHead
|
||||
name: cp14-loadout-alchemist-head
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14ClothingHeadAlchemistBandana
|
||||
- CP14ClothingHeadAlchemistBeret
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadAlchemistBandana
|
||||
equipment:
|
||||
head: CP14ClothingHeadAlchemistBandana
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadAlchemistBeret
|
||||
equipment:
|
||||
head: CP14ClothingHeadAlchemistBeret
|
||||
|
||||
# Cloak
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14AlchemistCloak
|
||||
name: cp14-loadout-alchemist-cloak
|
||||
loadouts:
|
||||
- CP14ClothingCloakAlchemist
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakAlchemist
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakAlchemist
|
||||
|
||||
# Eyes
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14AlchemistEyes
|
||||
name: cp14-loadout-alchemist-eyes
|
||||
loadouts:
|
||||
- CP14ClothingEyesAlchemyGlasses
|
||||
- CP14ClothingEyesAlchemyMonocle
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingEyesAlchemyGlasses
|
||||
equipment:
|
||||
eyes: CP14ClothingEyesAlchemyGlasses
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingEyesAlchemyMonocle
|
||||
equipment:
|
||||
eyes: CP14ClothingEyesAlchemyMonocle
|
||||
@@ -1,174 +0,0 @@
|
||||
# Cloak
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakBlacksmithArpon
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakBlacksmithArpon
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakMaidArpon
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakMaidArpon
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakFurcapeBlack
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakFurcapeBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakFurcapeBlue
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakFurcapeBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakSimpleWhite
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakSimpleWhite
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakSimpleDarkBlue
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakSimpleDarkBlue
|
||||
|
||||
# Eyes
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingEyesMonocle
|
||||
equipment:
|
||||
eyes: CP14ClothingEyesMonocle
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingEyesGlasses
|
||||
equipment:
|
||||
eyes: CP14ClothingEyesGlasses
|
||||
|
||||
# Gloves
|
||||
|
||||
- type: loadout
|
||||
id: CP14Girdles
|
||||
equipment:
|
||||
gloves: CP14ClothingGlovesGirdles
|
||||
|
||||
# Head
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadMetalHeadband
|
||||
equipment:
|
||||
head: CP14ClothingHeadMetalHeadband
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadTriangularHat
|
||||
equipment:
|
||||
head: CP14ClothingHeadTriangularHat
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadTriangularHatGolden
|
||||
equipment:
|
||||
head: CP14ClothingHeadTriangularHatGolden
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadRedBeret
|
||||
equipment:
|
||||
head: CP14ClothingHeadRedBeret
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadPurpleBeret
|
||||
equipment:
|
||||
head: CP14ClothingHeadPurpleBeret
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadYellowBeret
|
||||
equipment:
|
||||
head: CP14ClothingHeadYellowBeret
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBlueBeret
|
||||
equipment:
|
||||
head: CP14ClothingHeadBlueBeret
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBlackBeret
|
||||
equipment:
|
||||
head: CP14ClothingHeadBlackBeret
|
||||
|
||||
# Mask
|
||||
|
||||
- type: loadout
|
||||
id: CP14Sinner
|
||||
equipment:
|
||||
mask: CP14ClothingMaskSinner
|
||||
|
||||
# Pants
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsTrouserWhite
|
||||
equipment:
|
||||
pants: CP14ClothingPantsTrouserWhite
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsTrouserDarkBlue
|
||||
equipment:
|
||||
pants: CP14ClothingPantsTrouserDarkBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsAristocratic
|
||||
equipment:
|
||||
pants: CP14ClothingPantsAristocratic
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsLoincloth
|
||||
equipment:
|
||||
pants: CP14ClothingPantsLoincloth
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingDressBlack
|
||||
equipment:
|
||||
pants: CP14ClothingDressBlack
|
||||
|
||||
# Shirt
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonBlue
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonBlack
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonPurple
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonPurple
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonRed
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonRed
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonWhite
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonWhite
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonYellow
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonYellow
|
||||
|
||||
# Shoes
|
||||
|
||||
- type: loadout
|
||||
id: CP14ShoesBlack
|
||||
equipment:
|
||||
shoes: CP14ClothingShoesBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ShoesAristocraticBlack
|
||||
equipment:
|
||||
shoes: CP14ClothingShoesAristocraticBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ShoesSandals
|
||||
equipment:
|
||||
shoes: CP14ClothingShoesSandals
|
||||
@@ -1,10 +1,24 @@
|
||||
# Head
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14CaptainHead
|
||||
name: cp14-loadout-captain-head
|
||||
loadouts:
|
||||
- CP14ClothingHeadCaptainCap
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadCaptainCap
|
||||
equipment:
|
||||
head: CP14ClothingHeadCaptainCap
|
||||
|
||||
# Cloak
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14CaptainCloak
|
||||
name: cp14-loadout-captain-cloak
|
||||
loadouts:
|
||||
- CP14ClothingCloakCaptainJacket
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakCaptainJacket
|
||||
equipment:
|
||||
|
||||
314
Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml
Normal file
@@ -0,0 +1,314 @@
|
||||
# Cloak
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralCloak
|
||||
name: cp14-loadout-general-cloak
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14ClothingCloakSimpleWhite
|
||||
- CP14ClothingCloakSimpleDarkBlue
|
||||
- CP14ClothingCloakBlacksmithArpon
|
||||
- CP14ClothingCloakFurcapeBlack
|
||||
- CP14ClothingCloakFurcapeBlue
|
||||
- CP14ClothingCloakMaidArpon
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakSimpleWhite
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakSimpleWhite
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakSimpleDarkBlue
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakSimpleDarkBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakBlacksmithArpon
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakBlacksmithArpon
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakFurcapeBlack
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakFurcapeBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakFurcapeBlue
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakFurcapeBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakMaidArpon
|
||||
equipment:
|
||||
cloak: CP14ClothingCloakMaidArpon
|
||||
|
||||
# Eyes
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralEyes
|
||||
name: cp14-loadout-general-eyes
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14ClothingEyesMonocle
|
||||
- CP14ClothingEyesGlasses
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingEyesMonocle
|
||||
equipment:
|
||||
eyes: CP14ClothingEyesMonocle
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingEyesGlasses
|
||||
equipment:
|
||||
eyes: CP14ClothingEyesGlasses
|
||||
|
||||
# Gloves
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralGloves
|
||||
name: cp14-loadout-general-gloves
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14Girdles
|
||||
|
||||
- type: loadout
|
||||
id: CP14Girdles
|
||||
equipment:
|
||||
gloves: CP14ClothingGlovesGirdles
|
||||
|
||||
# Mask
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralMask
|
||||
name: cp14-loadout-general-mask
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14Sinner
|
||||
|
||||
- type: loadout
|
||||
id: CP14Sinner
|
||||
equipment:
|
||||
mask: CP14ClothingMaskSinner
|
||||
|
||||
# Head
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralHead
|
||||
name: cp14-loadout-general-head
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14ClothingHeadMetalHeadband
|
||||
- CP14ClothingHeadTriangularHat
|
||||
- CP14ClothingHeadTriangularHatGolden
|
||||
- CP14ClothingHeadBeretRed
|
||||
- CP14ClothingHeadBeretPurple
|
||||
- CP14ClothingHeadBeretYellow
|
||||
- CP14ClothingHeadBeretBlue
|
||||
- CP14ClothingHeadBeretBlack
|
||||
- CP14ClothingHeadBandanaWhite
|
||||
- CP14ClothingHeadBandanaYellow
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadMetalHeadband
|
||||
equipment:
|
||||
head: CP14ClothingHeadMetalHeadband
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadTriangularHat
|
||||
equipment:
|
||||
head: CP14ClothingHeadTriangularHat
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadTriangularHatGolden
|
||||
equipment:
|
||||
head: CP14ClothingHeadTriangularHatGolden
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBeretRed
|
||||
equipment:
|
||||
head: CP14ClothingHeadBeretRed
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBeretPurple
|
||||
equipment:
|
||||
head: CP14ClothingHeadBeretPurple
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBeretYellow
|
||||
equipment:
|
||||
head: CP14ClothingHeadBeretYellow
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBeretBlue
|
||||
equipment:
|
||||
head: CP14ClothingHeadBeretBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBeretBlack
|
||||
equipment:
|
||||
head: CP14ClothingHeadBeretBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBandanaWhite
|
||||
equipment:
|
||||
head: CP14ClothingHeadBandanaWhite
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingHeadBandanaYellow
|
||||
equipment:
|
||||
head: CP14ClothingHeadBandanaYellow
|
||||
|
||||
# Pants
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralPants
|
||||
name: cp14-loadout-general-pants
|
||||
loadouts:
|
||||
- CP14ClothingPantsTrouserWhite
|
||||
- CP14ClothingPantsTrouserDarkBlue
|
||||
- CP14ClothingPantsAristocratic
|
||||
- CP14ClothingPantsLoincloth
|
||||
- CP14ClothingDressBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsTrouserWhite
|
||||
equipment:
|
||||
pants: CP14ClothingPantsTrouserWhite
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsTrouserDarkBlue
|
||||
equipment:
|
||||
pants: CP14ClothingPantsTrouserDarkBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsAristocratic
|
||||
equipment:
|
||||
pants: CP14ClothingPantsAristocratic
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingPantsLoincloth
|
||||
equipment:
|
||||
pants: CP14ClothingPantsLoincloth
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingDressBlack
|
||||
equipment:
|
||||
pants: CP14ClothingDressBlack
|
||||
|
||||
# Shirt
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralShirt
|
||||
name: cp14-loadout-general-shirt
|
||||
loadouts:
|
||||
- CP14ClothingShirtCottonWhite
|
||||
- CP14ClothingShirtCottonBlue
|
||||
- CP14ClothingShirtCottonBlack
|
||||
- CP14ClothingShirtCottonPurple
|
||||
- CP14ClothingShirtCottonRed
|
||||
- CP14ClothingShirtCottonYellow
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonWhite
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonWhite
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonBlue
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonBlue
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonBlack
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonPurple
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonPurple
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonRed
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonRed
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingShirtCottonYellow
|
||||
equipment:
|
||||
shirt: CP14ClothingShirtCottonYellow
|
||||
|
||||
# Shoes
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralShoes
|
||||
name: cp14-loadout-general-shoes
|
||||
loadouts:
|
||||
- CP14ShoesBlack
|
||||
- CP14ShoesAristocraticBlack
|
||||
- CP14ShoesSandals
|
||||
|
||||
- type: loadout
|
||||
id: CP14ShoesBlack
|
||||
equipment:
|
||||
shoes: CP14ClothingShoesBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ShoesAristocraticBlack
|
||||
equipment:
|
||||
shoes: CP14ClothingShoesAristocraticBlack
|
||||
|
||||
- type: loadout
|
||||
id: CP14ShoesSandals
|
||||
equipment:
|
||||
shoes: CP14ClothingShoesSandals
|
||||
|
||||
# Back
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralBack
|
||||
name: cp14-loadout-general-back
|
||||
loadouts:
|
||||
- CP14ClothingBackpackLeather
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingBackpackLeather
|
||||
equipment:
|
||||
back: CP14ClothingBackpackLeather
|
||||
|
||||
# Trinkets
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GeneralTrinkets
|
||||
name: cp14-loadout-general-trinkets
|
||||
minLimit: 0
|
||||
maxLimit: 2
|
||||
loadouts:
|
||||
- CP14ClothingRingCureWounds
|
||||
- CP14ClothingRingFlameCreation
|
||||
- CP14ClothingRingIceDagger
|
||||
- CP14FoodCucumber
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingRingCureWounds
|
||||
storage:
|
||||
back:
|
||||
- CP14ClothingRingCureWounds
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingRingFlameCreation
|
||||
storage:
|
||||
back:
|
||||
- CP14ClothingRingFlameCreation
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingRingIceDagger
|
||||
storage:
|
||||
back:
|
||||
- CP14ClothingRingIceDagger
|
||||
|
||||
- type: loadout
|
||||
id: CP14FoodCucumber
|
||||
storage:
|
||||
back:
|
||||
- CP14FoodCucumber
|
||||
@@ -1,5 +1,11 @@
|
||||
|
||||
# Cloak
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GuardCommanderCloak
|
||||
name: cp14-loadout-guard-commander-cloak
|
||||
loadouts:
|
||||
- CP14ClothingCloakArmoredRed
|
||||
|
||||
- type: loadout
|
||||
id: CP14ClothingCloakArmoredRed
|
||||
equipment:
|
||||
|
||||
@@ -1,98 +0,0 @@
|
||||
# Basic
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicCloak
|
||||
name: cp14-loadout-basic-cloak
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14ClothingCloakSimpleWhite
|
||||
- CP14ClothingCloakSimpleDarkBlue
|
||||
- CP14ClothingCloakBlacksmithArpon
|
||||
- CP14ClothingCloakFurcapeBlack
|
||||
- CP14ClothingCloakFurcapeBlue
|
||||
- CP14ClothingCloakMaidArpon
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicEyes
|
||||
name: cp14-loadout-basic-eyes
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14ClothingEyesMonocle
|
||||
- CP14ClothingEyesGlasses
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicGloves
|
||||
name: cp14-loadout-basic-gloves
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14Girdles
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicMask
|
||||
name: cp14-loadout-basic-mask
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14Sinner
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicHead
|
||||
name: cp14-loadout-basic-head
|
||||
minLimit: 0
|
||||
loadouts:
|
||||
- CP14ClothingHeadMetalHeadband
|
||||
- CP14ClothingHeadTriangularHat
|
||||
- CP14ClothingHeadTriangularHatGolden
|
||||
- CP14ClothingHeadRedBeret
|
||||
- CP14ClothingHeadPurpleBeret
|
||||
- CP14ClothingHeadYellowBeret
|
||||
- CP14ClothingHeadBlueBeret
|
||||
- CP14ClothingHeadBlackBeret
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicPants
|
||||
name: cp14-loadout-basic-pants
|
||||
loadouts:
|
||||
- CP14ClothingPantsTrouserWhite
|
||||
- CP14ClothingPantsTrouserDarkBlue
|
||||
- CP14ClothingPantsAristocratic
|
||||
- CP14ClothingPantsLoincloth
|
||||
- CP14ClothingDressBlack
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicShirt
|
||||
name: cp14-loadout-basic-shirt
|
||||
loadouts:
|
||||
- CP14ClothingShirtCottonWhite
|
||||
- CP14ClothingShirtCottonBlue
|
||||
- CP14ClothingShirtCottonBlack
|
||||
- CP14ClothingShirtCottonPurple
|
||||
- CP14ClothingShirtCottonRed
|
||||
- CP14ClothingShirtCottonYellow
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14BasicShoes
|
||||
name: cp14-loadout-basic-shoes
|
||||
loadouts:
|
||||
- CP14ShoesBlack
|
||||
- CP14ShoesAristocraticBlack
|
||||
- CP14ShoesSandals
|
||||
|
||||
# Command
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14CaptainHead
|
||||
name: cp14-loadout-captain-head
|
||||
loadouts:
|
||||
- CP14ClothingHeadCaptainCap
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14CaptainCloak
|
||||
name: cp14-loadout-captain-cloak
|
||||
loadouts:
|
||||
- CP14ClothingCloakCaptainJacket
|
||||
|
||||
- type: loadoutGroup
|
||||
id: CP14GuardCommanderCloak
|
||||
name: cp14-loadout-guard-commander-cloak
|
||||
loadouts:
|
||||
- CP14ClothingCloakArmoredRed
|
||||
@@ -1,71 +1,83 @@
|
||||
- type: roleLoadout
|
||||
id: JobCP14Adventurer
|
||||
groups:
|
||||
- CP14BasicHead
|
||||
- CP14BasicEyes
|
||||
- CP14BasicMask
|
||||
- CP14BasicCloak
|
||||
- CP14BasicGloves
|
||||
- CP14BasicShirt
|
||||
- CP14BasicPants
|
||||
- CP14BasicShoes
|
||||
- CP14GeneralHead
|
||||
- CP14GeneralEyes
|
||||
- CP14GeneralMask
|
||||
- CP14GeneralCloak
|
||||
- CP14GeneralGloves
|
||||
- CP14GeneralShirt
|
||||
- CP14GeneralPants
|
||||
- CP14GeneralShoes
|
||||
- CP14GeneralBack
|
||||
- CP14GeneralTrinkets
|
||||
|
||||
- type: roleLoadout
|
||||
id: JobCP14Alchemist
|
||||
groups:
|
||||
- CP14BasicHead #TODO
|
||||
- CP14BasicEyes
|
||||
- CP14BasicMask
|
||||
- CP14BasicCloak #TODO
|
||||
- CP14BasicGloves
|
||||
- CP14BasicShirt
|
||||
- CP14BasicPants
|
||||
- CP14BasicShoes
|
||||
- CP14AlchemistHead #
|
||||
- CP14AlchemistEyes #
|
||||
- CP14GeneralMask
|
||||
- CP14AlchemistCloak #
|
||||
- CP14GeneralGloves
|
||||
- CP14GeneralShirt
|
||||
- CP14GeneralPants
|
||||
- CP14GeneralShoes
|
||||
- CP14GeneralBack
|
||||
- CP14GeneralTrinkets
|
||||
|
||||
- type: roleLoadout
|
||||
id: JobCP14Innkeeper
|
||||
groups:
|
||||
- CP14BasicHead
|
||||
- CP14BasicEyes
|
||||
- CP14BasicMask
|
||||
- CP14BasicCloak
|
||||
- CP14BasicGloves
|
||||
- CP14BasicShirt
|
||||
- CP14BasicPants
|
||||
- CP14BasicShoes
|
||||
- CP14GeneralHead
|
||||
- CP14GeneralEyes
|
||||
- CP14GeneralMask
|
||||
- CP14GeneralCloak
|
||||
- CP14GeneralGloves
|
||||
- CP14GeneralShirt
|
||||
- CP14GeneralPants
|
||||
- CP14GeneralShoes
|
||||
- CP14GeneralBack
|
||||
- CP14GeneralTrinkets
|
||||
|
||||
- type: roleLoadout
|
||||
id: JobCP14Captain
|
||||
groups:
|
||||
- CP14CaptainHead
|
||||
- CP14BasicEyes
|
||||
- CP14BasicMask
|
||||
- CP14CaptainCloak
|
||||
- CP14BasicGloves
|
||||
- CP14BasicShirt
|
||||
- CP14BasicPants
|
||||
- CP14BasicShoes
|
||||
- CP14CaptainHead #
|
||||
- CP14GeneralEyes
|
||||
- CP14GeneralMask
|
||||
- CP14CaptainCloak #
|
||||
- CP14GeneralGloves
|
||||
- CP14GeneralShirt
|
||||
- CP14GeneralPants
|
||||
- CP14GeneralShoes
|
||||
- CP14GeneralBack
|
||||
- CP14GeneralTrinkets
|
||||
|
||||
- type: roleLoadout
|
||||
id: JobCP14GuardCommander
|
||||
groups:
|
||||
- CP14BasicHead
|
||||
- CP14BasicEyes
|
||||
- CP14BasicMask
|
||||
- CP14GuardCommanderCloak
|
||||
- CP14BasicGloves
|
||||
- CP14BasicShirt
|
||||
- CP14BasicPants
|
||||
- CP14BasicShoes
|
||||
- CP14GeneralHead
|
||||
- CP14GeneralEyes
|
||||
- CP14GeneralMask
|
||||
- CP14GuardCommanderCloak #
|
||||
- CP14GeneralGloves
|
||||
- CP14GeneralShirt
|
||||
- CP14GeneralPants
|
||||
- CP14GeneralShoes
|
||||
- CP14GeneralBack
|
||||
- CP14GeneralTrinkets
|
||||
|
||||
- type: roleLoadout
|
||||
id: JobCP14HouseKeeper
|
||||
groups:
|
||||
- CP14BasicHead
|
||||
- CP14BasicEyes
|
||||
- CP14BasicMask
|
||||
- CP14CaptainCloak
|
||||
- CP14BasicGloves
|
||||
- CP14BasicShirt
|
||||
- CP14BasicPants
|
||||
- CP14BasicShoes
|
||||
- CP14GeneralHead
|
||||
- CP14GeneralEyes
|
||||
- CP14GeneralMask
|
||||
- CP14CaptainCloak #
|
||||
- CP14GeneralGloves
|
||||
- CP14GeneralShirt
|
||||
- CP14GeneralPants
|
||||
- CP14GeneralShoes
|
||||
- CP14GeneralBack
|
||||
- CP14GeneralTrinkets
|
||||
@@ -150,67 +150,76 @@
|
||||
result: CP14ClothingPantsMercenaryTrousers
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadRedBeret
|
||||
id: CP14ClothingHeadBeretRed
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
CP14DyeRed: 1
|
||||
stacks:
|
||||
CP14Cloth: 1
|
||||
result: CP14ClothingHeadRedBeret
|
||||
result: CP14ClothingHeadBeretRed
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadPurpleBeret
|
||||
id: CP14ClothingHeadBeretPurple
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
CP14DyePurple: 1
|
||||
stacks:
|
||||
CP14Cloth: 1
|
||||
result: CP14ClothingHeadPurpleBeret
|
||||
result: CP14ClothingHeadBeretPurple
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadYellowBeret
|
||||
id: CP14ClothingHeadBeretYellow
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
CP14DyeYellow: 1
|
||||
stacks:
|
||||
CP14Cloth: 1
|
||||
result: CP14ClothingHeadYellowBeret
|
||||
result: CP14ClothingHeadBeretYellow
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadBlueBeret
|
||||
id: CP14ClothingHeadBeretBlue
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
CP14DyeBlue: 1
|
||||
stacks:
|
||||
CP14Cloth: 1
|
||||
result: CP14ClothingHeadBlueBeret
|
||||
result: CP14ClothingHeadBeretBlue
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadBlackBeret
|
||||
id: CP14ClothingHeadBeretBlack
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
CP14DyeBlack: 1
|
||||
stacks:
|
||||
CP14Cloth: 1
|
||||
result: CP14ClothingHeadBlackBeret
|
||||
result: CP14ClothingHeadBeretBlack
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadYellowHat
|
||||
id: CP14ClothingHeadBandanaWhite
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
stacks:
|
||||
CP14Cloth: 2
|
||||
result: CP14ClothingHeadBandanaWhite
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadBandanaYellow
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
CP14DyeYellow: 1
|
||||
stacks:
|
||||
CP14Cloth: 2
|
||||
result: CP14ClothingHeadYellowHat
|
||||
result: CP14ClothingHeadBandanaYellow
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadMercenaryBeret
|
||||
id: CP14ClothingHeadBeretMercenary
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14String: 1
|
||||
@@ -218,4 +227,12 @@
|
||||
CP14DyeBlue: 1
|
||||
stacks:
|
||||
CP14Cloth: 2
|
||||
result: CP14ClothingHeadMercenaryBeret
|
||||
result: CP14ClothingHeadBeretMercenary
|
||||
|
||||
- type: CP14Recipe
|
||||
id: CP14ClothingHeadWreath
|
||||
craftTime: 2
|
||||
entities:
|
||||
CP14FlowersRed: 2
|
||||
CP14FlowersYellow: 2
|
||||
result: CP14ClothingHeadWreath
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 581 B |
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CLA",
|
||||
"copyright": "CrystallPunk14, by TheShuEd",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "icon"
|
||||
},
|
||||
{
|
||||
"name": "equipped-CLOAK",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 432 B |
|
Before Width: | Height: | Size: 459 B After Width: | Height: | Size: 459 B |
|
Before Width: | Height: | Size: 798 B After Width: | Height: | Size: 798 B |
|
Before Width: | Height: | Size: 399 B After Width: | Height: | Size: 399 B |
|
Before Width: | Height: | Size: 467 B After Width: | Height: | Size: 467 B |
|
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 487 B |
|
After Width: | Height: | Size: 564 B |
|
After Width: | Height: | Size: 287 B |
|
After Width: | Height: | Size: 298 B |
|
After Width: | Height: | Size: 307 B |
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CLA",
|
||||
"copyright": "Created by omsoyk (Discord)",
|
||||
"size": {
|
||||
"x": 48,
|
||||
"y": 48
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "icon"
|
||||
},
|
||||
{
|
||||
"name": "equipped-HELMET",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 563 B |
|
After Width: | Height: | Size: 373 B |
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CLA",
|
||||
"copyright": "CrystallPunk14, by Prazat, recolored by TheShuEd",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "icon"
|
||||
},
|
||||
{
|
||||
"name": "equipped-HELMET",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 489 B |
|
After Width: | Height: | Size: 246 B |
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CLA",
|
||||
"copyright": "CrystallPunk14, by Prazat, recolored by TheShuEd",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "icon"
|
||||
},
|
||||
{
|
||||
"name": "equipped-HELMET",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Before Width: | Height: | Size: 536 B After Width: | Height: | Size: 536 B |
|
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 329 B |
|
After Width: | Height: | Size: 455 B |
|
After Width: | Height: | Size: 330 B |
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CLA",
|
||||
"copyright": "CrystallPunk14, by Prazat, recolored by TheShuEd",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "icon"
|
||||
},
|
||||
{
|
||||
"name": "equipped-HELMET",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Before Width: | Height: | Size: 607 B After Width: | Height: | Size: 607 B |
|
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 347 B |
|
Before Width: | Height: | Size: 463 B After Width: | Height: | Size: 463 B |
|
Before Width: | Height: | Size: 224 B After Width: | Height: | Size: 224 B |
|
Before Width: | Height: | Size: 509 B After Width: | Height: | Size: 509 B |
|
Before Width: | Height: | Size: 228 B After Width: | Height: | Size: 228 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 404 B |
|
Before Width: | Height: | Size: 485 B After Width: | Height: | Size: 485 B |
|
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 234 B |
|
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 507 B |
|
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 241 B |
|
Before Width: | Height: | Size: 483 B After Width: | Height: | Size: 483 B |
|
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 239 B |
|
Before Width: | Height: | Size: 312 B After Width: | Height: | Size: 312 B |
|
Before Width: | Height: | Size: 253 B After Width: | Height: | Size: 253 B |
|
Before Width: | Height: | Size: 952 B After Width: | Height: | Size: 952 B |
|
Before Width: | Height: | Size: 412 B After Width: | Height: | Size: 412 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 249 B |
|
Before Width: | Height: | Size: 579 B After Width: | Height: | Size: 1.4 KiB |
@@ -8,7 +8,8 @@
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "full"
|
||||
"name": "full",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "head_f",
|
||||
|
||||
|
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 1.8 KiB |
@@ -8,7 +8,8 @@
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "full"
|
||||
"name": "full",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "head",
|
||||
|
||||
|
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 1.7 KiB |
@@ -8,7 +8,8 @@
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "full"
|
||||
"name": "full",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "head",
|
||||
|
||||
@@ -94,6 +94,8 @@ CP14FenceWoodHighGate: null
|
||||
CP14FenceWoodHighStraight: null
|
||||
CP14IronGrilleGateLockedTavern: null
|
||||
|
||||
CP14ClothingHeadMercenaryBeret: CP14ClothingHeadBeretMercenary
|
||||
|
||||
# <---> CrystallPunk migration zone end
|
||||
|
||||
|
||||
|
||||