[feature] ТРУСЫ (#12)
* Трусы и бра * Тэги и тэмплейты инвентаря * Спрайты * Тэги и темплейт * Флаги * Перевод и прототипы * Иконки * Добавил слои * Исправил циферки во флагах * НОСКИ * Трусы всем * Блять * СПРАЙТЫ БРА * Насрано * х2 * Примерно миллион трусов * fff * Носки(дохуя) * Сука * ааааааааааааааааааа * Ебаные трусы блять * Фикс иконок --------- Co-authored-by: Mona Hmiza <>
@@ -43,6 +43,11 @@ public sealed class ClientClothingSystem : ClothingSystem
|
||||
{"pocket1", "POCKET1"},
|
||||
{"pocket2", "POCKET2"},
|
||||
{"suitstorage", "SUITSTORAGE"},
|
||||
//WHITE EDIT
|
||||
{"socks", "SOCKS"},
|
||||
{"underweart", "UNDERWEART"},
|
||||
{"underwearb", "UNDERWEARB"},
|
||||
// WHITE EDIT
|
||||
};
|
||||
|
||||
[Dependency] private readonly IResourceCache _cache = default!;
|
||||
|
||||
@@ -26,5 +26,8 @@ public enum SlotFlags
|
||||
LEGS = 1 << 13,
|
||||
FEET = 1 << 14,
|
||||
SUITSTORAGE = 1 << 15,
|
||||
UNDERWEART = 1 << 16, // White
|
||||
UNDERWEARB = 1 << 17, // White
|
||||
SOCKS = 1 << 18, // White
|
||||
All = ~NONE,
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
using Content.Shared.Humanoid;
|
||||
using Content.Shared.Preferences;
|
||||
using Robust.Shared.Prototypes;
|
||||
|
||||
@@ -23,6 +24,13 @@ namespace Content.Shared.Roles
|
||||
|
||||
[DataField]
|
||||
public List<EntProtoId> Inhand = new(0);
|
||||
// White underwear
|
||||
[DataField("underweart")]
|
||||
private string _underweart = string.Empty;
|
||||
|
||||
[DataField("underwearb")]
|
||||
private string _underwearb = string.Empty;
|
||||
// White underwear end
|
||||
|
||||
[ViewVariables]
|
||||
[IdDataField]
|
||||
@@ -38,6 +46,12 @@ namespace Content.Shared.Roles
|
||||
return Satchel;
|
||||
if (slot == "back" && profile.Backpack == BackpackPreference.Duffelbag && !string.IsNullOrEmpty(Duffelbag))
|
||||
return Duffelbag;
|
||||
// White underwear
|
||||
if (slot == "underweart" && profile.Sex == Sex.Female && !string.IsNullOrEmpty(_underweart))
|
||||
return _underweart;
|
||||
if (slot == "underwearb" && profile.Sex == Sex.Female && !string.IsNullOrEmpty(_underwearb))
|
||||
return _underwearb;
|
||||
// White underwear end
|
||||
}
|
||||
|
||||
return Equipment.TryGetValue(slot, out var equipment) ? equipment : string.Empty;
|
||||
|
||||
78
Resources/Locale/ru-RU/clothing/socks.ftl
Normal file
@@ -0,0 +1,78 @@
|
||||
ent-ClothingUnderwearSocksBeeKnee = носки
|
||||
.desc = Желто-черные.
|
||||
|
||||
ent-ClothingUnderwearSocksBeeNorm = носки
|
||||
.desc = Желто-черные.
|
||||
|
||||
ent-ClothingUnderwearSocksBeeThigh = носки
|
||||
.desc = Желто-черные.
|
||||
|
||||
ent-ClothingUnderwearSocksFishnet = чулки
|
||||
.desc = Сетчатые.
|
||||
|
||||
ent-ClothingUnderwearSocksGarter = носки
|
||||
.desc = С подтяжками.
|
||||
|
||||
ent-ClothingUnderwearSocksPantyhose = колготки
|
||||
.desc = Прозрачные.
|
||||
|
||||
ent-ClothingUnderwearSocksPantyhoseRipped = колготки
|
||||
.desc = Порванные.
|
||||
|
||||
ent-ClothingUnderwearSocksRainbowKnee = носки
|
||||
.desc = Радужные.
|
||||
|
||||
ent-ClothingUnderwearSocksRainbowThigh = носки
|
||||
.desc = Радужные.
|
||||
|
||||
ent-ClothingUnderwearSocksRainbowThigh = носки
|
||||
.desc = Радужные.
|
||||
|
||||
ent-ClothingUnderwearSocksHigh = высокие носки
|
||||
.desc = Белые.
|
||||
|
||||
ent-ClothingUnderwearSocksNormal = носки
|
||||
.desc = Белые.
|
||||
|
||||
ent-ClothingUnderwearSocksShort = короткие носки
|
||||
.desc = Белые.
|
||||
|
||||
ent-ClothingUnderwearSocksThigh = чулки
|
||||
.desc = Прозрачные.
|
||||
|
||||
ent-ClothingUnderwearStockingsBlue = чулки
|
||||
.desc = Голубые.
|
||||
|
||||
ent-ClothingUnderwearStockingsCyan = чулки
|
||||
.desc = Циановые.
|
||||
|
||||
ent-ClothingUnderwearStockingsPink = чулки
|
||||
.desc = Розовые.
|
||||
|
||||
ent-ClothingUnderwearStockingsGreen = чулки
|
||||
.desc = Зеленые.
|
||||
|
||||
ent-ClothingUnderwearStockingsLightPink = чулки
|
||||
.desc = Светло-розовые.
|
||||
|
||||
ent-ClothingUnderwearStockingsLightOrange = чулки
|
||||
.desc = Оранжевые.
|
||||
|
||||
ent-ClothingUnderwearStockingsLightPurple = чулки
|
||||
.desc = Светло-фиолетовые.
|
||||
|
||||
ent-ClothingUnderwearStockingsLightYellow = чулки
|
||||
.desc = Желтые.
|
||||
|
||||
ent-ClothingUnderwearSocksStripedKnee = носки
|
||||
.desc = Черно-белые.
|
||||
|
||||
ent-ClothingUnderwearSocksStripedThigh = носки
|
||||
.desc = Черно-белые.
|
||||
|
||||
ent-ClothingUnderwearSocksThinKnee = носки
|
||||
.desc = Прозрачные.
|
||||
|
||||
ent-ClothingUnderwearSocksThinThigh = носки
|
||||
.desc = Прозрачные.
|
||||
|
||||
88
Resources/Locale/ru-RU/clothing/top.ftl
Normal file
@@ -0,0 +1,88 @@
|
||||
ent-ClothingUnderwearTopBraCap = бра
|
||||
.desc = Бра капитана.
|
||||
|
||||
ent-ClothingUnderwearTopBraCE = бра
|
||||
.desc = Бра старшего инженера.
|
||||
|
||||
ent-ClothingUnderwearTopBraCMO = бра
|
||||
.desc = Бра главного врача.
|
||||
|
||||
ent-ClothingUnderwearTopBraHOP = бра главы персонала
|
||||
.desc = Бра главы персонала.
|
||||
|
||||
ent-ClothingUnderwearTopBraHOS = бра
|
||||
.desc = Бра главы службы безопасности.
|
||||
|
||||
ent-ClothingUnderwearTopBraQM = бра
|
||||
.desc = Бра квартирмейстера.
|
||||
|
||||
ent-ClothingUnderwearTopBraRD = бра
|
||||
.desc = Бра научного руководителя.
|
||||
|
||||
ent-ClothingUnderwearTopBraWhite = бра
|
||||
.desc = Белый лифчик.
|
||||
|
||||
ent-ClothingUnderwearTopBraSports = спортивное бра
|
||||
.desc = Белый лифчик для занятий спортом.
|
||||
|
||||
ent-ClothingUnderwearTopBraSportsAlternative = спортивное бра
|
||||
.desc = Белый лифчик для занятий спортом.
|
||||
|
||||
ent-ClothingUnderwearTopBraBeeKini = бра
|
||||
.desc = На этикетке написано "собственность РОЙ ПЧЕЛ"!
|
||||
|
||||
ent-ClothingUnderwearTopBraBinder = бра
|
||||
.desc = Утягивает.
|
||||
|
||||
ent-ClothingUnderwearTopBraBinderStrapless = бра
|
||||
.desc = Утягивает, да еще и без бретелек!
|
||||
|
||||
ent-ClothingUnderwearTopBraKinky = бра
|
||||
.desc = Эксцентричное...
|
||||
|
||||
ent-ClothingUnderwearTopBraNeko = бра
|
||||
.desc = Мяукает.
|
||||
|
||||
ent-ClothingUnderwearTopBraStrapless = бра
|
||||
.desc = Без бретелек.
|
||||
|
||||
ent-ClothingUnderwearTopBraStraplessAlt = бра
|
||||
.desc = Без бретелек.
|
||||
|
||||
ent-ClothingUnderwearTopBraSwimming = бра
|
||||
.desc = Для плавания.
|
||||
|
||||
ent-ClothingUnderwearTopBraSwimmingAlt = бра
|
||||
.desc = Для плавания.
|
||||
|
||||
ent-ClothingUnderwearTopBraThin = бра
|
||||
.desc = Тонкое.
|
||||
|
||||
ent-ClothingUnderwearTopFishnetBody = бра
|
||||
.desc = Сеточка.
|
||||
|
||||
ent-ClothingUnderwearTopFishnetBodyGloves = бра
|
||||
.desc = Сеточка с перчатками.
|
||||
|
||||
ent-ClothingUnderwearTopFishnetBodySleeves = бра
|
||||
.desc = Сеточка с рукавами.
|
||||
|
||||
ent-ClothingUnderwearTopBraHalterneck = бра
|
||||
.desc = С коротким вырезом.
|
||||
|
||||
ent-ClothingUnderwearTopBraShibari = бра
|
||||
.desc = Шибари.
|
||||
|
||||
ent-ClothingUnderwearTopBraShibariSleeves = бра
|
||||
.desc = Шибари с рукавами.
|
||||
|
||||
ent-ClothingUnderwearTopBraStriped = бра
|
||||
.desc = В полосочку.
|
||||
|
||||
ent-ClothingUnderwearTopBraTubetop = бра
|
||||
.desc = Трубчатый...
|
||||
|
||||
ent-ClothingUnderwearTopBraCow = бра
|
||||
.desc = Му-ууу.
|
||||
|
||||
|
||||
95
Resources/Locale/ru-RU/clothing/underwear.ftl
Normal file
@@ -0,0 +1,95 @@
|
||||
ent-ClothingUnderwearBottomPantiesWhite = трусики
|
||||
.desc = Белые.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersWhite = боксеры
|
||||
.desc = Белые.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersCap = боксеры
|
||||
.desc = Боксеры капитана.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersCE = боксеры
|
||||
.desc = Боксеры старшего инженера.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersCMO = боксеры
|
||||
.desc = Боксеры главного врача.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersHOP = боксеры
|
||||
.desc = Боксеры главы персонала.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersHOS = боксеры
|
||||
.desc = Боксеры главы службы безопасности.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersQM = боксеры
|
||||
.desc = Боксеры квартирмейстера.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersRD = боксеры
|
||||
.desc = Боксеры научного руководителя.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesCap = трусики
|
||||
.desc = Трусики капитана.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesCE = трусики
|
||||
.desc = Трусики старшего инженера.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesCMO = трусики
|
||||
.desc = Трусики главного врача.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesHOP = трусики
|
||||
.desc = Трусики главы персонала.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesHOS = трусики
|
||||
.desc = Трусики главы службы безопасности.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesQM = трусики
|
||||
.desc = Трусики квартирмейстера.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesRD = трусики
|
||||
.desc = Трусики научного руководителя.
|
||||
|
||||
ent-ClothingUnderwearBottomBeeShorts = шорты
|
||||
.desc = Пчелки...
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersHeart = боксеры
|
||||
.desc = С сердечками.
|
||||
|
||||
ent-ClothingUnderwearBottomBoxersStriped = боксеры
|
||||
.desc = В полосочку.
|
||||
|
||||
ent-ClothingUnderwearBottomBriefs = трусики
|
||||
.desc = Брифы.
|
||||
|
||||
ent-ClothingUnderwearBottomFishnetLower = трусики
|
||||
.desc = В сеточку.
|
||||
|
||||
ent-ClothingUnderwearBottomJockstrap = трусы
|
||||
.desc = Джоки.
|
||||
|
||||
ent-ClothingUnderwearBottomMankini = манкини
|
||||
.desc = Удобное.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesBeeKini = трусики
|
||||
.desc = Пчелки.
|
||||
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesKinky = трусики
|
||||
.desc = Эксцентричное...
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesNeko = трусики
|
||||
.desc = Мяу...
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesSlim = трусики
|
||||
.desc = Узкие.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesSwimming = трусики
|
||||
.desc = Для плаванья.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesThin = трусики
|
||||
.desc = Тоненькие.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesStripped = трусики
|
||||
.desc = В полосочку.
|
||||
|
||||
ent-ClothingUnderwearBottomPantiesThong = трусики
|
||||
.desc = Стринги.
|
||||
|
||||
|
||||
@@ -80,6 +80,78 @@
|
||||
ClothingHandsGlovesColorGreen: 2
|
||||
ClothingHandsGlovesColorOrange: 2
|
||||
ClothingHandsGlovesColorPurple: 2
|
||||
|
||||
#White bra start
|
||||
ClothingUnderwearTopBraWhite: 5
|
||||
ClothingUnderwearTopBraSports: 5
|
||||
ClothingUnderwearTopBraSportsAlternative: 5
|
||||
ClothingUnderwearTopBraBeeKini: 2
|
||||
ClothingUnderwearTopBraBinder: 2
|
||||
ClothingUnderwearTopBraBinderStrapless: 2
|
||||
ClothingUnderwearTopBraKinky: 2
|
||||
ClothingUnderwearTopBraNeko: 2
|
||||
ClothingUnderwearTopBraStrapless: 2
|
||||
ClothingUnderwearTopBraStraplessAlt: 2
|
||||
ClothingUnderwearTopBraSwimming: 2
|
||||
ClothingUnderwearTopBraSwimmingAlt: 2
|
||||
ClothingUnderwearTopBraThin: 2
|
||||
ClothingUnderwearTopFishnetBody: 1
|
||||
ClothingUnderwearTopFishnetBodyGloves: 1
|
||||
ClothingUnderwearTopFishnetBodySleeves: 1
|
||||
ClothingUnderwearTopBraHalterneck: 3
|
||||
ClothingUnderwearTopBraShibari: 1
|
||||
ClothingUnderwearTopBraShibariSleeves: 1
|
||||
ClothingUnderwearTopBraStriped: 1
|
||||
ClothingUnderwearTopBraTubetop: 2
|
||||
ClothingUnderwearTopCow: 1
|
||||
#white end
|
||||
|
||||
#White panties start
|
||||
ClothingUnderwearBottomBeeShorts: 2
|
||||
ClothingUnderwearBottomBoxersHeart: 2
|
||||
ClothingUnderwearBottomBoxersStriped: 2
|
||||
ClothingUnderwearBottomBriefs: 2
|
||||
ClothingUnderwearBottomFishnetLower: 1
|
||||
ClothingUnderwearBottomJockstrap: 2
|
||||
ClothingUnderwearBottomMankini: 2
|
||||
ClothingUnderwearBottomPantiesBeeKini: 2
|
||||
ClothingUnderwearBottomPantiesKinky: 1
|
||||
ClothingUnderwearBottomPantiesNeko: 2
|
||||
ClothingUnderwearBottomPantiesSlim: 2
|
||||
ClothingUnderwearBottomPantiesSwimming: 2
|
||||
ClothingUnderwearBottomPantiesThin: 1
|
||||
ClothingUnderwearBottomPantiesStripped: 2
|
||||
ClothingUnderwearBottomPantiesThong: 3
|
||||
#white end
|
||||
|
||||
#white socks start
|
||||
ClothingUnderwearSocksBeeKnee: 2
|
||||
ClothingUnderwearSocksBeeNorm: 2
|
||||
ClothingUnderwearSocksBeeThigh: 2
|
||||
ClothingUnderwearSocksFishnet: 1
|
||||
ClothingUnderwearSocksGarter: 1
|
||||
ClothingUnderwearSocksPantyhose: 1
|
||||
ClothingUnderwearSocksPantyhoseRipped: 1
|
||||
ClothingUnderwearSocksRainbowKnee: 2
|
||||
ClothingUnderwearSocksRainbowThigh: 2
|
||||
ClothingUnderwearSocksHigh: 5
|
||||
ClothingUnderwearSocksNormal: 5
|
||||
ClothingUnderwearSocksShort: 5
|
||||
ClothingUnderwearSocksThigh: 5
|
||||
ClothingUnderwearStockingsBlue: 2
|
||||
ClothingUnderwearStockingsCyan: 2
|
||||
ClothingUnderwearStockingsPink: 2
|
||||
ClothingUnderwearStockingsGreen: 2
|
||||
ClothingUnderwearStockingsLightPink: 2
|
||||
ClothingUnderwearStockingsLightOrange: 2
|
||||
ClothingUnderwearStockingsLightPurple: 2
|
||||
ClothingUnderwearStockingsLightYellow: 2
|
||||
ClothingUnderwearSocksStripedKnee: 2
|
||||
ClothingUnderwearSocksStripedThigh: 2
|
||||
ClothingUnderwearSocksThinKnee: 1
|
||||
ClothingUnderwearSocksThinThigh: 1
|
||||
# white end
|
||||
contrabandInventory:
|
||||
ClothingUniformJumpsuitTacticool: 1
|
||||
ClothingUniformJumpskirtTacticool: 1
|
||||
|
||||
|
||||
@@ -27,9 +27,12 @@
|
||||
sprite: Mobs/Customization/masking_helpers.rsi
|
||||
state: unisex_full
|
||||
visible: false
|
||||
- map: [ "underwearb" ] #White
|
||||
- map: [ "underweart" ] #White
|
||||
- map: [ "enum.HumanoidVisualLayers.LFoot" ]
|
||||
- map: [ "enum.HumanoidVisualLayers.RFoot" ]
|
||||
- map: [ "socks" ] #White
|
||||
- map: ["jumpsuit"]
|
||||
- map: ["enum.HumanoidVisualLayers.LFoot"]
|
||||
- map: ["enum.HumanoidVisualLayers.RFoot"]
|
||||
- map: ["enum.HumanoidVisualLayers.LHand"]
|
||||
- map: ["enum.HumanoidVisualLayers.RHand"]
|
||||
- map: [ "gloves" ]
|
||||
@@ -340,9 +343,12 @@
|
||||
sprite: Mobs/Customization/masking_helpers.rsi
|
||||
state: unisex_full
|
||||
visible: false
|
||||
- map: [ "underwearb" ] #White
|
||||
- map: [ "underweart" ] #White
|
||||
- map: [ "enum.HumanoidVisualLayers.LFoot" ]
|
||||
- map: [ "enum.HumanoidVisualLayers.RFoot" ]
|
||||
- map: [ "socks" ] #White
|
||||
- map: ["jumpsuit"]
|
||||
- map: ["enum.HumanoidVisualLayers.LFoot"]
|
||||
- map: ["enum.HumanoidVisualLayers.RFoot"]
|
||||
- map: ["enum.HumanoidVisualLayers.LHand"]
|
||||
- map: ["enum.HumanoidVisualLayers.RHand"]
|
||||
- map: ["enum.HumanoidVisualLayers.Handcuffs"]
|
||||
|
||||
@@ -8,6 +8,36 @@
|
||||
uiWindowPos: 1,0
|
||||
strippingWindowPos: 1,3
|
||||
displayName: Shoes
|
||||
- name: socks #WD slot
|
||||
slotTexture: socks
|
||||
slotFlags: SOCKS
|
||||
stripTime: 6
|
||||
uiWindowPos: 4,1
|
||||
strippingWindowPos: 3,3
|
||||
displayName: Socks
|
||||
whitelist:
|
||||
tags:
|
||||
- socks
|
||||
- name: underwearb #WD slot
|
||||
slotTexture: underwearb
|
||||
slotFlags: UNDERWEARB
|
||||
stripTime: 6
|
||||
uiWindowPos: 4,2
|
||||
strippingWindowPos: 3,2
|
||||
displayName: Panties
|
||||
whitelist:
|
||||
tags:
|
||||
- underwearb
|
||||
- name: underweart #WD slot
|
||||
slotTexture: underweart
|
||||
slotFlags: UNDERWEART
|
||||
stripTime: 6
|
||||
uiWindowPos: 4,3
|
||||
strippingWindowPos: 3,1
|
||||
displayName: Bra
|
||||
whitelist:
|
||||
tags:
|
||||
- underweart
|
||||
- name: jumpsuit
|
||||
slotTexture: uniform
|
||||
slotFlags: INNERCLOTHING
|
||||
@@ -114,3 +144,4 @@
|
||||
uiWindowPos: 3,0
|
||||
strippingWindowPos: 0,5
|
||||
displayName: Back
|
||||
|
||||
|
||||
@@ -22,6 +22,9 @@
|
||||
id: CargoPDA
|
||||
ears: ClothingHeadsetCargo
|
||||
pocket1: AppraisalTool
|
||||
innerClothingSkirt: ClothingUniformJumpskirtCargo
|
||||
satchel: ClothingBackpackSatchelCargoFilled
|
||||
duffelbag: ClothingBackpackDuffelCargoFilled
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtCargo
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -49,6 +49,9 @@
|
||||
ears: ClothingHeadsetQM
|
||||
belt: BoxFolderClipboard
|
||||
pocket1: AppraisalTool
|
||||
innerClothingSkirt: ClothingUniformJumpskirtQM
|
||||
underwearb: ClothingUnderwearBottomBoxersQM # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraQM # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesQM # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtQM
|
||||
satchel: ClothingBackpackSatchelQuartermasterFilled
|
||||
duffelbag: ClothingBackpackDuffelQuartermasterFilled
|
||||
|
||||
@@ -26,5 +26,8 @@
|
||||
shoes: ClothingShoesBootsSalvage
|
||||
id: SalvagePDA
|
||||
ears: ClothingHeadsetCargo
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
satchel: ClothingBackpackSatchelSalvageFilled
|
||||
duffelbag: ClothingBackpackDuffelSalvageFilled
|
||||
|
||||
@@ -17,6 +17,9 @@
|
||||
shoes: ClothingShoesColorBlack
|
||||
id: PassengerPDA
|
||||
ears: ClothingHeadsetGrey
|
||||
innerClothingSkirt: ClothingUniformJumpskirtColorGrey
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorGrey
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -28,6 +28,9 @@
|
||||
shoes: ClothingShoesColorBlack
|
||||
id: BartenderPDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpskirtBartender
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtBartender
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -24,6 +24,9 @@
|
||||
ears: ClothingHeadsetService
|
||||
outerClothing: ClothingOuterApronBotanist
|
||||
belt: ClothingBeltPlantFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtHydroponics
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtHydroponics
|
||||
satchel: ClothingBackpackSatchelHydroponicsFilled
|
||||
duffelbag: ClothingBackpackDuffelHydroponicsFilled
|
||||
|
||||
@@ -22,6 +22,9 @@
|
||||
shoes: ClothingShoesColorBlack
|
||||
id: ChaplainPDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpskirtChaplain
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtChaplain
|
||||
satchel: ClothingBackpackSatchelChaplainFilled
|
||||
duffelbag: ClothingBackpackDuffelChaplainFilled
|
||||
|
||||
@@ -29,7 +29,9 @@
|
||||
id: ChefPDA
|
||||
ears: ClothingHeadsetService
|
||||
outerClothing: ClothingOuterApronChef
|
||||
belt: ClothingBeltChefFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtChef
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtChef
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -37,5 +37,8 @@
|
||||
pocket2: ClownRecorder
|
||||
id: ClownPDA
|
||||
ears: ClothingHeadsetService
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
satchel: ClothingBackpackSatchelClownFilled
|
||||
duffelbag: ClothingBackpackDuffelClownFilled
|
||||
|
||||
@@ -26,7 +26,10 @@
|
||||
gloves: ClothingHandsGlovesJanitor
|
||||
ears: ClothingHeadsetService
|
||||
belt: ClothingBeltJanitorFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtJanitor
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtJanitor
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
|
||||
@@ -24,6 +24,9 @@
|
||||
id: LawyerPDA
|
||||
ears: ClothingHeadsetSecurity
|
||||
# TODO add copy of space law
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
inhand:
|
||||
- BriefcaseBrownFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtLawyerBlack
|
||||
|
||||
@@ -20,6 +20,11 @@
|
||||
ears: ClothingHeadsetService
|
||||
pocket1: d10Dice
|
||||
pocket2: HandLabeler # for making named bestsellers
|
||||
innerClothingSkirt: ClothingUniformJumpskirtLibrarian
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
inhand:
|
||||
right hand: BriefcaseBrownFilled
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorLightBrown
|
||||
satchel: ClothingBackpackSatchelLibrarianFilled
|
||||
duffelbag: ClothingBackpackDuffelLibrarianFilled
|
||||
|
||||
@@ -31,8 +31,11 @@
|
||||
mask: ClothingMaskMime
|
||||
id: MimePDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpskirtMime
|
||||
satchel: ClothingBackpackSatchelMimeFilled
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtMime
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelMimeFilled
|
||||
|
||||
- type: entity
|
||||
|
||||
@@ -23,5 +23,8 @@
|
||||
shoes: ClothingShoesBootsLaceup
|
||||
id: MusicianPDA
|
||||
ears: ClothingHeadsetService
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
satchel: ClothingBackpackSatchelMusicianFilled
|
||||
duffelbag: ClothingBackpackDuffelMusicianFilled
|
||||
|
||||
@@ -23,6 +23,9 @@
|
||||
shoes: ClothingShoesColorBlack
|
||||
id: ServiceWorkerPDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpskirtBartender
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtBartender
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -47,6 +47,9 @@
|
||||
outerClothing: ClothingOuterArmorCaptainCarapace
|
||||
id: CaptainPDA
|
||||
ears: ClothingHeadsetAltCommand
|
||||
innerClothingSkirt: ClothingUniformJumpskirtCaptain
|
||||
underwearb: ClothingUnderwearBottomBoxersCap # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraCap # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesCap # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtCaptain
|
||||
satchel: ClothingBackpackSatchelCaptainFilled
|
||||
duffelbag: ClothingBackpackDuffelCaptainFilled
|
||||
|
||||
@@ -23,6 +23,9 @@
|
||||
gloves: ClothingHandsGlovesColorBlack
|
||||
outerClothing: ClothingOuterArmorBasic
|
||||
id: CentcomPDA
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
pocket1: BoxFolderBlack
|
||||
pocket2: PenCentcom
|
||||
ears: ClothingHeadsetAltCommand
|
||||
pocket1: Paper
|
||||
pocket2: Pen
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
@@ -68,7 +68,9 @@
|
||||
id: HoPPDA
|
||||
gloves: ClothingHandsGlovesHop
|
||||
ears: ClothingHeadsetAltCommand
|
||||
belt: BoxFolderClipboard
|
||||
innerClothingSkirt: ClothingUniformJumpskirtHoP
|
||||
underwearb: ClothingUnderwearBottomBoxersHOP # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraHOP # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesHOP # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtHoP
|
||||
satchel: ClothingBackpackSatchelHOPFilled
|
||||
duffelbag: ClothingBackpackDuffelHOPFilled
|
||||
|
||||
@@ -27,6 +27,9 @@
|
||||
id: AtmosPDA
|
||||
belt: ClothingBeltUtilityEngineering
|
||||
ears: ClothingHeadsetEngineering
|
||||
innerClothingSkirt: ClothingUniformJumpskirtAtmos
|
||||
satchel: ClothingBackpackSatchelAtmosphericsFilled
|
||||
duffelbag: ClothingBackpackDuffelAtmosphericsFilled
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtAtmos
|
||||
satchel: ClothingBackpackSatchelEngineeringFilled
|
||||
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
||||
|
||||
@@ -50,7 +50,10 @@
|
||||
id: CEPDA
|
||||
eyes: ClothingEyesGlassesMeson
|
||||
ears: ClothingHeadsetCE
|
||||
belt: ClothingBeltUtilityEngineering
|
||||
innerClothingSkirt: ClothingUniformJumpskirtChiefEngineer
|
||||
belt: ClothingBeltChiefEngineerFilled
|
||||
underwearb: ClothingUnderwearBottomBoxersCE # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraCE # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesCE # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtChiefEngineer
|
||||
satchel: ClothingBackpackSatchelChiefEngineerFilled
|
||||
duffelbag: ClothingBackpackDuffelChiefEngineerFilled
|
||||
|
||||
@@ -29,6 +29,9 @@
|
||||
eyes: ClothingEyesGlassesMeson
|
||||
belt: ClothingBeltUtilityEngineering
|
||||
ears: ClothingHeadsetEngineering
|
||||
innerClothingSkirt: ClothingUniformJumpskirtEngineering
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtEngineering
|
||||
satchel: ClothingBackpackSatchelEngineeringFilled
|
||||
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
||||
|
||||
@@ -26,6 +26,9 @@
|
||||
id: TechnicalAssistantPDA
|
||||
belt: ClothingBeltUtilityEngineering
|
||||
ears: ClothingHeadsetEngineering
|
||||
innerClothingSkirt: ClothingUniformJumpskirtColorYellow
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorYellow
|
||||
satchel: ClothingBackpackSatchelEngineeringFilled
|
||||
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
||||
|
||||
@@ -8,9 +8,6 @@
|
||||
id: CluwnePDA
|
||||
gloves: ClothingHandsGlovesCluwne
|
||||
pocket1: CluwneHorn
|
||||
|
||||
- type: startingGear
|
||||
id: HoloClownGear
|
||||
equipment:
|
||||
pocket1: BikeHorn
|
||||
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
@@ -10,7 +10,10 @@
|
||||
shoes: ClothingShoesCult
|
||||
id: PassengerPDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -24,6 +27,9 @@
|
||||
shoes: ClothingShoesColorRed
|
||||
id: PassengerPDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -25,10 +25,12 @@
|
||||
gloves: ClothingHandsGlovesCombat
|
||||
outerClothing: ClothingOuterArmorBasicSlim
|
||||
id: ERTLeaderPDA
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
pocket2: FlashlightSeclite
|
||||
ears: ClothingHeadsetAltCommand
|
||||
belt: ClothingBeltSecurityWebbing
|
||||
pocket1: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
- type: startingGear
|
||||
id: ERTLeaderGearEVA
|
||||
@@ -44,27 +46,10 @@
|
||||
id: ERTLeaderPDA
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
pocket2: FlashlightSeclite
|
||||
|
||||
- type: startingGear
|
||||
id: ERTLeaderGearEVALecter
|
||||
equipment:
|
||||
jumpsuit: ClothingUniformJumpsuitERTLeader
|
||||
back: ClothingBackpackERTLeaderFilled
|
||||
shoes: ClothingShoesBootsMagAdv
|
||||
mask: ClothingMaskGasERT
|
||||
eyes: ClothingEyesGlassesSecurity
|
||||
gloves: ClothingHandsGlovesCombat
|
||||
outerClothing: ClothingOuterHardsuitERTLeader
|
||||
suitstorage: WeaponRifleLecter
|
||||
id: ERTLeaderPDA
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: MagazineRifle
|
||||
pocket2: MagazineRifle
|
||||
inhand:
|
||||
- AirTankFilled
|
||||
pocket1: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
# Engineer
|
||||
- type: job
|
||||
@@ -96,7 +81,9 @@
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltChiefEngineerFilled
|
||||
pocket1: Flare
|
||||
pocket2: GasAnalyzer
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
- type: startingGear
|
||||
id: ERTEngineerGearEVA
|
||||
@@ -113,7 +100,9 @@
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltChiefEngineerFilled
|
||||
pocket1: Flare
|
||||
pocket2: GasAnalyzer
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
# Security
|
||||
- type: job
|
||||
@@ -139,13 +128,15 @@
|
||||
shoes: ClothingShoesBootsCombatFilled
|
||||
head: ClothingHeadHelmetERTSecurity
|
||||
eyes: ClothingEyesGlassesSecurity
|
||||
gloves: ClothingHandsGlovesCombat
|
||||
outerClothing: ClothingOuterArmorBasicSlim
|
||||
id: ERTSecurityPDA
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
pocket2: FlashlightSeclite
|
||||
gloves: ClothingHandsGlovesColorBlack
|
||||
outerClothing: ClothingOuterVestKevlar
|
||||
id: ERTLeaderPDA
|
||||
ears: ClothingHeadsetAltCommand
|
||||
belt: ClothingBeltSecurityWebbing
|
||||
pocket1: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
- type: startingGear
|
||||
id: ERTSecurityGearEVA
|
||||
@@ -157,31 +148,14 @@
|
||||
eyes: ClothingEyesGlassesSecurity
|
||||
gloves: ClothingHandsGlovesCombat
|
||||
outerClothing: ClothingOuterHardsuitERTSecurity
|
||||
suitstorage: AirTankFilled
|
||||
id: ERTSecurityPDA
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
pocket2: FlashlightSeclite
|
||||
|
||||
- type: startingGear
|
||||
id: ERTSecurityGearEVALecter
|
||||
equipment:
|
||||
jumpsuit: ClothingUniformJumpsuitERTSecurity
|
||||
back: ClothingBackpackERTSecurityFilled
|
||||
shoes: ClothingShoesBootsMag
|
||||
mask: ClothingMaskGasERT
|
||||
eyes: ClothingEyesGlassesSecurity
|
||||
gloves: ClothingHandsGlovesCombat
|
||||
outerClothing: ClothingOuterHardsuitERTSecurity
|
||||
suitstorage: WeaponRifleLecter
|
||||
id: ERTSecurityPDA
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: MagazineRifle
|
||||
pocket2: MagazineRifle
|
||||
inhand:
|
||||
- AirTankFilled
|
||||
suitstorage: OxygenTankFilled
|
||||
id: ERTLeaderPDA
|
||||
ears: ClothingHeadsetAltCommand
|
||||
belt: ClothingBeltSecurityWebbing
|
||||
pocket1: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
# Medical
|
||||
- type: job
|
||||
@@ -214,6 +188,9 @@
|
||||
belt: ClothingBeltMedicalFilled
|
||||
pocket1: HandheldHealthAnalyzer
|
||||
pocket2: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
- type: startingGear
|
||||
id: ERTMedicalGearEVA
|
||||
@@ -231,6 +208,9 @@
|
||||
belt: ClothingBeltMedicalFilled
|
||||
pocket1: HandheldHealthAnalyzer
|
||||
pocket2: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
# Janitor
|
||||
- type: job
|
||||
@@ -261,6 +241,9 @@
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltJanitorFilled
|
||||
pocket1: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
- type: startingGear
|
||||
id: ERTJanitorGearEVA
|
||||
@@ -276,3 +259,6 @@
|
||||
ears: ClothingHeadsetAltCentCom
|
||||
belt: ClothingBeltJanitorFilled
|
||||
pocket1: Flare
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
|
||||
@@ -264,9 +264,12 @@
|
||||
pocket2: WeaponLaserGun
|
||||
suitstorage: YellowOxygenTankFilled
|
||||
belt: ClothingBeltBandolier
|
||||
innerClothingSkirt: ClothingUniformJumpsuitColorBrown
|
||||
satchel: ClothingBackpackDuffelCBURNFilled
|
||||
duffelbag: ClothingBackpackDuffelCBURNFilled
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpsuitColorBrown
|
||||
satchel: ClothingBackpackDuffelCBURN
|
||||
duffelbag: ClothingBackpackDuffelCBURN
|
||||
|
||||
- type: startingGear
|
||||
id: BoxingKangarooGear
|
||||
|
||||
@@ -27,6 +27,9 @@
|
||||
belt: ChemBag
|
||||
pocket1: HandLabeler
|
||||
# the purple glasses?
|
||||
innerClothingSkirt: ClothingUniformJumpskirtChemistry
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtChemistry
|
||||
satchel: ClothingBackpackSatchelChemistryFilled
|
||||
duffelbag: ClothingBackpackDuffelChemistryFilled
|
||||
|
||||
@@ -50,6 +50,9 @@
|
||||
id: CMOPDA
|
||||
ears: ClothingHeadsetCMO
|
||||
belt: ClothingBeltMedicalFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtCMO
|
||||
underwearb: ClothingUnderwearBottomBoxersCMO # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraCMO # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesCMO # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtCMO
|
||||
satchel: ClothingBackpackSatchelCMOFilled
|
||||
duffelbag: ClothingBackpackDuffelCMOFilled
|
||||
|
||||
@@ -26,6 +26,9 @@
|
||||
id: MedicalPDA
|
||||
ears: ClothingHeadsetMedical
|
||||
belt: ClothingBeltMedicalFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtMedicalDoctor
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtMedicalDoctor
|
||||
satchel: ClothingBackpackSatchelMedicalFilled
|
||||
duffelbag: ClothingBackpackDuffelMedicalFilled
|
||||
|
||||
@@ -25,6 +25,9 @@
|
||||
id: MedicalInternPDA
|
||||
ears: ClothingHeadsetMedical
|
||||
belt: ClothingBeltMedicalFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtColorWhite
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorWhite
|
||||
satchel: ClothingBackpackSatchelMedicalFilled
|
||||
duffelbag: ClothingBackpackDuffelMedicalFilled
|
||||
|
||||
@@ -24,6 +24,9 @@
|
||||
shoes: ClothingShoesColorWhite
|
||||
id: ResearchAssistantPDA
|
||||
ears: ClothingHeadsetScience
|
||||
innerClothingSkirt: ClothingUniformJumpskirtColorWhite
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorWhite
|
||||
satchel: ClothingBackpackSatchelScienceFilled
|
||||
duffelbag: ClothingBackpackDuffelScienceFilled
|
||||
|
||||
@@ -40,6 +40,9 @@
|
||||
outerClothing: ClothingOuterCoatRD
|
||||
id: RnDPDA
|
||||
ears: ClothingHeadsetRD
|
||||
innerClothingSkirt: ClothingUniformJumpskirtResearchDirector
|
||||
underwearb: ClothingUnderwearBottomBoxersRD # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraRD # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesRD # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtResearchDirector
|
||||
satchel: ClothingBackpackSatchelResearchDirectorFilled
|
||||
duffelbag: ClothingBackpackDuffelResearchDirectorFilled
|
||||
|
||||
@@ -23,6 +23,9 @@
|
||||
outerClothing: ClothingOuterCoatRnd
|
||||
id: SciencePDA
|
||||
ears: ClothingHeadsetScience
|
||||
innerClothingSkirt: ClothingUniformJumpskirtScientist
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtScientist
|
||||
satchel: ClothingBackpackSatchelScienceFilled
|
||||
duffelbag: ClothingBackpackDuffelScienceFilled
|
||||
|
||||
@@ -36,7 +36,12 @@
|
||||
outerClothing: ClothingOuterVestDetective
|
||||
id: DetectivePDA
|
||||
ears: ClothingHeadsetSecurity
|
||||
belt: ClothingBeltHolsterFilled
|
||||
innerClothingSkirt: ClothingUniformJumpskirtDetective
|
||||
satchel: ClothingBackpackSatchelSecurityFilledDetective
|
||||
duffelbag: ClothingBackpackDuffelSecurityFilledDetective
|
||||
pocket1: ForensicPad
|
||||
pocket2: ForensicScanner
|
||||
belt: ClothingBeltHolster
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtDetective
|
||||
satchel: ClothingBackpackSatchelSecurityFilled
|
||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||
|
||||
@@ -53,7 +53,9 @@
|
||||
gloves: ClothingHandsGlovesCombat
|
||||
ears: ClothingHeadsetAltSecurity
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
innerClothingSkirt: ClothingUniformJumpskirtHoS
|
||||
underwearb: ClothingUnderwearBottomBoxersHOS # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraHOS # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesHOS # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtHoS
|
||||
satchel: ClothingBackpackSatchelHOSFilled
|
||||
duffelbag: ClothingBackpackDuffelHOSFilled
|
||||
|
||||
@@ -33,7 +33,9 @@
|
||||
outerClothing: ClothingOuterArmorBasic
|
||||
id: SecurityCadetPDA
|
||||
ears: ClothingHeadsetSecurity
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
innerClothingSkirt: ClothingUniformJumpskirtColorRed
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtColorRed
|
||||
satchel: ClothingBackpackSatchelSecurityFilled
|
||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||
|
||||
@@ -35,7 +35,9 @@
|
||||
id: SecurityPDA
|
||||
ears: ClothingHeadsetSecurity
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
innerClothingSkirt: ClothingUniformJumpskirtSec
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtSec
|
||||
satchel: ClothingBackpackSatchelSecurityFilled
|
||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||
|
||||
@@ -37,7 +37,9 @@
|
||||
id: WardenPDA
|
||||
ears: ClothingHeadsetSecurity
|
||||
belt: ClothingBeltSecurityFilled
|
||||
pocket1: WeaponPistolMk58Nonlethal
|
||||
innerClothingSkirt: ClothingUniformJumpskirtWarden
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpskirtWarden
|
||||
satchel: ClothingBackpackSatchelSecurityFilled
|
||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||
|
||||
@@ -20,6 +20,9 @@
|
||||
gloves: ClothingHandsGlovesBoxingRed
|
||||
shoes: ClothingShoesColorRed
|
||||
belt: ClothingBeltChampion
|
||||
innerClothingSkirt: UniformShortsRedWithTop
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: UniformShortsRedWithTop
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -20,6 +20,9 @@
|
||||
shoes: ClothingShoesLeather
|
||||
id: PsychologistPDA
|
||||
ears: ClothingHeadsetMedical
|
||||
innerClothingSkirt: ClothingUniformJumpsuitPsychologist
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpsuitPsychologist
|
||||
satchel: ClothingBackpackSatchelMedicalFilled
|
||||
duffelbag: ClothingBackpackDuffelMedicalFilled
|
||||
|
||||
@@ -18,6 +18,9 @@
|
||||
shoes: ClothingShoesColorWhite
|
||||
id: ReporterPDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpsuitJournalist
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpsuitJournalist
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -19,6 +19,9 @@
|
||||
shoes: ClothingShoesColorWhite
|
||||
id: ZookeeperPDA
|
||||
ears: ClothingHeadsetService
|
||||
innerClothingSkirt: ClothingUniformJumpsuitSafari
|
||||
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||
innerclothingskirt: ClothingUniformJumpsuitSafari
|
||||
satchel: ClothingBackpackSatchelFilled
|
||||
duffelbag: ClothingBackpackDuffelFilled
|
||||
|
||||
@@ -0,0 +1,302 @@
|
||||
- type: entity
|
||||
abstract: true
|
||||
parent: Clothing
|
||||
id: ClothingUnderwearBottomBase
|
||||
name: based underwearb
|
||||
description: "You should not see this. If you see it, let Neko Dar#8948 know."
|
||||
components:
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Item
|
||||
size: 1
|
||||
- type: Clothing
|
||||
slots: [underwearb]
|
||||
- type: Tag
|
||||
tags:
|
||||
- underwearb
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesWhite
|
||||
name: panties
|
||||
description: Standard Nanotrasen underwear for station female employees. Painted white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersWhite
|
||||
name: boxers
|
||||
description: Standard Nanotrasen underwear for station employees. Dyed white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/boxers.rsi
|
||||
|
||||
#Underwear-for-the-heads
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersCap
|
||||
name: captain's boxers
|
||||
description: Standard station captain's underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/capitan/boxers.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersCE
|
||||
name: chief engineer's boxers
|
||||
description: Standard station chief engineer underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/ce/boxers.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersCMO
|
||||
name: chief medical officer's boxers
|
||||
description: Standard station chief physician's underwear. For some reason they smell like chloral hydrate...
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/cmo/boxers.rsi
|
||||
state: icon
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersHOP
|
||||
name: head of personnel's boxers
|
||||
description: The standard underwear of the station's chief of staff.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/hop/boxers.rsi
|
||||
state: icon
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersHOS
|
||||
name: head of security's boxers
|
||||
description: Standard station head of security underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/hos/boxers.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersQM
|
||||
name: quartermaster's boxers
|
||||
description: Standard station quartermaster underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/qm/boxers.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersRD
|
||||
name: research director's boxers
|
||||
description: Standard research director's underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/rd/boxers.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesCap
|
||||
name: captain's panties
|
||||
description: Standard station captain underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/capitan/panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesCE
|
||||
name: chief engineer's panties
|
||||
description: Standard station chief engineer underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/ce/panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesCMO
|
||||
name: chief medical officer's panties
|
||||
description: Standard station chief physician's underwear. For some reason they smell like chloral hydrate...
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/cmo/panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesHOP
|
||||
name: head of personnel's panties
|
||||
description: The standard underwear of the station's chief of staff.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/hop/panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesHOS
|
||||
name: head of security's panties
|
||||
description: Standard station head of security underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/hos/panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesQM
|
||||
name: quartermaster's panties
|
||||
description: Standard station quartermaster underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/qm/panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesRD
|
||||
name: research director's panties
|
||||
description: Standard research director's underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/heads/rd/panties.rsi
|
||||
|
||||
|
||||
# ТРУСЫ БЛЯТЬ
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBeeShorts
|
||||
name: Shorts
|
||||
description: Bees.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/bee_shorts.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersHeart
|
||||
name: Boxers
|
||||
description: With hearts.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/boxers_heart.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBoxersStriped
|
||||
name: Boxers
|
||||
description: Striped.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/boxers_striped.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomBriefs
|
||||
name: Panties
|
||||
description: Briefs.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/briefs.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomFishnetLower
|
||||
name: Panties
|
||||
description: Fishnet.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/fishnet_lower.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomJockstrap
|
||||
name: Jockstrap
|
||||
description: Jockstrap.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/jockstrap.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomMankini
|
||||
name: Mankini
|
||||
description: Bikini but for man.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/mankini.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesBeeKini
|
||||
name: Panties BeeKini
|
||||
description: Bee.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/panties_bee_kini.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesKinky
|
||||
name: Panties
|
||||
description: Kinky.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/panties_kinky.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesNeko
|
||||
name: Panties
|
||||
description: Neko.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/panties_neko.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesSlim
|
||||
name: Panties
|
||||
description: Slim.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/panties_slim.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesSwimming
|
||||
name: Panties
|
||||
description: For swimming.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/panties_swimming.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesThin
|
||||
name: Panties
|
||||
description: Thin.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/panties_thin.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesStripped
|
||||
name: Panties
|
||||
description: Stripped.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/striped_panties.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearBottomBase
|
||||
id: ClothingUnderwearBottomPantiesThong
|
||||
name: Panties
|
||||
description: Thong.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Bottom/thong.rsi
|
||||
|
||||
243
Resources/Prototypes/White/Entities/Clothing/Underwear/Socks.yml
Normal file
@@ -0,0 +1,243 @@
|
||||
- type: entity
|
||||
abstract: true
|
||||
parent: Clothing
|
||||
id: ClothingUnderwearSocksBase
|
||||
name: based socks
|
||||
description: "You should not see this."
|
||||
components:
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Item
|
||||
size: 5
|
||||
- type: Clothing
|
||||
slots: [socks]
|
||||
- type: Tag
|
||||
tags:
|
||||
- socks
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksBeeKnee
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed black-yellow.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/bee_knee.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksBeeNorm
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed black-yellow.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/bee_norm.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksBeeThigh
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed black-yellow.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/bee_thigh.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksFishnet
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Fishnet.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/fishnet.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksGarter
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Fishnet.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/garter.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksPantyhose
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Pantyhose.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/pantyhose.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksPantyhoseRipped
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Pantyhose ripped.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/pantyhose_ripped.rsi
|
||||
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksRainbowKnee
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed rainbow.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/rainbow_knee.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksRainbowThigh
|
||||
name: Socks
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed rainbow.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/rainbow_thigh.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksHigh
|
||||
name: high socks
|
||||
description: Nanotrasen high socks for station employees. Painted white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/socks_knee.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksNormal
|
||||
name: socks
|
||||
description: Standard Nanotrasen socks for station employees. Dyed white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/socks_norm.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksShort
|
||||
name: short socks
|
||||
description: Nanotrasen short socks for station employees. Dyed white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/socks_short.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksThigh
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/socks_thigh.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsBlue
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed blue.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_blue.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsCyan
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed cyan.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_cyan.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsPink
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed pink.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_dpink.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsGreen
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed green.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_green.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsLightPink
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed light pink.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_lpink.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsLightOrange
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed orange.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_orange.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsLightPurple
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed purple.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_purple.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearStockingsLightYellow
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed yellow.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/stockings_yellow.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksStripedKnee
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed black-white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/striped_knee.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksStripedThigh
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Dyed black-white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/striped_thigh.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksThinKnee
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Transparent.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/thin_knee.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearSocksBase
|
||||
id: ClothingUnderwearSocksThinThigh
|
||||
name: stockings
|
||||
description: Standard Nanotrasen stockings for station employees. Transparent.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Socks/thin_thigh.rsi
|
||||
|
||||
281
Resources/Prototypes/White/Entities/Clothing/Underwear/Top.yml
Normal file
@@ -0,0 +1,281 @@
|
||||
- type: entity
|
||||
abstract: true
|
||||
parent: Clothing
|
||||
id: ClothingUnderwearTopBase
|
||||
name: based underweart
|
||||
description: "You should not see this."
|
||||
components:
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Item
|
||||
size: 1
|
||||
- type: Clothing
|
||||
slots: [underweart]
|
||||
- type: Tag
|
||||
tags:
|
||||
- underweart
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraWhite
|
||||
name: bra
|
||||
description: Standard Nanotrasen bra for station staff. Painted white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraSports
|
||||
name: sports bra
|
||||
description: Sports bra. Painted white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/sportsbra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraSportsAlternative
|
||||
name: alternative sports bra
|
||||
description: Sports bra. Alternate version. Painted white.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/sportsbraalt.rsi
|
||||
|
||||
#Underwear-for-the-heads
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraCap
|
||||
name: captain's bra
|
||||
description: Standard station captain's underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/heads/capitan/bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraCE
|
||||
name: chief engineer's bra
|
||||
description: Standard station chief engineer's underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/heads/ce/bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraCMO
|
||||
name: chief medical officer's bra
|
||||
description: Standard underwear of the station chief medical officer. For some reason it smells like chloral hydrate...
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/heads/cmo/bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraHOP
|
||||
name: head of personnel's bra
|
||||
description: The standard underwear of the station's chief of staff.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/heads/hop/bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraHOS
|
||||
name: head of security's bra
|
||||
description: Standard underwear of the station's head of security.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/heads/hos/bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraQM
|
||||
name: quartermaster's bra
|
||||
description: Standard station quartermaster underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/heads/qm/bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraRD
|
||||
name: research director's bra
|
||||
description: Standard research director's underwear.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/heads/rd/bra.rsi
|
||||
|
||||
|
||||
#SPLURT
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraBeeKini
|
||||
name: Bee-Kini
|
||||
description: Bee-Kini bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_bee_kini.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraBinder
|
||||
name: Binder bra
|
||||
description: Binder bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_binder.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraBinderStrapless
|
||||
name: Binder bra strapless
|
||||
description: Binder bra strapless.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_binder_strapless.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraKinky
|
||||
name: Kinky bra
|
||||
description: Kinky bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_kinky.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraNeko
|
||||
name: Neko bra
|
||||
description: Neko bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_neko.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraStrapless
|
||||
name: Strapless Bra
|
||||
description: Strapless bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_strapless.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraStraplessAlt
|
||||
name: Strapless Bra
|
||||
description: Strapless bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_strapless_alt.rsi
|
||||
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraSwimming
|
||||
name: Swimming Bra
|
||||
description: Swimming bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_swimming.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraSwimmingAlt
|
||||
name: Swimming Bra
|
||||
description: Swimming bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_swimming_alt.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraThin
|
||||
name: Thin Bra
|
||||
description: Thin bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/bra_thin.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopFishnetBody
|
||||
name: Fishnet Bra
|
||||
description: Fishnet bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/fishnet_body.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopFishnetBodyGloves
|
||||
name: Fishnet Bra with gloves
|
||||
description: Fishnet bra with gloves.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/fishnet_gloves.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopFishnetBodySleeves
|
||||
name: Fishnet Bra with sleeves
|
||||
description: Fishnet bra with sleeves.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/fishnet_sleeves.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraHalterneck
|
||||
name: Halterneck Bra
|
||||
description: Halterneck bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/halterneck_bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraShibari
|
||||
name: Shibari Bra
|
||||
description: Shibari bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/shibari.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraShibariSleeves
|
||||
name: Shibari Bra with sleeves
|
||||
description: Shibari bra with sleeves.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/shibari_sleeves.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraStriped
|
||||
name: Striped Bra
|
||||
description: Striped bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/striped_bra.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopBraTubetop
|
||||
name: Tubetop Bra
|
||||
description: Tubetop bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/tubetop.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUnderwearTopBase
|
||||
id: ClothingUnderwearTopCow
|
||||
name: Cow Bra
|
||||
description: Cow bra.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: White/Clothing/Underwear/Top/cow.rsi
|
||||
@@ -1182,3 +1182,18 @@
|
||||
id: WriteIgnoreStamps
|
||||
|
||||
# PUT YOUR TAGS IN ALPHABETICAL ORDER
|
||||
|
||||
# WHITE
|
||||
- type: Tag
|
||||
id: socks
|
||||
|
||||
- type: Tag
|
||||
id: underwearb
|
||||
|
||||
- type: Tag
|
||||
id: underweart
|
||||
|
||||
- type: Tag
|
||||
id: Crystal
|
||||
|
||||
# WHITE END
|
||||
|
||||
BIN
Resources/Textures/Interface/Classic/Slots/socks.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
Resources/Textures/Interface/Classic/Slots/underwearb.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
Resources/Textures/Interface/Classic/Slots/underweart.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
Resources/Textures/Interface/Default/Slots/socks.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
Resources/Textures/Interface/Default/Slots/underwearb.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
Resources/Textures/Interface/Default/Slots/underweart.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
Resources/Textures/Interface/Eris/Slots/socks.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
Resources/Textures/Interface/Eris/Slots/underwearb.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
Resources/Textures/Interface/Eris/Slots/underweart.png
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 564 B |
|
After Width: | Height: | Size: 554 B |
|
After Width: | Height: | Size: 241 B |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 541 B |
|
After Width: | Height: | Size: 497 B |
|
After Width: | Height: | Size: 230 B |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 595 B |
|
After Width: | Height: | Size: 606 B |
|
After Width: | Height: | Size: 222 B |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 699 B |
|
After Width: | Height: | Size: 677 B |
|
After Width: | Height: | Size: 237 B |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 525 B |
|
After Width: | Height: | Size: 488 B |
|
After Width: | Height: | Size: 180 B |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 615 B |
|
After Width: | Height: | Size: 594 B |
|
After Width: | Height: | Size: 201 B |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 605 B |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 475 B |
|
After Width: | Height: | Size: 268 B |
|
After Width: | Height: | Size: 201 B |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 584 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13",
|
||||
"version": 1,
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "equipped-UNDERWEARB",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "equipped-UNDERWEARB-body-slim",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "icon"
|
||||
}
|
||||
]
|
||||
}
|
||||