Flipped caps real (#24961)
* Flipped caps real * oops * whoops * flip not fold * fix formatting * cargosoft formatting
@@ -17,4 +17,17 @@ public sealed partial class FoldableClothingComponent : Component
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField]
|
[DataField]
|
||||||
public SlotFlags? UnfoldedSlots;
|
public SlotFlags? UnfoldedSlots;
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// What equipped prefix does this have while in folded form?
|
||||||
|
/// </summary>
|
||||||
|
[DataField]
|
||||||
|
public string? FoldedEquippedPrefix;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// What held prefix does this have while in folded form?
|
||||||
|
/// </summary>
|
||||||
|
[DataField]
|
||||||
|
public string? FoldedHeldPrefix;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
using Content.Shared.Clothing.Components;
|
using Content.Shared.Clothing.Components;
|
||||||
using Content.Shared.Foldable;
|
using Content.Shared.Foldable;
|
||||||
using Content.Shared.Inventory;
|
using Content.Shared.Inventory;
|
||||||
|
using Content.Shared.Item;
|
||||||
|
|
||||||
namespace Content.Shared.Clothing.EntitySystems;
|
namespace Content.Shared.Clothing.EntitySystems;
|
||||||
|
|
||||||
@@ -8,6 +9,7 @@ public sealed class FoldableClothingSystem : EntitySystem
|
|||||||
{
|
{
|
||||||
[Dependency] private readonly ClothingSystem _clothingSystem = default!;
|
[Dependency] private readonly ClothingSystem _clothingSystem = default!;
|
||||||
[Dependency] private readonly InventorySystem _inventorySystem = default!;
|
[Dependency] private readonly InventorySystem _inventorySystem = default!;
|
||||||
|
[Dependency] private readonly SharedItemSystem _itemSystem = default!;
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
@@ -31,12 +33,32 @@ public sealed class FoldableClothingSystem : EntitySystem
|
|||||||
|
|
||||||
private void OnFolded(Entity<FoldableClothingComponent> ent, ref FoldedEvent args)
|
private void OnFolded(Entity<FoldableClothingComponent> ent, ref FoldedEvent args)
|
||||||
{
|
{
|
||||||
if (TryComp<ClothingComponent>(ent.Owner, out var clothingComp))
|
if (TryComp<ClothingComponent>(ent.Owner, out var clothingComp) &&
|
||||||
|
TryComp<ItemComponent>(ent.Owner, out var itemComp))
|
||||||
{
|
{
|
||||||
if (args.IsFolded && ent.Comp.FoldedSlots.HasValue)
|
if (args.IsFolded)
|
||||||
_clothingSystem.SetSlots(ent.Owner, ent.Comp.FoldedSlots.Value, clothingComp);
|
{
|
||||||
else if (!args.IsFolded && ent.Comp.UnfoldedSlots.HasValue)
|
if (ent.Comp.FoldedSlots.HasValue)
|
||||||
_clothingSystem.SetSlots(ent.Owner, ent.Comp.UnfoldedSlots.Value, clothingComp);
|
_clothingSystem.SetSlots(ent.Owner, ent.Comp.FoldedSlots.Value, clothingComp);
|
||||||
|
|
||||||
|
if (ent.Comp.FoldedEquippedPrefix != null)
|
||||||
|
_clothingSystem.SetEquippedPrefix(ent.Owner, ent.Comp.FoldedEquippedPrefix, clothingComp);
|
||||||
|
|
||||||
|
if (ent.Comp.FoldedHeldPrefix != null)
|
||||||
|
_itemSystem.SetHeldPrefix(ent.Owner, ent.Comp.FoldedHeldPrefix, false, itemComp);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (ent.Comp.UnfoldedSlots.HasValue)
|
||||||
|
_clothingSystem.SetSlots(ent.Owner, ent.Comp.UnfoldedSlots.Value, clothingComp);
|
||||||
|
|
||||||
|
if (ent.Comp.FoldedEquippedPrefix != null)
|
||||||
|
_clothingSystem.SetEquippedPrefix(ent.Owner, null, clothingComp);
|
||||||
|
|
||||||
|
if (ent.Comp.FoldedHeldPrefix != null)
|
||||||
|
_itemSystem.SetHeldPrefix(ent.Owner, null, false, itemComp);
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,4 +17,10 @@ public sealed partial class FoldableComponent : Component
|
|||||||
|
|
||||||
[DataField]
|
[DataField]
|
||||||
public bool CanFoldInsideContainer = false;
|
public bool CanFoldInsideContainer = false;
|
||||||
|
|
||||||
|
[DataField]
|
||||||
|
public LocId UnfoldVerbText = "unfold-verb";
|
||||||
|
|
||||||
|
[DataField]
|
||||||
|
public LocId FoldVerbText = "fold-verb";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ public sealed class FoldableSystem : EntitySystem
|
|||||||
AlternativeVerb verb = new()
|
AlternativeVerb verb = new()
|
||||||
{
|
{
|
||||||
Act = () => TryToggleFold(uid, component),
|
Act = () => TryToggleFold(uid, component),
|
||||||
Text = component.IsFolded ? Loc.GetString("unfold-verb") : Loc.GetString("fold-verb"),
|
Text = component.IsFolded ? Loc.GetString(component.UnfoldVerbText) : Loc.GetString(component.FoldVerbText),
|
||||||
Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/fold.svg.192dpi.png")),
|
Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/fold.svg.192dpi.png")),
|
||||||
|
|
||||||
// If the object is unfolded and they click it, they want to fold it, if it's folded, they want to pick it up
|
// If the object is unfolded and they click it, they want to fold it, if it's folded, they want to pick it up
|
||||||
|
|||||||
@@ -3,3 +3,5 @@
|
|||||||
foldable-deploy-fail = You can't deploy the {$object} here.
|
foldable-deploy-fail = You can't deploy the {$object} here.
|
||||||
fold-verb = Fold
|
fold-verb = Fold
|
||||||
unfold-verb = Unfold
|
unfold-verb = Unfold
|
||||||
|
|
||||||
|
fold-flip-verb = Flip
|
||||||
@@ -1,5 +1,47 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadBaseButcherable, BaseFoldable]
|
||||||
|
id: ClothingHeadHeadHatBaseFlippable
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Appearance
|
||||||
|
- type: Foldable
|
||||||
|
canFoldInsideContainer: true
|
||||||
|
unfoldVerbText: fold-flip-verb
|
||||||
|
foldVerbText: fold-flip-verb
|
||||||
|
- type: FoldableClothing
|
||||||
|
foldedEquippedPrefix: flipped
|
||||||
|
foldedHeldPrefix: flipped
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
map: [ "unfoldedLayer" ]
|
||||||
|
- state: icon_flipped
|
||||||
|
map: ["foldedLayer"]
|
||||||
|
visible: false
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
|
id: ClothingHeadHeadHatBaseFlipped
|
||||||
|
suffix: flipped
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Foldable
|
||||||
|
folded: true
|
||||||
|
- type: Clothing
|
||||||
|
equippedPrefix: flipped
|
||||||
|
- type: Item
|
||||||
|
heldPrefix: flipped
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
map: [ "unfoldedLayer" ]
|
||||||
|
visible: false
|
||||||
|
- state: icon_flipped
|
||||||
|
map: ["foldedLayer"]
|
||||||
|
visible: true
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatBluesoft
|
id: ClothingHeadHatBluesoft
|
||||||
name: blue cap
|
name: blue cap
|
||||||
description: "It's a baseball hat in a tasteless blue colour."
|
description: "It's a baseball hat in a tasteless blue colour."
|
||||||
@@ -10,18 +52,12 @@
|
|||||||
sprite: Clothing/Head/Soft/bluesoft.rsi
|
sprite: Clothing/Head/Soft/bluesoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatBluesoft]
|
||||||
id: ClothingHeadHatBluesoftFlipped
|
id: ClothingHeadHatBluesoftFlipped
|
||||||
name: blue cap flipped
|
name: blue cap
|
||||||
description: "It's a baseball hat in a tasteless blue colour. Flipped."
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/bluesoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/bluesoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatCargosoft
|
id: ClothingHeadHatCargosoft
|
||||||
name: cargo cap
|
name: cargo cap
|
||||||
description: "It's a baseball hat painted in Cargo colours."
|
description: "It's a baseball hat painted in Cargo colours."
|
||||||
@@ -37,18 +73,18 @@
|
|||||||
- WhitelistChameleon
|
- WhitelistChameleon
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatCargosoft]
|
||||||
id: ClothingHeadHatCargosoftFlipped
|
id: ClothingHeadHatCargosoftFlipped
|
||||||
name: cargo cap flipped
|
name: cargo cap
|
||||||
description: "It's a baseball hat painted in Cargo colours. Flipped."
|
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Tag
|
||||||
sprite: Clothing/Head/Soft/cargosoft_flipped.rsi
|
tags:
|
||||||
- type: Clothing
|
- ClothMade
|
||||||
sprite: Clothing/Head/Soft/cargosoft_flipped.rsi
|
- HamsterWearable
|
||||||
|
- WhitelistChameleon
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatQMsoft
|
id: ClothingHeadHatQMsoft
|
||||||
name: quartermaster's cap
|
name: quartermaster's cap
|
||||||
description: "It's a baseball hat painted in the Quartermaster's colors."
|
description: "It's a baseball hat painted in the Quartermaster's colors."
|
||||||
@@ -59,18 +95,12 @@
|
|||||||
sprite: Clothing/Head/Soft/qmsoft.rsi
|
sprite: Clothing/Head/Soft/qmsoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatQMsoft]
|
||||||
id: ClothingHeadHatQMsoftFlipped
|
id: ClothingHeadHatQMsoftFlipped
|
||||||
name: quartermaster's cap flipped
|
name: quartermaster's cap
|
||||||
description: "It's a baseball hat painted in the Quartermaster's colors. Flipped."
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/qmsoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/qmsoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatCorpsoft
|
id: ClothingHeadHatCorpsoft
|
||||||
name: corporate cap
|
name: corporate cap
|
||||||
description: A baseball bat in corporation colors.
|
description: A baseball bat in corporation colors.
|
||||||
@@ -81,18 +111,12 @@
|
|||||||
sprite: Clothing/Head/Soft/corpsoft.rsi
|
sprite: Clothing/Head/Soft/corpsoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatCorpsoft]
|
||||||
id: ClothingHeadHatCorpsoftFlipped
|
id: ClothingHeadHatCorpsoftFlipped
|
||||||
name: corporate cap flipped
|
name: corporate cap
|
||||||
description: A baseball bat in corporation colors. Flipped.
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/corpsoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/corpsoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatGreensoft
|
id: ClothingHeadHatGreensoft
|
||||||
name: green cap
|
name: green cap
|
||||||
description: "It's a baseball hat in a tasteless green colour."
|
description: "It's a baseball hat in a tasteless green colour."
|
||||||
@@ -103,18 +127,12 @@
|
|||||||
sprite: Clothing/Head/Soft/greensoft.rsi
|
sprite: Clothing/Head/Soft/greensoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatGreensoft]
|
||||||
id: ClothingHeadHatGreensoftFlipped
|
id: ClothingHeadHatGreensoftFlipped
|
||||||
name: green cap flipped
|
name: green cap
|
||||||
description: "It's a baseball hat in a tasteless green colour. Flipped."
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/greensoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/greensoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatBlacksoft
|
id: ClothingHeadHatBlacksoft
|
||||||
name: black cap
|
name: black cap
|
||||||
description: "It's a baseball hat in a tasteless black colour."
|
description: "It's a baseball hat in a tasteless black colour."
|
||||||
@@ -125,18 +143,12 @@
|
|||||||
sprite: Clothing/Head/Soft/blacksoft.rsi
|
sprite: Clothing/Head/Soft/blacksoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatBlacksoft]
|
||||||
id: ClothingHeadHatBlacksoftFlipped
|
id: ClothingHeadHatBlacksoftFlipped
|
||||||
name: black cap flipped
|
name: black cap
|
||||||
description: "It's a baseball hat in a tasteless black colour. Flipped."
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/blacksoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/blacksoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatGreysoft
|
id: ClothingHeadHatGreysoft
|
||||||
name: grey cap
|
name: grey cap
|
||||||
description: "It's a baseball hat in a tasteless grey colour."
|
description: "It's a baseball hat in a tasteless grey colour."
|
||||||
@@ -147,18 +159,12 @@
|
|||||||
sprite: Clothing/Head/Soft/greysoft.rsi
|
sprite: Clothing/Head/Soft/greysoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatGreysoft]
|
||||||
id: ClothingHeadHatGreysoftFlipped
|
id: ClothingHeadHatGreysoftFlipped
|
||||||
name: grey cap flipped
|
name: grey cap
|
||||||
description: "It's a baseball hat in a tasteless grey colour. Flipped."
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/greysoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/greysoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatMimesoft
|
id: ClothingHeadHatMimesoft
|
||||||
name: mime cap
|
name: mime cap
|
||||||
description: "It's a baseball hat in a tasteless white colour."
|
description: "It's a baseball hat in a tasteless white colour."
|
||||||
@@ -169,18 +175,12 @@
|
|||||||
sprite: Clothing/Head/Soft/mimesoft.rsi
|
sprite: Clothing/Head/Soft/mimesoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatMimesoft]
|
||||||
id: ClothingHeadHatMimesoftFlipped
|
id: ClothingHeadHatMimesoftFlipped
|
||||||
name: mime cap flipped
|
name: mime cap
|
||||||
description: It's a baseball hat in a tasteless white colour. Flipped.
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/mimesoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/mimesoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatOrangesoft
|
id: ClothingHeadHatOrangesoft
|
||||||
name: orange cap
|
name: orange cap
|
||||||
description: It's a baseball hat in a good-looking orange colour.
|
description: It's a baseball hat in a good-looking orange colour.
|
||||||
@@ -191,18 +191,12 @@
|
|||||||
sprite: Clothing/Head/Soft/orangesoft.rsi
|
sprite: Clothing/Head/Soft/orangesoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatOrangesoft]
|
||||||
id: ClothingHeadHatOrangesoftFlipped
|
id: ClothingHeadHatOrangesoftFlipped
|
||||||
name: orange cap flipped
|
name: orange cap
|
||||||
description: It's a baseball hat in a good-looking orange colour. Flipped.
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/orangesoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/orangesoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatPurplesoft
|
id: ClothingHeadHatPurplesoft
|
||||||
name: purple cap
|
name: purple cap
|
||||||
description: It's a baseball hat in a tasteless purple colour.
|
description: It's a baseball hat in a tasteless purple colour.
|
||||||
@@ -218,18 +212,18 @@
|
|||||||
- WhitelistChameleon
|
- WhitelistChameleon
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatPurplesoft]
|
||||||
id: ClothingHeadHatPurplesoftFlipped
|
id: ClothingHeadHatPurplesoftFlipped
|
||||||
name: purple cap flipped
|
name: purple cap
|
||||||
description: It's a baseball hat in a tasteless purple colour. Flipped.
|
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Tag
|
||||||
sprite: Clothing/Head/Soft/purplesoft_flipped.rsi
|
tags:
|
||||||
- type: Clothing
|
- ClothMade
|
||||||
sprite: Clothing/Head/Soft/purplesoft_flipped.rsi
|
- HamsterWearable
|
||||||
|
- WhitelistChameleon
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatRedsoft
|
id: ClothingHeadHatRedsoft
|
||||||
name: red cap
|
name: red cap
|
||||||
description: It's a baseball hat in a tasteless red colour.
|
description: It's a baseball hat in a tasteless red colour.
|
||||||
@@ -240,18 +234,12 @@
|
|||||||
sprite: Clothing/Head/Soft/redsoft.rsi
|
sprite: Clothing/Head/Soft/redsoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatRedsoft]
|
||||||
id: ClothingHeadHatRedsoftFlipped
|
id: ClothingHeadHatRedsoftFlipped
|
||||||
name: red cap flipped
|
name: red cap
|
||||||
description: It's a baseball hat in a tasteless purple colour. Flipped.
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/redsoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/redsoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatSecsoft
|
id: ClothingHeadHatSecsoft
|
||||||
name: security cap
|
name: security cap
|
||||||
description: It's a robust baseball hat in tasteful red colour.
|
description: It's a robust baseball hat in tasteful red colour.
|
||||||
@@ -262,18 +250,12 @@
|
|||||||
sprite: Clothing/Head/Soft/secsoft.rsi
|
sprite: Clothing/Head/Soft/secsoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatSecsoft]
|
||||||
id: ClothingHeadHatSecsoftFlipped
|
id: ClothingHeadHatSecsoftFlipped
|
||||||
name: security cap flipped
|
name: security cap
|
||||||
description: It's a robust baseball hat in tasteful red colour. Flipped.
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/secsoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/secsoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatYellowsoft
|
id: ClothingHeadHatYellowsoft
|
||||||
name: yellow cap
|
name: yellow cap
|
||||||
description: A yellow baseball hat.
|
description: A yellow baseball hat.
|
||||||
@@ -284,20 +266,14 @@
|
|||||||
sprite: Clothing/Head/Soft/yellowsoft.rsi
|
sprite: Clothing/Head/Soft/yellowsoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatYellowsoft]
|
||||||
id: ClothingHeadHatYellowsoftFlipped
|
id: ClothingHeadHatYellowsoftFlipped
|
||||||
name: yellow cap flipped
|
name: yellow cap
|
||||||
description: A yellow flipped baseball hat.
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/yellowsoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/yellowsoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatBizarreSoft
|
id: ClothingHeadHatBizarreSoft
|
||||||
name: troublemaker's soft
|
name: troublemaker's cap
|
||||||
description: A truly.. bizarre accessory.
|
description: A truly.. bizarre accessory.
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
@@ -306,18 +282,12 @@
|
|||||||
sprite: Clothing/Head/Soft/bizarresoft.rsi
|
sprite: Clothing/Head/Soft/bizarresoft.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatBizarreSoft]
|
||||||
id: ClothingHeadHatBizarreSoftFlipped
|
id: ClothingHeadHatBizarreSoftFlipped
|
||||||
name: troublemaker's soft flipped
|
name: troublemaker's cap
|
||||||
description: A truly.. bizarre accessory, flipped.
|
|
||||||
components:
|
|
||||||
- type: Sprite
|
|
||||||
sprite: Clothing/Head/Soft/bizarresoft_flipped.rsi
|
|
||||||
- type: Clothing
|
|
||||||
sprite: Clothing/Head/Soft/bizarresoft_flipped.rsi
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: ClothingHeadHeadHatBaseFlippable
|
||||||
id: ClothingHeadHatParamedicsoft
|
id: ClothingHeadHatParamedicsoft
|
||||||
name: paramedic cap
|
name: paramedic cap
|
||||||
description: "It's a paramedic's baseball hat with a medical logo."
|
description: "It's a paramedic's baseball hat with a medical logo."
|
||||||
@@ -333,12 +303,12 @@
|
|||||||
- WhitelistChameleon
|
- WhitelistChameleon
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: ClothingHeadBaseButcherable
|
parent: [ClothingHeadHeadHatBaseFlipped, ClothingHeadHatParamedicsoft]
|
||||||
id: ClothingHeadHatParamedicsoftFlipped
|
id: ClothingHeadHatParamedicsoftFlipped
|
||||||
name: paramedic cap flipped
|
name: paramedic cap
|
||||||
description: "It's a paramedic's baseball hat with a medical logo. Flipped."
|
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Tag
|
||||||
sprite: Clothing/Head/Soft/paramedicsoft_flipped.rsi
|
tags:
|
||||||
- type: Clothing
|
- ClothMade
|
||||||
sprite: Clothing/Head/Soft/paramedicsoft_flipped.rsi
|
- HamsterWearable
|
||||||
|
- WhitelistChameleon
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 223 B After Width: | Height: | Size: 223 B |
|
Before Width: | Height: | Size: 211 B After Width: | Height: | Size: 211 B |
|
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
|
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 231 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-NC-SA-3.0",
|
|
||||||
"copyright": "Taken from civstation at commit https://github.com/Civ13/Civ13/commit/ec52cbb95d59b717d4d8c480b35ac133e5b58088#diff-fba188fb2db5d16e5d41985147336a8f96085f761b903e016fffd869b63e497d",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 423 B |
|
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 389 B |
|
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 367 B |
|
Before Width: | Height: | Size: 221 B After Width: | Height: | Size: 221 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 364 B After Width: | Height: | Size: 364 B |
|
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
|
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
|
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 390 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
After Width: | Height: | Size: 375 B |
|
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 293 B |
|
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 276 B |
|
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 277 B |
|
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 258 B |
@@ -10,21 +10,40 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET-hamster",
|
"name": "equipped-HELMET-hamster",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET-hamster",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "inhand-left",
|
"name": "inhand-left",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, repaletted for Space Station 14",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
|
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
|
Before Width: | Height: | Size: 424 B After Width: | Height: | Size: 424 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 420 B After Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 378 B After Width: | Height: | Size: 378 B |
|
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
|
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 396 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 445 B After Width: | Height: | Size: 445 B |
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
|
Before Width: | Height: | Size: 388 B After Width: | Height: | Size: 388 B |
|
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 420 B After Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 386 B After Width: | Height: | Size: 386 B |
|
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 217 B After Width: | Height: | Size: 217 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 422 B After Width: | Height: | Size: 422 B |
|
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 383 B |
|
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 389 B |
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 388 B |
|
After Width: | Height: | Size: 399 B |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -10,21 +10,40 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET-hamster",
|
"name": "equipped-HELMET-hamster",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET-hamster",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "inhand-left",
|
"name": "inhand-left",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Made by MagnusCrowe (Github) for SS14",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
After Width: | Height: | Size: 406 B |
|
Before Width: | Height: | Size: 469 B After Width: | Height: | Size: 469 B |
|
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 423 B |
|
Before Width: | Height: | Size: 420 B After Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
@@ -10,21 +10,40 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET-hamster",
|
"name": "equipped-HELMET-hamster",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET-hamster",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "inhand-left",
|
"name": "inhand-left",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 293 B |
|
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 276 B |
|
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 277 B |
|
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 258 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
|
Before Width: | Height: | Size: 394 B After Width: | Height: | Size: 394 B |
|
Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 402 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
|
Before Width: | Height: | Size: 394 B After Width: | Height: | Size: 394 B |
|
Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 402 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 486 B |
|
Before Width: | Height: | Size: 450 B After Width: | Height: | Size: 450 B |
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 432 B |
|
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_flipped"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-HELMET",
|
"name": "equipped-HELMET",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
@@ -21,6 +24,18 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-equipped-HELMET",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flipped-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-SA-3.0",
|
|
||||||
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
|
|
||||||
"size": {
|
|
||||||
"x": 32,
|
|
||||||
"y": 32
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "icon"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "equipped-HELMET",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||