mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
The Magmantle! (#2295)
<!-- This is a semi-strict format, you can add/remove sections as needed but the order/format should be kept the same Remove these comments before submitting --> # Description <!-- Explain this PR in as much detail as applicable Some example prompts to consider: How might this affect the game? The codebase? What might be some alternatives to this? How/Who does this benefit/hurt [the game/codebase]? --> This PR adds the Magmantle, a mantle that functions like magboots, but slightly worse (like 15% more slowdown, but it does provide 20% temperature protection like winter boots or scarves). Its intended for species without the feet slot, which are harpy, diona and arachne. It is available in the species tab of loadouts, for 6 points. Only Security, Command, Dignitaries, Engineering, Salvies and Parameds can take it, if they are a harpy, diona or arachne. --- <!-- This is default collapsed, readers click to expand it and see all your media The PR media section can get very large at times, so this is a good way to keep it clean The title is written using HTML tags The title must be within the <summary> tags or you won't see it --> <details><summary><h1>Media</h1></summary> <p>    </p> </details> --- # Changelog <!-- You can add an author after the `🆑` to change the name that appears in the changelog (ex: `🆑 Death`) Leaving it blank will default to your GitHub display name This includes all available types for the changelog --> 🆑 - add: Added the Magmantle, a mantle that functions as worse magboots on the neck slot (15% more slow, but they give 20% temperature protection like winter boots or scarves). It is available in the species section of loadouts, for all the species that do not have a feet slot. (Harpy, Diona, Arachne) --------- Co-authored-by: VMSolidus <evilexecutive@gmail.com> (cherry picked from commit 2e0bc38c63ac58ec70735287bd0a6954cea99562)
This commit is contained in:
@@ -50,3 +50,28 @@
|
||||
- IPC
|
||||
items:
|
||||
- PowerCellHigh
|
||||
|
||||
- type: loadout
|
||||
id: LoadoutSpeciesMantleMag
|
||||
category: Species
|
||||
cost: 6
|
||||
requirements:
|
||||
- !type:CharacterSpeciesRequirement
|
||||
species:
|
||||
- Harpy
|
||||
- Diona
|
||||
- Arachne
|
||||
- !type:CharacterLogicOrRequirement
|
||||
requirements:
|
||||
- !type:CharacterDepartmentRequirement
|
||||
departments:
|
||||
- Engineering
|
||||
- Command
|
||||
- Dignitary
|
||||
- Security
|
||||
- !type:CharacterJobRequirement
|
||||
jobs:
|
||||
- Paramedic
|
||||
- SalvageSpecialist
|
||||
items:
|
||||
- ClothingNeckMantleMag
|
||||
@@ -0,0 +1,39 @@
|
||||
- type: entity
|
||||
parent: [ClothingNeckBase, BaseIntegratedMagboot]
|
||||
id: ClothingNeckMantleMag
|
||||
name: magmantle
|
||||
description: Invented by a dynamic duo of harpies, this mantle creates a localized gravity field, enabling the effects of magboots without the boot! However, the gravity field is cumbersome to move through, making the magnetic mantle somewhat inferior to its predecessor. However, it does come with a wool lining. Cozy!
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: _EE/Clothing/Neck/Mantles/magmantle.rsi
|
||||
layers:
|
||||
- state: icon
|
||||
map: [ "enum.ToggleVisuals.Layer" ]
|
||||
- type: Clothing
|
||||
sprite: _EE/Clothing/Neck/Mantles/magmantle.rsi
|
||||
- type: TemperatureProtection
|
||||
coefficient: 0.8 # equivalent to winter boots, scarves
|
||||
- type: ToggleClothing
|
||||
action: ActionToggleMagmantle
|
||||
- type: Magboots
|
||||
activeWalkModifier: 0.7
|
||||
activeSprintModifier: 0.65
|
||||
changeClothingVisuals: true
|
||||
slot: neck
|
||||
- type: Appearance
|
||||
- type: GenericVisualizer
|
||||
visuals:
|
||||
enum.ToggleVisuals.Toggled:
|
||||
enum.ToggleVisuals.Layer:
|
||||
True: {state: icon-on}
|
||||
False: {state: icon}
|
||||
|
||||
- type: entity
|
||||
id: ActionToggleMagmantle
|
||||
name: Toggle Magmantle
|
||||
description: Toggles the personal gravity field on and off.
|
||||
categories: [ HideSpawnMenu ]
|
||||
components:
|
||||
- type: InstantAction
|
||||
itemIconStyle: BigItem
|
||||
event: !type:ToggleActionEvent
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 929 B |
Binary file not shown.
|
After Width: | Height: | Size: 421 B |
Binary file not shown.
|
After Width: | Height: | Size: 427 B |
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "made by emisse for ss14 and recolored, modified by quantoo2",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-NECK",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "on-equipped-NECK",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
},
|
||||
{
|
||||
"name": "icon-on"
|
||||
}
|
||||
]
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 957 B |
Reference in New Issue
Block a user