return simple armour (#1770)

This commit is contained in:
Nim
2025-09-13 15:22:02 +03:00
committed by GitHub
parent f5bf4457e7
commit fbef31dfa6
18 changed files with 194 additions and 3 deletions

View File

@@ -37,7 +37,7 @@
- type: entity
parent: CP14ClothingCloakVampireBase
id: CP14ClothingCloakVampireDevourers
name: сrimson vampire cloak
name: crimson vampire cloak
description: A traditional vampire cloak worn by members of the Devourers clan. Hides the owner from prying eyes, granting invisibility.
components:
- type: Sprite

View File

@@ -33,12 +33,15 @@
Blunt: 0.85
Slash: 0.80
Piercing: 0.90
- type: ClothingSpeedModifier
walkModifier: 0.95
sprintModifier: 0.95
- type: entity
parent: CP14ClothingOuterClothingBase
id: CP14ClothingOuterClothingFish
name: fish suit
description: smells horible....
description: Smells horible....
components:
- type: Sprite
sprite: _CP14/Clothing/OuterClothing/fish_suit.rsi
@@ -53,3 +56,77 @@
- type: FactionClothing
faction: CP14Fishies
- type: entity
parent: CP14ClothingOuterClothingBase
id: CP14ClothingOuterClothingChainmail
name: chainmail
description: Ringed armour made of many small metal rings.
components:
- type: Sprite
sprite: _CP14/Clothing/OuterClothing/chainmail.rsi
- type: Clothing
sprite: _CP14/Clothing/OuterClothing/chainmail.rsi
- type: Armor
modifiers:
coefficients:
Blunt: 0.90
Slash: 0.80
Piercing: 0.90
- type: ClothingSpeedModifier
walkModifier: 0.95
sprintModifier: 0.95
- type: CP14MagicManacostModify
globalModifier: 1.1
- type: PhysicalComposition
materialComposition:
CP14Iron: 60
- type: entity
parent: CP14ClothingOuterClothingBase
id: CP14ClothingOuterClothingCuirass
name: cuirass
description: Light armour plate on the chest, little protection, little heaviness.
components:
- type: Sprite
sprite: _CP14/Clothing/OuterClothing/cuirass.rsi
- type: Clothing
sprite: _CP14/Clothing/OuterClothing/cuirass.rsi
- type: Armor
modifiers:
coefficients:
Blunt: 0.80
Slash: 0.90
Piercing: 0.80
- type: ClothingSpeedModifier
walkModifier: 0.95
sprintModifier: 0.95
- type: CP14MagicManacostModify
globalModifier: 1.15
- type: PhysicalComposition
materialComposition:
CP14Iron: 60
- type: entity
parent: CP14ClothingOuterClothingBase
id: CP14ClothingOuterClothingInfantryCuirass
name: infantry cuirass
description: Heavy armour for strong creatures. It is not easy to wear, but the protection is sometimes worth it.
components:
- type: Sprite
sprite: _CP14/Clothing/OuterClothing/infantry_cuirass.rsi
- type: Clothing
sprite: _CP14/Clothing/OuterClothing/infantry_cuirass.rsi
- type: Armor
modifiers:
coefficients:
Blunt: 0.75
Slash: 0.80
Piercing: 0.75
- type: ClothingSpeedModifier
walkModifier: 0.90
sprintModifier: 0.90
- type: CP14MagicManacostModify
globalModifier: 1.2
- type: PhysicalComposition
materialComposition:
CP14Iron: 90

View File

@@ -164,4 +164,40 @@
service: !type:CP14BuyItemsService
product: CP14BowCombat
count: 1
priceMarkup: 3
priceMarkup: 3
- type: cp14TradingPosition
id: CP14ClothingOuterClothingChainmail
faction: HelmirChild
uiPosition: 16
priceMarkup: 3
icon:
sprite: _CP14/Clothing/OuterClothing/chainmail.rsi
state: icon
service: !type:CP14BuyItemsService
product: CP14ClothingOuterClothingChainmail
count: 1
- type: cp14TradingPosition
id: CP14ClothingOuterClothingCuirass
faction: HelmirChild
uiPosition: 17
priceMarkup: 3
icon:
sprite: _CP14/Clothing/OuterClothing/cuirass.rsi
state: icon
service: !type:CP14BuyItemsService
product: CP14ClothingOuterClothingCuirass
count: 1
- type: cp14TradingPosition
id: CP14ClothingOuterClothingInfantryCuirass
faction: HelmirChild
uiPosition: 18
priceMarkup: 3
icon:
sprite: _CP14/Clothing/OuterClothing/infantry_cuirass.rsi
state: icon
service: !type:CP14BuyItemsService
product: CP14ClothingOuterClothingInfantryCuirass
count: 1