[feature] ТРУСЫ (#12)
* Трусы и бра * Тэги и тэмплейты инвентаря * Спрайты * Тэги и темплейт * Флаги * Перевод и прототипы * Иконки * Добавил слои * Исправил циферки во флагах * НОСКИ * Трусы всем * Блять * СПРАЙТЫ БРА * Насрано * х2 * Примерно миллион трусов * fff * Носки(дохуя) * Сука * ааааааааааааааааааа * Ебаные трусы блять * Фикс иконок --------- Co-authored-by: Mona Hmiza <>
@@ -43,6 +43,11 @@ public sealed class ClientClothingSystem : ClothingSystem
|
|||||||
{"pocket1", "POCKET1"},
|
{"pocket1", "POCKET1"},
|
||||||
{"pocket2", "POCKET2"},
|
{"pocket2", "POCKET2"},
|
||||||
{"suitstorage", "SUITSTORAGE"},
|
{"suitstorage", "SUITSTORAGE"},
|
||||||
|
//WHITE EDIT
|
||||||
|
{"socks", "SOCKS"},
|
||||||
|
{"underweart", "UNDERWEART"},
|
||||||
|
{"underwearb", "UNDERWEARB"},
|
||||||
|
// WHITE EDIT
|
||||||
};
|
};
|
||||||
|
|
||||||
[Dependency] private readonly IResourceCache _cache = default!;
|
[Dependency] private readonly IResourceCache _cache = default!;
|
||||||
|
|||||||
@@ -26,5 +26,8 @@ public enum SlotFlags
|
|||||||
LEGS = 1 << 13,
|
LEGS = 1 << 13,
|
||||||
FEET = 1 << 14,
|
FEET = 1 << 14,
|
||||||
SUITSTORAGE = 1 << 15,
|
SUITSTORAGE = 1 << 15,
|
||||||
|
UNDERWEART = 1 << 16, // White
|
||||||
|
UNDERWEARB = 1 << 17, // White
|
||||||
|
SOCKS = 1 << 18, // White
|
||||||
All = ~NONE,
|
All = ~NONE,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
using Content.Shared.Humanoid;
|
||||||
using Content.Shared.Preferences;
|
using Content.Shared.Preferences;
|
||||||
using Robust.Shared.Prototypes;
|
using Robust.Shared.Prototypes;
|
||||||
|
|
||||||
@@ -24,6 +25,14 @@ namespace Content.Shared.Roles
|
|||||||
[DataField]
|
[DataField]
|
||||||
public List<EntProtoId> Inhand = new(0);
|
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]
|
[ViewVariables]
|
||||||
[IdDataField]
|
[IdDataField]
|
||||||
public string ID { get; private set; } = string.Empty;
|
public string ID { get; private set; } = string.Empty;
|
||||||
@@ -38,6 +47,12 @@ namespace Content.Shared.Roles
|
|||||||
return Satchel;
|
return Satchel;
|
||||||
if (slot == "back" && profile.Backpack == BackpackPreference.Duffelbag && !string.IsNullOrEmpty(Duffelbag))
|
if (slot == "back" && profile.Backpack == BackpackPreference.Duffelbag && !string.IsNullOrEmpty(Duffelbag))
|
||||||
return 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;
|
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,77 @@
|
|||||||
ClothingHandsGlovesColorGreen: 2
|
ClothingHandsGlovesColorGreen: 2
|
||||||
ClothingHandsGlovesColorOrange: 2
|
ClothingHandsGlovesColorOrange: 2
|
||||||
ClothingHandsGlovesColorPurple: 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:
|
contrabandInventory:
|
||||||
ClothingUniformJumpsuitTacticool: 1
|
ClothingUniformJumpsuitTacticool: 1
|
||||||
ClothingUniformJumpskirtTacticool: 1
|
ClothingUniformJumpskirtTacticool: 1
|
||||||
|
|||||||
@@ -27,9 +27,12 @@
|
|||||||
sprite: Mobs/Customization/masking_helpers.rsi
|
sprite: Mobs/Customization/masking_helpers.rsi
|
||||||
state: unisex_full
|
state: unisex_full
|
||||||
visible: false
|
visible: false
|
||||||
|
- map: [ "underwearb" ] #White
|
||||||
|
- map: [ "underweart" ] #White
|
||||||
|
- map: [ "enum.HumanoidVisualLayers.LFoot" ]
|
||||||
|
- map: [ "enum.HumanoidVisualLayers.RFoot" ]
|
||||||
|
- map: [ "socks" ] #White
|
||||||
- map: ["jumpsuit"]
|
- map: ["jumpsuit"]
|
||||||
- map: ["enum.HumanoidVisualLayers.LFoot"]
|
|
||||||
- map: ["enum.HumanoidVisualLayers.RFoot"]
|
|
||||||
- map: ["enum.HumanoidVisualLayers.LHand"]
|
- map: ["enum.HumanoidVisualLayers.LHand"]
|
||||||
- map: ["enum.HumanoidVisualLayers.RHand"]
|
- map: ["enum.HumanoidVisualLayers.RHand"]
|
||||||
- map: [ "gloves" ]
|
- map: [ "gloves" ]
|
||||||
@@ -340,9 +343,12 @@
|
|||||||
sprite: Mobs/Customization/masking_helpers.rsi
|
sprite: Mobs/Customization/masking_helpers.rsi
|
||||||
state: unisex_full
|
state: unisex_full
|
||||||
visible: false
|
visible: false
|
||||||
|
- map: [ "underwearb" ] #White
|
||||||
|
- map: [ "underweart" ] #White
|
||||||
|
- map: [ "enum.HumanoidVisualLayers.LFoot" ]
|
||||||
|
- map: [ "enum.HumanoidVisualLayers.RFoot" ]
|
||||||
|
- map: [ "socks" ] #White
|
||||||
- map: ["jumpsuit"]
|
- map: ["jumpsuit"]
|
||||||
- map: ["enum.HumanoidVisualLayers.LFoot"]
|
|
||||||
- map: ["enum.HumanoidVisualLayers.RFoot"]
|
|
||||||
- map: ["enum.HumanoidVisualLayers.LHand"]
|
- map: ["enum.HumanoidVisualLayers.LHand"]
|
||||||
- map: ["enum.HumanoidVisualLayers.RHand"]
|
- map: ["enum.HumanoidVisualLayers.RHand"]
|
||||||
- map: ["enum.HumanoidVisualLayers.Handcuffs"]
|
- map: ["enum.HumanoidVisualLayers.Handcuffs"]
|
||||||
|
|||||||
@@ -8,6 +8,36 @@
|
|||||||
uiWindowPos: 1,0
|
uiWindowPos: 1,0
|
||||||
strippingWindowPos: 1,3
|
strippingWindowPos: 1,3
|
||||||
displayName: Shoes
|
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
|
- name: jumpsuit
|
||||||
slotTexture: uniform
|
slotTexture: uniform
|
||||||
slotFlags: INNERCLOTHING
|
slotFlags: INNERCLOTHING
|
||||||
@@ -114,3 +144,4 @@
|
|||||||
uiWindowPos: 3,0
|
uiWindowPos: 3,0
|
||||||
strippingWindowPos: 0,5
|
strippingWindowPos: 0,5
|
||||||
displayName: Back
|
displayName: Back
|
||||||
|
|
||||||
|
|||||||
@@ -4,24 +4,26 @@
|
|||||||
description: job-description-cargotech
|
description: job-description-cargotech
|
||||||
playTimeTracker: JobCargoTechnician
|
playTimeTracker: JobCargoTechnician
|
||||||
startingGear: CargoTechGear
|
startingGear: CargoTechGear
|
||||||
icon: "JobIconCargoTechnician"
|
icon: "CargoTechnician"
|
||||||
supervisors: job-supervisors-qm
|
supervisors: job-supervisors-hop-qm
|
||||||
access:
|
access:
|
||||||
- Cargo
|
- Cargo
|
||||||
- Maintenance
|
- Maintenance
|
||||||
extendedAccess:
|
- External
|
||||||
- Salvage
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: CargoTechGear
|
id: CargoTechGear
|
||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatCargosoft
|
head: ClothingHeadHatCargosoft
|
||||||
jumpsuit: ClothingUniformJumpsuitCargo
|
jumpsuit: ClothingUniformJumpsuitCargo
|
||||||
back: ClothingBackpackCargoFilled
|
back: ClothingBackpackFilled
|
||||||
shoes: ClothingShoesColorBlack
|
shoes: ClothingShoesColorBlack
|
||||||
id: CargoPDA
|
id: CargoPDA
|
||||||
ears: ClothingHeadsetCargo
|
ears: ClothingHeadsetCargo
|
||||||
pocket1: AppraisalTool
|
pocket1: AppraisalTool
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtCargo
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
satchel: ClothingBackpackSatchelCargoFilled
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
duffelbag: ClothingBackpackDuffelCargoFilled
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtCargo
|
||||||
|
satchel: ClothingBackpackSatchelFilled
|
||||||
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -4,39 +4,29 @@
|
|||||||
description: job-description-qm
|
description: job-description-qm
|
||||||
playTimeTracker: JobQuartermaster
|
playTimeTracker: JobQuartermaster
|
||||||
requirements:
|
requirements:
|
||||||
- !type:RoleTimeRequirement
|
|
||||||
role: JobCargoTechnician
|
|
||||||
time: 21600 #6 hrs
|
|
||||||
- !type:RoleTimeRequirement
|
- !type:RoleTimeRequirement
|
||||||
role: JobSalvageSpecialist
|
role: JobSalvageSpecialist
|
||||||
time: 10800 #3 hrs
|
time: 3600
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Cargo
|
department: Cargo
|
||||||
time: 36000 #10 hours
|
time: 18000
|
||||||
- !type:OverallPlaytimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
time: 144000 #40 hrs
|
time: 108000
|
||||||
weight: 10
|
weight: 10
|
||||||
startingGear: QuartermasterGear
|
startingGear: QuartermasterGear
|
||||||
icon: "JobIconQuarterMaster"
|
icon: "QuarterMaster"
|
||||||
supervisors: job-supervisors-captain
|
supervisors: job-supervisors-hop
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Dwarf
|
- Dwarf
|
||||||
- Felinid
|
canBeAntag: false
|
||||||
canBeAntag: true
|
|
||||||
access:
|
access:
|
||||||
- Cargo
|
- Cargo
|
||||||
- Salvage
|
- Salvage
|
||||||
- Quartermaster
|
- Quartermaster
|
||||||
- Maintenance
|
- Maintenance
|
||||||
|
- External
|
||||||
- Command
|
- Command
|
||||||
- Brig
|
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
- !type:AddComponentSpecial
|
|
||||||
components:
|
|
||||||
- type: CommandStaff
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: QuartermasterGear
|
id: QuartermasterGear
|
||||||
@@ -47,8 +37,10 @@
|
|||||||
shoes: ClothingShoesColorBrown
|
shoes: ClothingShoesColorBrown
|
||||||
id: QuartermasterPDA
|
id: QuartermasterPDA
|
||||||
ears: ClothingHeadsetQM
|
ears: ClothingHeadsetQM
|
||||||
belt: BoxFolderClipboard
|
|
||||||
pocket1: AppraisalTool
|
pocket1: AppraisalTool
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtQM
|
underwearb: ClothingUnderwearBottomBoxersQM # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraQM # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesQM # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtQM
|
||||||
satchel: ClothingBackpackSatchelQuartermasterFilled
|
satchel: ClothingBackpackSatchelQuartermasterFilled
|
||||||
duffelbag: ClothingBackpackDuffelQuartermasterFilled
|
duffelbag: ClothingBackpackDuffelQuartermasterFilled
|
||||||
|
|||||||
@@ -26,5 +26,8 @@
|
|||||||
shoes: ClothingShoesBootsSalvage
|
shoes: ClothingShoesBootsSalvage
|
||||||
id: SalvagePDA
|
id: SalvagePDA
|
||||||
ears: ClothingHeadsetCargo
|
ears: ClothingHeadsetCargo
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
satchel: ClothingBackpackSatchelSalvageFilled
|
satchel: ClothingBackpackSatchelSalvageFilled
|
||||||
duffelbag: ClothingBackpackDuffelSalvageFilled
|
duffelbag: ClothingBackpackDuffelSalvageFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-passenger
|
description: job-description-passenger
|
||||||
playTimeTracker: JobPassenger
|
playTimeTracker: JobPassenger
|
||||||
startingGear: PassengerGear
|
startingGear: PassengerGear
|
||||||
icon: "JobIconPassenger"
|
icon: "Passenger"
|
||||||
supervisors: job-supervisors-everyone
|
supervisors: job-supervisors-everyone
|
||||||
access:
|
access:
|
||||||
- Maintenance
|
- Maintenance
|
||||||
@@ -17,6 +17,9 @@
|
|||||||
shoes: ClothingShoesColorBlack
|
shoes: ClothingShoesColorBlack
|
||||||
id: PassengerPDA
|
id: PassengerPDA
|
||||||
ears: ClothingHeadsetGrey
|
ears: ClothingHeadsetGrey
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorGrey
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorGrey
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
department: Civilian
|
department: Civilian
|
||||||
time: 1800
|
time: 1800
|
||||||
startingGear: BartenderGear
|
startingGear: BartenderGear
|
||||||
icon: "JobIconBartender"
|
icon: "Bartender"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
@@ -23,11 +23,14 @@
|
|||||||
equipment:
|
equipment:
|
||||||
head: ClothingHeadHatTophat
|
head: ClothingHeadHatTophat
|
||||||
jumpsuit: ClothingUniformJumpsuitBartender
|
jumpsuit: ClothingUniformJumpsuitBartender
|
||||||
outerClothing: ClothingOuterVest
|
outerClothing: ClothingOuterVestKevlar
|
||||||
back: ClothingBackpackFilled
|
back: ClothingBackpackFilled
|
||||||
shoes: ClothingShoesColorBlack
|
shoes: ClothingShoesColorBlack
|
||||||
id: BartenderPDA
|
id: BartenderPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtBartender
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtBartender
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-botanist
|
description: job-description-botanist
|
||||||
playTimeTracker: JobBotanist
|
playTimeTracker: JobBotanist
|
||||||
startingGear: BotanistGear
|
startingGear: BotanistGear
|
||||||
icon: "JobIconBotanist"
|
icon: "Botanist"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
@@ -24,6 +24,9 @@
|
|||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
outerClothing: ClothingOuterApronBotanist
|
outerClothing: ClothingOuterApronBotanist
|
||||||
belt: ClothingBeltPlantFilled
|
belt: ClothingBeltPlantFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtHydroponics
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtHydroponics
|
||||||
satchel: ClothingBackpackSatchelHydroponicsFilled
|
satchel: ClothingBackpackSatchelHydroponicsFilled
|
||||||
duffelbag: ClothingBackpackDuffelHydroponicsFilled
|
duffelbag: ClothingBackpackDuffelHydroponicsFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-chaplain
|
description: job-description-chaplain
|
||||||
playTimeTracker: JobChaplain
|
playTimeTracker: JobChaplain
|
||||||
startingGear: ChaplainGear
|
startingGear: ChaplainGear
|
||||||
icon: "JobIconChaplain"
|
icon: "Chaplain"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Chapel
|
- Chapel
|
||||||
@@ -22,6 +22,9 @@
|
|||||||
shoes: ClothingShoesColorBlack
|
shoes: ClothingShoesColorBlack
|
||||||
id: ChaplainPDA
|
id: ChaplainPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtChaplain
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtChaplain
|
||||||
satchel: ClothingBackpackSatchelChaplainFilled
|
satchel: ClothingBackpackSatchelChaplainFilled
|
||||||
duffelbag: ClothingBackpackDuffelChaplainFilled
|
duffelbag: ClothingBackpackDuffelChaplainFilled
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
department: Civilian
|
department: Civilian
|
||||||
time: 1800
|
time: 1800
|
||||||
startingGear: ChefGear
|
startingGear: ChefGear
|
||||||
icon: "JobIconChef"
|
icon: "Chef"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
@@ -24,12 +24,13 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitChef
|
jumpsuit: ClothingUniformJumpsuitChef
|
||||||
head: ClothingHeadHatChef
|
head: ClothingHeadHatChef
|
||||||
back: ClothingBackpackFilled
|
back: ClothingBackpackFilled
|
||||||
mask: ClothingMaskItalianMoustache
|
|
||||||
shoes: ClothingShoesColorBlack
|
shoes: ClothingShoesColorBlack
|
||||||
id: ChefPDA
|
id: ChefPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
outerClothing: ClothingOuterApronChef
|
outerClothing: ClothingOuterApronChef
|
||||||
belt: ClothingBeltChefFilled
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtChef
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtChef
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -37,5 +37,8 @@
|
|||||||
pocket2: ClownRecorder
|
pocket2: ClownRecorder
|
||||||
id: ClownPDA
|
id: ClownPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
satchel: ClothingBackpackSatchelClownFilled
|
satchel: ClothingBackpackSatchelClownFilled
|
||||||
duffelbag: ClothingBackpackDuffelClownFilled
|
duffelbag: ClothingBackpackDuffelClownFilled
|
||||||
|
|||||||
@@ -4,10 +4,9 @@
|
|||||||
description: job-description-janitor
|
description: job-description-janitor
|
||||||
playTimeTracker: JobJanitor
|
playTimeTracker: JobJanitor
|
||||||
startingGear: JanitorGear
|
startingGear: JanitorGear
|
||||||
icon: "JobIconJanitor"
|
icon: "Janitor"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
|
||||||
- Janitor
|
- Janitor
|
||||||
- Maintenance
|
- Maintenance
|
||||||
special:
|
special:
|
||||||
@@ -23,10 +22,12 @@
|
|||||||
shoes: ClothingShoesGaloshes
|
shoes: ClothingShoesGaloshes
|
||||||
head: ClothingHeadHatPurplesoft
|
head: ClothingHeadHatPurplesoft
|
||||||
id: JanitorPDA
|
id: JanitorPDA
|
||||||
gloves: ClothingHandsGlovesJanitor
|
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
belt: ClothingBeltJanitorFilled
|
belt: ClothingBeltJanitorFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtJanitor
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtJanitor
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|
||||||
@@ -36,10 +37,9 @@
|
|||||||
jumpsuit: ClothingUniformJumpskirtJanimaid
|
jumpsuit: ClothingUniformJumpskirtJanimaid
|
||||||
back: ClothingBackpackFilled
|
back: ClothingBackpackFilled
|
||||||
id: JanitorPDA
|
id: JanitorPDA
|
||||||
gloves: ClothingHandsGlovesJanitor
|
|
||||||
head: ClothingHeadHatCatEars
|
head: ClothingHeadHatCatEars
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
belt: ClothingBeltJanitorFilled
|
belt: ClothingBeltJanitorFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtJanimaid
|
innerclothingskirt: ClothingUniformJumpskirtJanimaid
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -24,6 +24,9 @@
|
|||||||
id: LawyerPDA
|
id: LawyerPDA
|
||||||
ears: ClothingHeadsetSecurity
|
ears: ClothingHeadsetSecurity
|
||||||
# TODO add copy of space law
|
# TODO add copy of space law
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
inhand:
|
inhand:
|
||||||
- BriefcaseBrownFilled
|
- BriefcaseBrownFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtLawyerBlack
|
innerClothingSkirt: ClothingUniformJumpskirtLawyerBlack
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-librarian
|
description: job-description-librarian
|
||||||
playTimeTracker: JobLibrarian
|
playTimeTracker: JobLibrarian
|
||||||
startingGear: LibrarianGear
|
startingGear: LibrarianGear
|
||||||
icon: "JobIconLibrarian"
|
icon: "Librarian"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
@@ -19,7 +19,13 @@
|
|||||||
id: LibrarianPDA
|
id: LibrarianPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
pocket1: d10Dice
|
pocket1: d10Dice
|
||||||
|
belt: BooksBag
|
||||||
pocket2: HandLabeler # for making named bestsellers
|
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
|
satchel: ClothingBackpackSatchelLibrarianFilled
|
||||||
duffelbag: ClothingBackpackDuffelLibrarianFilled
|
duffelbag: ClothingBackpackDuffelLibrarianFilled
|
||||||
|
|||||||
@@ -3,11 +3,8 @@
|
|||||||
name: job-name-mime
|
name: job-name-mime
|
||||||
description: job-description-mime
|
description: job-description-mime
|
||||||
playTimeTracker: JobMime
|
playTimeTracker: JobMime
|
||||||
requirements:
|
|
||||||
- !type:OverallPlaytimeRequirement
|
|
||||||
time: 14400 #4 hrs
|
|
||||||
startingGear: MimeGear
|
startingGear: MimeGear
|
||||||
icon: "JobIconMime"
|
icon: "Mime"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Theatre
|
- Theatre
|
||||||
@@ -31,18 +28,9 @@
|
|||||||
mask: ClothingMaskMime
|
mask: ClothingMaskMime
|
||||||
id: MimePDA
|
id: MimePDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtMime
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
satchel: ClothingBackpackSatchelMimeFilled
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtMime
|
||||||
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelMimeFilled
|
duffelbag: ClothingBackpackDuffelMimeFilled
|
||||||
|
|
||||||
- type: entity
|
|
||||||
id: ActionMimeInvisibleWall
|
|
||||||
name: Create Invisible Wall
|
|
||||||
description: Create an invisible wall in front of you, if placeable there.
|
|
||||||
noSpawn: true
|
|
||||||
components:
|
|
||||||
- type: InstantAction
|
|
||||||
priority: -1
|
|
||||||
useDelay: 30
|
|
||||||
icon: Structures/Walls/solid.rsi/full.png
|
|
||||||
event: !type:InvisibleWallActionEvent
|
|
||||||
|
|||||||
@@ -23,5 +23,8 @@
|
|||||||
shoes: ClothingShoesBootsLaceup
|
shoes: ClothingShoesBootsLaceup
|
||||||
id: MusicianPDA
|
id: MusicianPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
satchel: ClothingBackpackSatchelMusicianFilled
|
satchel: ClothingBackpackSatchelMusicianFilled
|
||||||
duffelbag: ClothingBackpackDuffelMusicianFilled
|
duffelbag: ClothingBackpackDuffelMusicianFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-serviceworker
|
description: job-description-serviceworker
|
||||||
playTimeTracker: JobServiceWorker
|
playTimeTracker: JobServiceWorker
|
||||||
startingGear: ServiceWorkerGear
|
startingGear: ServiceWorkerGear
|
||||||
icon: "JobIconServiceWorker"
|
icon: "ServiceWorker"
|
||||||
supervisors: job-supervisors-service
|
supervisors: job-supervisors-service
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
@@ -23,6 +23,9 @@
|
|||||||
shoes: ClothingShoesColorBlack
|
shoes: ClothingShoesColorBlack
|
||||||
id: ServiceWorkerPDA
|
id: ServiceWorkerPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtBartender
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtBartender
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -6,47 +6,43 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Engineering
|
department: Engineering
|
||||||
time: 54000 # 15 hours
|
time: 18000
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Medical
|
department: Medical
|
||||||
time: 54000 # 15 hours
|
time: 18000
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Security
|
department: Security
|
||||||
time: 54000 # 15 hours
|
time: 18000
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
department: Command
|
time: 108000
|
||||||
time: 54000 # 15 hours
|
|
||||||
weight: 20
|
weight: 20
|
||||||
startingGear: CaptainGear
|
startingGear: CaptainGear
|
||||||
icon: "JobIconCaptain"
|
icon: "Captain"
|
||||||
requireAdminNotify: true
|
requireAdminNotify: true
|
||||||
joinNotifyCrew: true
|
joinNotifyCrew: true
|
||||||
supervisors: job-supervisors-centcom
|
supervisors: job-supervisors-centcom
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Felinid
|
- Dwarf
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
accessGroups:
|
accessGroups:
|
||||||
- AllAccess
|
- AllAccess
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
- !type:AddComponentSpecial
|
|
||||||
components:
|
|
||||||
- type: CommandStaff
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: CaptainGear
|
id: CaptainGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCaptain
|
jumpsuit: ClothingUniformJumpsuitCaptain
|
||||||
back: ClothingBackpackCaptainFilled
|
back: ClothingBackpackCaptainFilled
|
||||||
shoes: ClothingShoesBootsLaceup
|
shoes: ClothingShoesColorBlack
|
||||||
head: ClothingHeadHatCaptain
|
head: ClothingHeadHatCaptain
|
||||||
eyes: ClothingEyesGlassesSunglasses
|
eyes: ClothingEyesGlassesSunglasses
|
||||||
gloves: ClothingHandsGlovesCaptain
|
gloves: ClothingHandsGlovesCaptain
|
||||||
outerClothing: ClothingOuterArmorCaptainCarapace
|
outerClothing: ClothingOuterArmorCaptainCarapace
|
||||||
id: CaptainPDA
|
id: CaptainPDA
|
||||||
ears: ClothingHeadsetAltCommand
|
ears: ClothingHeadsetAltCommand
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtCaptain
|
underwearb: ClothingUnderwearBottomBoxersCap # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraCap # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesCap # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtCaptain
|
||||||
satchel: ClothingBackpackSatchelCaptainFilled
|
satchel: ClothingBackpackSatchelCaptainFilled
|
||||||
duffelbag: ClothingBackpackDuffelCaptainFilled
|
duffelbag: ClothingBackpackDuffelCaptainFilled
|
||||||
|
|||||||
@@ -5,24 +5,25 @@
|
|||||||
playTimeTracker: JobCentralCommandOfficial
|
playTimeTracker: JobCentralCommandOfficial
|
||||||
setPreference: false
|
setPreference: false
|
||||||
startingGear: CentcomGear
|
startingGear: CentcomGear
|
||||||
icon: "JobIconNanotrasen"
|
icon: "Nanotrasen"
|
||||||
supervisors: job-supervisors-hos
|
supervisors: job-supervisors-hos
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
accessGroups:
|
accessGroups:
|
||||||
- AllAccess
|
- AllAccess
|
||||||
access:
|
|
||||||
- CentralCommand
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: CentcomGear
|
id: CentcomGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitCentcomOfficial
|
jumpsuit: ClothingUniformJumpsuitCentcomOfficial
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsJack
|
||||||
head: ClothingHeadHatCentcom
|
head: ClothingHeadHatCentcom
|
||||||
eyes: ClothingEyesGlassesSunglasses
|
eyes: ClothingEyesGlassesSunglasses
|
||||||
gloves: ClothingHandsGlovesColorBlack
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterArmorBasic
|
outerClothing: ClothingOuterVestKevlar
|
||||||
id: CentcomPDA
|
id: CentcomPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
pocket1: BoxFolderBlack
|
pocket1: Paper
|
||||||
pocket2: PenCentcom
|
pocket2: Pen
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|||||||
@@ -6,25 +6,23 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Engineering
|
department: Engineering
|
||||||
time: 36000 # 10 hours
|
time: 3600
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Medical
|
department: Medical
|
||||||
time: 36000 # 10 hours
|
time: 3600
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Security
|
department: Security
|
||||||
time: 36000 # 10 hrs
|
time: 3600
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
department: Command
|
time: 108000
|
||||||
time: 36000 # 10 hours
|
|
||||||
weight: 20
|
weight: 20
|
||||||
startingGear: HoPGear
|
startingGear: HoPGear
|
||||||
icon: "JobIconHeadOfPersonnel"
|
icon: "HeadOfPersonnel"
|
||||||
requireAdminNotify: true
|
requireAdminNotify: true
|
||||||
supervisors: job-supervisors-captain
|
supervisors: job-supervisors-captain
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Felinid
|
canBeAntag: false
|
||||||
canBeAntag: true
|
|
||||||
access:
|
access:
|
||||||
- Command
|
- Command
|
||||||
- HeadOfPersonnel
|
- HeadOfPersonnel
|
||||||
@@ -38,25 +36,6 @@
|
|||||||
- Hydroponics
|
- Hydroponics
|
||||||
- External
|
- External
|
||||||
# I mean they'll give themselves the rest of the access levels *anyways*.
|
# I mean they'll give themselves the rest of the access levels *anyways*.
|
||||||
# As of 15/03/23 they can't do that so here's MOST of the rest of the access levels.
|
|
||||||
# Head level access that isn't their own was deliberately left out, get AA from the captain instead.
|
|
||||||
- Chemistry
|
|
||||||
- Engineering
|
|
||||||
- Research
|
|
||||||
- Detective
|
|
||||||
- Salvage
|
|
||||||
- Security
|
|
||||||
- Brig
|
|
||||||
- Lawyer
|
|
||||||
- Cargo
|
|
||||||
- Atmospherics
|
|
||||||
- Medical
|
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
- !type:AddComponentSpecial
|
|
||||||
components:
|
|
||||||
- type: CommandStaff
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: HoPGear
|
id: HoPGear
|
||||||
@@ -66,9 +45,10 @@
|
|||||||
shoes: ClothingShoesColorBrown
|
shoes: ClothingShoesColorBrown
|
||||||
head: ClothingHeadHatHopcap
|
head: ClothingHeadHatHopcap
|
||||||
id: HoPPDA
|
id: HoPPDA
|
||||||
gloves: ClothingHandsGlovesHop
|
|
||||||
ears: ClothingHeadsetAltCommand
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: BoxFolderClipboard
|
underwearb: ClothingUnderwearBottomBoxersHOP # White-Underwear
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtHoP
|
underweart: ClothingUnderwearTopBraHOP # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesHOP # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtHoP
|
||||||
satchel: ClothingBackpackSatchelHOPFilled
|
satchel: ClothingBackpackSatchelHOPFilled
|
||||||
duffelbag: ClothingBackpackDuffelHOPFilled
|
duffelbag: ClothingBackpackDuffelHOPFilled
|
||||||
|
|||||||
@@ -6,11 +6,11 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Engineering
|
department: Engineering
|
||||||
time: 54000 # 15 hrs
|
time: 3600
|
||||||
startingGear: AtmosphericTechnicianGear
|
startingGear: AtmosphericTechnicianGear
|
||||||
icon: "JobIconAtmosphericTechnician"
|
icon: "AtmosphericTechnician"
|
||||||
supervisors: job-supervisors-ce
|
supervisors: job-supervisors-ce
|
||||||
canBeAntag: true
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Maintenance
|
- Maintenance
|
||||||
- Engineering
|
- Engineering
|
||||||
@@ -21,12 +21,15 @@
|
|||||||
id: AtmosphericTechnicianGear
|
id: AtmosphericTechnicianGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitAtmos
|
jumpsuit: ClothingUniformJumpsuitAtmos
|
||||||
back: ClothingBackpackAtmosphericsFilled
|
back: ClothingBackpackEngineeringFilled
|
||||||
shoes: ClothingShoesColorWhite
|
shoes: ClothingShoesColorWhite
|
||||||
eyes: ClothingEyesGlassesMeson
|
eyes: ClothingEyesGlassesMeson
|
||||||
id: AtmosPDA
|
id: AtmosPDA
|
||||||
belt: ClothingBeltUtilityEngineering
|
belt: ClothingBeltUtilityFilled
|
||||||
ears: ClothingHeadsetEngineering
|
ears: ClothingHeadsetEngineering
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtAtmos
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
satchel: ClothingBackpackSatchelAtmosphericsFilled
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
duffelbag: ClothingBackpackDuffelAtmosphericsFilled
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtAtmos
|
||||||
|
satchel: ClothingBackpackSatchelEngineeringFilled
|
||||||
|
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
||||||
|
|||||||
@@ -6,25 +6,21 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:RoleTimeRequirement
|
- !type:RoleTimeRequirement
|
||||||
role: JobAtmosphericTechnician
|
role: JobAtmosphericTechnician
|
||||||
time: 21600 #6 hrs
|
time: 3600
|
||||||
- !type:RoleTimeRequirement
|
|
||||||
role: JobStationEngineer
|
|
||||||
time: 21600 #6 hrs
|
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Engineering
|
department: Engineering
|
||||||
time: 36000 #10 hrs
|
time: 18000
|
||||||
- !type:OverallPlaytimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
time: 144000 #40 hrs
|
time: 108000
|
||||||
weight: 10
|
weight: 10
|
||||||
startingGear: ChiefEngineerGear
|
startingGear: ChiefEngineerGear
|
||||||
icon: "JobIconChiefEngineer"
|
icon: "ChiefEngineer"
|
||||||
requireAdminNotify: true
|
requireAdminNotify: true
|
||||||
supervisors: job-supervisors-captain
|
supervisors: job-supervisors-captain
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Dwarf
|
- Dwarf
|
||||||
- Felinid
|
canBeAntag: false
|
||||||
canBeAntag: true
|
|
||||||
access:
|
access:
|
||||||
- Maintenance
|
- Maintenance
|
||||||
- Engineering
|
- Engineering
|
||||||
@@ -32,13 +28,6 @@
|
|||||||
- External
|
- External
|
||||||
- ChiefEngineer
|
- ChiefEngineer
|
||||||
- Atmospherics
|
- Atmospherics
|
||||||
- Brig
|
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
- !type:AddComponentSpecial
|
|
||||||
components:
|
|
||||||
- type: CommandStaff
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ChiefEngineerGear
|
id: ChiefEngineerGear
|
||||||
@@ -50,7 +39,10 @@
|
|||||||
id: CEPDA
|
id: CEPDA
|
||||||
eyes: ClothingEyesGlassesMeson
|
eyes: ClothingEyesGlassesMeson
|
||||||
ears: ClothingHeadsetCE
|
ears: ClothingHeadsetCE
|
||||||
belt: ClothingBeltUtilityEngineering
|
belt: ClothingBeltChiefEngineerFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtChiefEngineer
|
underwearb: ClothingUnderwearBottomBoxersCE # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraCE # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesCE # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtChiefEngineer
|
||||||
satchel: ClothingBackpackSatchelChiefEngineerFilled
|
satchel: ClothingBackpackSatchelChiefEngineerFilled
|
||||||
duffelbag: ClothingBackpackDuffelChiefEngineerFilled
|
duffelbag: ClothingBackpackDuffelChiefEngineerFilled
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Engineering
|
department: Engineering
|
||||||
time: 14400 #4 hrs
|
time: 1800
|
||||||
startingGear: StationEngineerGear
|
startingGear: StationEngineerGear
|
||||||
icon: "JobIconStationEngineer"
|
icon: "StationEngineer"
|
||||||
supervisors: job-supervisors-ce
|
supervisors: job-supervisors-ce
|
||||||
access:
|
access:
|
||||||
- Maintenance
|
- Maintenance
|
||||||
@@ -27,8 +27,11 @@
|
|||||||
outerClothing: ClothingOuterVestHazard
|
outerClothing: ClothingOuterVestHazard
|
||||||
id: EngineerPDA
|
id: EngineerPDA
|
||||||
eyes: ClothingEyesGlassesMeson
|
eyes: ClothingEyesGlassesMeson
|
||||||
belt: ClothingBeltUtilityEngineering
|
belt: ClothingBeltUtilityFilled
|
||||||
ears: ClothingHeadsetEngineering
|
ears: ClothingHeadsetEngineering
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtEngineering
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtEngineering
|
||||||
satchel: ClothingBackpackSatchelEngineeringFilled
|
satchel: ClothingBackpackSatchelEngineeringFilled
|
||||||
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
||||||
|
|||||||
@@ -6,12 +6,12 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Engineering
|
department: Engineering
|
||||||
time: 54000 #15 hrs
|
time: 28800
|
||||||
inverted: true # stop playing intern if you're good at engineering!
|
inverted: true # stop playing intern if you're good at engineering!
|
||||||
startingGear: TechnicalAssistantGear
|
startingGear: TechnicalAssistantGear
|
||||||
icon: "JobIconTechnicalAssistant"
|
icon: "TechnicalAssistant"
|
||||||
supervisors: job-supervisors-engineering
|
supervisors: job-supervisors-engineering
|
||||||
canBeAntag: true
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Maintenance
|
- Maintenance
|
||||||
- Engineering
|
- Engineering
|
||||||
@@ -20,12 +20,16 @@
|
|||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: TechnicalAssistantGear
|
id: TechnicalAssistantGear
|
||||||
equipment:
|
equipment:
|
||||||
|
head: ClothingHeadHatWelding
|
||||||
jumpsuit: ClothingUniformJumpsuitColorYellow
|
jumpsuit: ClothingUniformJumpsuitColorYellow
|
||||||
back: ClothingBackpackEngineeringFilled
|
back: ClothingBackpackEngineeringFilled
|
||||||
shoes: ClothingShoesBootsWork
|
shoes: ClothingShoesBootsWork
|
||||||
id: TechnicalAssistantPDA
|
id: TechnicalAssistantPDA
|
||||||
belt: ClothingBeltUtilityEngineering
|
belt: ClothingBeltUtilityFilled
|
||||||
ears: ClothingHeadsetEngineering
|
ears: ClothingHeadsetEngineering
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorYellow
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorYellow
|
||||||
satchel: ClothingBackpackSatchelEngineeringFilled
|
satchel: ClothingBackpackSatchelEngineeringFilled
|
||||||
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
duffelbag: ClothingBackpackDuffelEngineeringFilled
|
||||||
|
|||||||
@@ -8,9 +8,6 @@
|
|||||||
id: CluwnePDA
|
id: CluwnePDA
|
||||||
gloves: ClothingHandsGlovesCluwne
|
gloves: ClothingHandsGlovesCluwne
|
||||||
pocket1: CluwneHorn
|
pocket1: CluwneHorn
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
- type: startingGear
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
id: HoloClownGear
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
equipment:
|
|
||||||
pocket1: BikeHorn
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,10 @@
|
|||||||
shoes: ClothingShoesCult
|
shoes: ClothingShoesCult
|
||||||
id: PassengerPDA
|
id: PassengerPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|
||||||
@@ -24,6 +27,9 @@
|
|||||||
shoes: ClothingShoesColorRed
|
shoes: ClothingShoesColorRed
|
||||||
id: PassengerPDA
|
id: PassengerPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -6,65 +6,48 @@
|
|||||||
playTimeTracker: JobERTLeader
|
playTimeTracker: JobERTLeader
|
||||||
setPreference: false
|
setPreference: false
|
||||||
startingGear: ERTLeaderGearEVA
|
startingGear: ERTLeaderGearEVA
|
||||||
icon: "JobIconNanotrasen"
|
icon: "Nanotrasen"
|
||||||
supervisors: job-supervisors-centcom
|
supervisors: job-supervisors-centcom
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
accessGroups:
|
accessGroups:
|
||||||
- AllAccess
|
- AllAccess
|
||||||
access:
|
|
||||||
- CentralCommand
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTLeaderGear
|
id: ERTLeaderGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitERTLeader
|
jumpsuit: ClothingUniformJumpsuitERTLeader
|
||||||
back: ClothingBackpackERTLeaderFilled
|
back: ClothingBackpackERTLeaderFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsJack
|
||||||
head: ClothingHeadHelmetERTLeader
|
head: ClothingHeadHelmetHelmet
|
||||||
eyes: ClothingEyesGlassesSecurity
|
eyes: ClothingEyesGlassesSecurity
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
outerClothing: ClothingOuterVestKevlar
|
||||||
id: ERTLeaderPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityWebbing
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
pocket1: Flare
|
||||||
pocket2: FlashlightSeclite
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTLeaderGearEVA
|
id: ERTLeaderGearEVA
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitERTLeader
|
jumpsuit: ClothingUniformJumpsuitERTLeader
|
||||||
back: ClothingBackpackERTLeaderFilled
|
back: ClothingBackpackERTLeaderFilled
|
||||||
shoes: ClothingShoesBootsMagAdv
|
shoes: ClothingShoesBootsMag
|
||||||
mask: ClothingMaskGasERT
|
mask: ClothingMaskBreath
|
||||||
eyes: ClothingEyesGlassesSecurity
|
eyes: ClothingEyesGlassesSecurity
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterHardsuitERTLeader
|
outerClothing: ClothingOuterHardsuitERTLeader
|
||||||
suitstorage: AirTankFilled
|
suitstorage: OxygenTankFilled
|
||||||
id: ERTLeaderPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityFilled
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
pocket1: Flare
|
||||||
pocket2: FlashlightSeclite
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
- type: startingGear
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
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
|
|
||||||
|
|
||||||
# Engineer
|
# Engineer
|
||||||
- type: job
|
- type: job
|
||||||
@@ -74,13 +57,11 @@
|
|||||||
playTimeTracker: JobERTEngineer
|
playTimeTracker: JobERTEngineer
|
||||||
setPreference: false
|
setPreference: false
|
||||||
startingGear: ERTEngineerGearEVA
|
startingGear: ERTEngineerGearEVA
|
||||||
icon: "JobIconNanotrasen"
|
icon: "Nanotrasen"
|
||||||
supervisors: job-supervisors-centcom
|
supervisors: job-supervisors-centcom
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
accessGroups:
|
accessGroups:
|
||||||
- AllAccess
|
- AllAccess
|
||||||
access:
|
|
||||||
- CentralCommand
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTEngineerGear
|
id: ERTEngineerGear
|
||||||
@@ -88,15 +69,17 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitERTEngineer
|
jumpsuit: ClothingUniformJumpsuitERTEngineer
|
||||||
back: ClothingBackpackERTEngineerFilled
|
back: ClothingBackpackERTEngineerFilled
|
||||||
shoes: ClothingShoesBootsWork
|
shoes: ClothingShoesBootsWork
|
||||||
head: ClothingHeadHelmetERTEngineer
|
head: ClothingHeadHelmetHelmet
|
||||||
eyes: ClothingEyesGlassesMeson
|
eyes: ClothingEyesGlassesMeson
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesColorYellow
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
outerClothing: ClothingOuterVestKevlar
|
||||||
id: ERTEngineerPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltChiefEngineerFilled
|
belt: ClothingBeltChiefEngineerFilled
|
||||||
pocket1: Flare
|
pocket1: Flare
|
||||||
pocket2: GasAnalyzer
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTEngineerGearEVA
|
id: ERTEngineerGearEVA
|
||||||
@@ -104,16 +87,18 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitERTEngineer
|
jumpsuit: ClothingUniformJumpsuitERTEngineer
|
||||||
back: ClothingBackpackERTEngineerFilled
|
back: ClothingBackpackERTEngineerFilled
|
||||||
shoes: ClothingShoesBootsMagAdv
|
shoes: ClothingShoesBootsMagAdv
|
||||||
mask: ClothingMaskGasERT
|
mask: ClothingMaskBreath
|
||||||
eyes: ClothingEyesGlassesMeson
|
eyes: ClothingEyesGlassesMeson
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesColorYellow
|
||||||
outerClothing: ClothingOuterHardsuitERTEngineer
|
outerClothing: ClothingOuterHardsuitERTEngineer
|
||||||
suitstorage: AirTankFilled
|
suitstorage: OxygenTankFilled
|
||||||
id: ERTEngineerPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltChiefEngineerFilled
|
belt: ClothingBeltChiefEngineerFilled
|
||||||
pocket1: Flare
|
pocket1: Flare
|
||||||
pocket2: GasAnalyzer
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|
||||||
# Security
|
# Security
|
||||||
- type: job
|
- type: job
|
||||||
@@ -123,29 +108,29 @@
|
|||||||
playTimeTracker: JobERTSecurity
|
playTimeTracker: JobERTSecurity
|
||||||
setPreference: false
|
setPreference: false
|
||||||
startingGear: ERTEngineerGearEVA
|
startingGear: ERTEngineerGearEVA
|
||||||
icon: "JobIconNanotrasen"
|
icon: "Nanotrasen"
|
||||||
supervisors: job-supervisors-centcom
|
supervisors: job-supervisors-centcom
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
accessGroups:
|
accessGroups:
|
||||||
- AllAccess
|
- AllAccess
|
||||||
access:
|
|
||||||
- CentralCommand
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTSecurityGear
|
id: ERTSecurityGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitERTSecurity
|
jumpsuit: ClothingUniformJumpsuitERTSecurity
|
||||||
back: ClothingBackpackERTSecurityFilled
|
back: ClothingBackpackERTSecurityFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsJack
|
||||||
head: ClothingHeadHelmetERTSecurity
|
head: ClothingHeadHelmetHelmet
|
||||||
eyes: ClothingEyesGlassesSecurity
|
eyes: ClothingEyesGlassesSecurity
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
outerClothing: ClothingOuterVestKevlar
|
||||||
id: ERTSecurityPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityWebbing
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
pocket1: Flare
|
||||||
pocket2: FlashlightSeclite
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTSecurityGearEVA
|
id: ERTSecurityGearEVA
|
||||||
@@ -153,35 +138,18 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitERTSecurity
|
jumpsuit: ClothingUniformJumpsuitERTSecurity
|
||||||
back: ClothingBackpackERTSecurityFilled
|
back: ClothingBackpackERTSecurityFilled
|
||||||
shoes: ClothingShoesBootsMag
|
shoes: ClothingShoesBootsMag
|
||||||
mask: ClothingMaskGasERT
|
mask: ClothingMaskBreath
|
||||||
eyes: ClothingEyesGlassesSecurity
|
eyes: ClothingEyesGlassesSecurity
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterHardsuitERTSecurity
|
outerClothing: ClothingOuterHardsuitERTSecurity
|
||||||
suitstorage: AirTankFilled
|
suitstorage: OxygenTankFilled
|
||||||
id: ERTSecurityPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityWebbing
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
pocket1: Flare
|
||||||
pocket2: FlashlightSeclite
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
- type: startingGear
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
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
|
|
||||||
|
|
||||||
# Medical
|
# Medical
|
||||||
- type: job
|
- type: job
|
||||||
@@ -191,29 +159,30 @@
|
|||||||
playTimeTracker: JobERTMedical
|
playTimeTracker: JobERTMedical
|
||||||
setPreference: false
|
setPreference: false
|
||||||
startingGear: ERTMedicalGearEVA
|
startingGear: ERTMedicalGearEVA
|
||||||
icon: "JobIconNanotrasen"
|
icon: "Nanotrasen"
|
||||||
supervisors: job-supervisors-centcom
|
supervisors: job-supervisors-centcom
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
accessGroups:
|
accessGroups:
|
||||||
- AllAccess
|
- AllAccess
|
||||||
access:
|
|
||||||
- CentralCommand
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTMedicalGear
|
id: ERTMedicalGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitERTMedic
|
jumpsuit: ClothingUniformJumpsuitERTMedic
|
||||||
back: ClothingBackpackERTMedicalFilled
|
back: ClothingBackpackERTMedicalFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsJack
|
||||||
head: ClothingHeadHelmetERTMedic
|
head: ClothingHeadHelmetHelmet
|
||||||
eyes: ClothingEyesHudMedical
|
eyes: ClothingEyesHudMedical
|
||||||
gloves: ClothingHandsGlovesNitrile
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
outerClothing: ClothingOuterVestKevlar
|
||||||
id: ERTMedicPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltMedicalFilled
|
belt: ClothingBeltMedicalFilled
|
||||||
pocket1: HandheldHealthAnalyzer
|
pocket1: HandheldHealthAnalyzer
|
||||||
pocket2: Flare
|
pocket2: Flare
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTMedicalGearEVA
|
id: ERTMedicalGearEVA
|
||||||
@@ -221,16 +190,19 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitERTMedic
|
jumpsuit: ClothingUniformJumpsuitERTMedic
|
||||||
back: ClothingBackpackERTMedicalFilled
|
back: ClothingBackpackERTMedicalFilled
|
||||||
shoes: ClothingShoesBootsMag
|
shoes: ClothingShoesBootsMag
|
||||||
mask: ClothingMaskGasERT
|
mask: ClothingMaskBreath
|
||||||
eyes: ClothingEyesHudMedical
|
eyes: ClothingEyesHudMedical
|
||||||
gloves: ClothingHandsGlovesNitrile
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterHardsuitERTMedical
|
outerClothing: ClothingOuterHardsuitERTMedical
|
||||||
suitstorage: AirTankFilled
|
suitstorage: OxygenTankFilled
|
||||||
id: ERTMedicPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltMedicalFilled
|
belt: ClothingBeltMedicalFilled
|
||||||
pocket1: HandheldHealthAnalyzer
|
pocket1: HandheldHealthAnalyzer
|
||||||
pocket2: Flare
|
pocket2: Flare
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|
||||||
# Janitor
|
# Janitor
|
||||||
- type: job
|
- type: job
|
||||||
@@ -240,13 +212,11 @@
|
|||||||
playTimeTracker: JobERTJanitor
|
playTimeTracker: JobERTJanitor
|
||||||
setPreference: false
|
setPreference: false
|
||||||
startingGear: ERTJanitorGearEVA
|
startingGear: ERTJanitorGearEVA
|
||||||
icon: "JobIconNanotrasen"
|
icon: "Nanotrasen"
|
||||||
supervisors: job-supervisors-centcom
|
supervisors: job-supervisors-centcom
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
accessGroups:
|
accessGroups:
|
||||||
- AllAccess
|
- AllAccess
|
||||||
access:
|
|
||||||
- CentralCommand
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTJanitorGear
|
id: ERTJanitorGear
|
||||||
@@ -254,13 +224,16 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitERTJanitor
|
jumpsuit: ClothingUniformJumpsuitERTJanitor
|
||||||
back: ClothingBackpackERTJanitorFilled
|
back: ClothingBackpackERTJanitorFilled
|
||||||
shoes: ClothingShoesGaloshes
|
shoes: ClothingShoesGaloshes
|
||||||
head: ClothingHeadHelmetERTJanitor
|
head: ClothingHeadHelmetHelmet
|
||||||
gloves: ClothingHandsGlovesColorPurple
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
outerClothing: ClothingOuterVestKevlar
|
||||||
id: ERTJanitorPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltJanitorFilled
|
belt: ClothingBeltJanitorFilled
|
||||||
pocket1: Flare
|
pocket1: Flare
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ERTJanitorGearEVA
|
id: ERTJanitorGearEVA
|
||||||
@@ -268,11 +241,14 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitERTJanitor
|
jumpsuit: ClothingUniformJumpsuitERTJanitor
|
||||||
back: ClothingBackpackERTJanitorFilled
|
back: ClothingBackpackERTJanitorFilled
|
||||||
shoes: ClothingShoesBootsMag
|
shoes: ClothingShoesBootsMag
|
||||||
mask: ClothingMaskGasERT
|
mask: ClothingMaskBreath
|
||||||
gloves: ClothingHandsGlovesColorPurple
|
gloves: ClothingHandsGlovesColorBlack
|
||||||
outerClothing: ClothingOuterHardsuitERTJanitor
|
outerClothing: ClothingOuterHardsuitERTJanitor
|
||||||
suitstorage: AirTankFilled
|
suitstorage: OxygenTankFilled
|
||||||
id: ERTJanitorPDA
|
id: ERTLeaderPDA
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
belt: ClothingBeltJanitorFilled
|
belt: ClothingBeltJanitorFilled
|
||||||
pocket1: Flare
|
pocket1: Flare
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
|||||||
@@ -1,12 +1,28 @@
|
|||||||
#Misc outfit startingGear definitions.
|
#Misc outfit startingGear definitions.
|
||||||
|
|
||||||
|
#IHS Void Suit Outfit
|
||||||
|
- type: startingGear
|
||||||
|
id: IHSGear
|
||||||
|
equipment:
|
||||||
|
jumpsuit: ClothingUniformJumpsuitColorBlack
|
||||||
|
back: ClothingBackpackFilled
|
||||||
|
head: ClothingHeadHelmetIHSVoidHelm
|
||||||
|
gloves: ClothingHandsGlovesIhscombat
|
||||||
|
outerClothing: IHSVoidsuit
|
||||||
|
shoes: ClothingShoesBootsJack
|
||||||
|
id: PassengerPDA
|
||||||
|
ears: ClothingHeadsetService
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||||
|
satchel: ClothingBackpackSatchelFilled
|
||||||
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|
||||||
#Skeleton Biker
|
#Skeleton Biker
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SkeletonBiker
|
id: SkeletonBiker
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorBlack
|
jumpsuit: ClothingUniformJumpsuitColorBlack
|
||||||
back: ClothingBackpackFilled
|
back: ClothingBackpackFilled
|
||||||
head: ClothingHeadBandSkull
|
head: HatBandSkull
|
||||||
eyes: ClothingEyesGlassesSunglasses
|
eyes: ClothingEyesGlassesSunglasses
|
||||||
outerClothing: ClothingOuterCoatGentle
|
outerClothing: ClothingOuterCoatGentle
|
||||||
gloves: ClothingHandsGlovesFingerless
|
gloves: ClothingHandsGlovesFingerless
|
||||||
@@ -15,7 +31,7 @@
|
|||||||
ears: ClothingHeadsetGrey
|
ears: ClothingHeadsetGrey
|
||||||
pocket1: VehicleSkeletonMotorcycle
|
pocket1: VehicleSkeletonMotorcycle
|
||||||
pocket2: VehicleKeySkeletonMotorcycle
|
pocket2: VehicleKeySkeletonMotorcycle
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
|
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|
||||||
@@ -23,64 +39,50 @@
|
|||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SpaceNinjaGear
|
id: SpaceNinjaGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitNinja
|
jumpsuit: ClothingUniformJumpsuitColorBlack
|
||||||
# belt holds katana so satchel has the tools for sabotaging things
|
back: ClothingBackpackFilled
|
||||||
back: ClothingBackpackSatchelTools
|
|
||||||
mask: ClothingMaskNinja
|
|
||||||
head: ClothingHeadHelmetSpaceNinja
|
head: ClothingHeadHelmetSpaceNinja
|
||||||
eyes: ClothingEyesVisorNinja
|
|
||||||
gloves: ClothingHandsGlovesSpaceNinja
|
gloves: ClothingHandsGlovesSpaceNinja
|
||||||
outerClothing: ClothingOuterSuitSpaceNinja
|
outerClothing: ClothingOuterSuitSpaceninja
|
||||||
shoes: ClothingShoesSpaceNinja
|
shoes: ClothingShoesSpaceNinja
|
||||||
id: AgentIDCard
|
id: PassengerPDA
|
||||||
ears: ClothingHeadsetGrey
|
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||||
pocket1: SpiderCharge
|
satchel: ClothingBackpackSatchelFilled
|
||||||
pocket2: PinpointerStation
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
belt: EnergyKatana
|
|
||||||
suitstorage: YellowOxygenTankFilled
|
|
||||||
inhand:
|
|
||||||
- JetpackBlackFilled
|
|
||||||
|
|
||||||
#Deathsquad Outfit
|
#Deathsquad Outfit
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: DeathSquadGear
|
id: DeadsquadGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitDeathSquad
|
jumpsuit: ClothingUniformJumpsuitColorBlack
|
||||||
back: ClothingBackpackDeathSquadFilled
|
back: ClothingBackpackDuffelSyndicateAmmo
|
||||||
mask: ClothingMaskGasDeathSquad
|
mask: ClothingMaskBreath
|
||||||
eyes: ClothingEyesHudSecurity
|
eyes: ClothingEyesGlassesSecurity
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesCombat
|
||||||
outerClothing: ClothingOuterHardsuitDeathsquad
|
outerClothing: ClothingOuterHardsuitDeathsquad
|
||||||
suitstorage: AirTankFilled
|
suitstorage: YellowOxygenTankFilled
|
||||||
shoes: ClothingShoesBootsMagAdv
|
shoes: ClothingShoesChameleonNoSlips
|
||||||
id: DeathsquadPDA
|
id: CentcomPDA
|
||||||
pocket1: EnergySword
|
pocket1: EnergySword
|
||||||
pocket2: EnergyShield
|
belt: ClothingBeltChiefEngineerFilled
|
||||||
belt: ClothingBeltMilitaryWebbingMedFilled
|
innerclothingskirt: ClothingUniformJumpskirtColorBlack
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorBlack
|
satchel: ClothingBackpackDuffelSyndicateAmmo
|
||||||
|
duffelbag: ClothingBackpackDuffelSyndicateAmmo
|
||||||
|
|
||||||
# Syndicate Operative Outfit - Monkey
|
|
||||||
- type: startingGear
|
|
||||||
id: SyndicateOperativeGearMonkey
|
|
||||||
equipment:
|
|
||||||
head: ClothingHeadHatOutlawHat
|
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
|
||||||
mask: CigaretteSyndicate
|
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitOperative
|
|
||||||
|
|
||||||
# Syndicate Operative Outfit - Barratry
|
# Syndicate Operative Outfit - Poverty
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SyndicateOperativeGearExtremelyBasic
|
id: SyndicateOperativeGearExtremelyBasic
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
jumpsuit: ClothingUniformJumpsuitOperative
|
||||||
back: ClothingBackpackDuffelSyndicateOperative
|
back: ClothingBackpackDuffelSyndicateOperative
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
gloves: ClothingHandsGlovesColorBlack
|
innerclothingskirt: ClothingUniformJumpsuitOperative
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitOperative
|
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
satchel: ClothingBackpackDuffelSyndicateOperative
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
||||||
|
|
||||||
|
|
||||||
#Syndicate Operative Outfit - Basic
|
#Syndicate Operative Outfit - Basic
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SyndicateOperativeGearBasic
|
id: SyndicateOperativeGearBasic
|
||||||
@@ -91,8 +93,8 @@
|
|||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesCombat
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
pocket1: BaseUplinkRadio40TC
|
pocket1: BaseUplinkRadio40TC
|
||||||
id: SyndiPDA
|
id: AgentIDCard
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitOperative
|
innerclothingskirt: ClothingUniformJumpsuitOperative
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
satchel: ClothingBackpackDuffelSyndicateOperative
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
||||||
|
|
||||||
@@ -103,159 +105,68 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
jumpsuit: ClothingUniformJumpsuitOperative
|
||||||
back: ClothingBackpackDuffelSyndicateOperative
|
back: ClothingBackpackDuffelSyndicateOperative
|
||||||
mask: ClothingMaskGasSyndicate
|
mask: ClothingMaskGasSyndicate
|
||||||
eyes: ClothingEyesHudSyndicate
|
# eyes: Night Vision Goggles whenever they're made
|
||||||
|
eyes: ClothingEyesGlassesMeson
|
||||||
ears: ClothingHeadsetAltSyndicate
|
ears: ClothingHeadsetAltSyndicate
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesCombat
|
||||||
outerClothing: ClothingOuterHardsuitSyndie
|
outerClothing: ClothingOuterHardsuitSyndie
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
id: SyndiPDA
|
id: AgentIDCard
|
||||||
pocket1: DoubleEmergencyOxygenTankFilled
|
pocket1: ExtendedEmergencyOxygenTankFilled
|
||||||
pocket2: BaseUplinkRadio40TC
|
pocket2: BaseUplinkRadio40TC
|
||||||
belt: ClothingBeltMilitaryWebbing
|
belt: ClothingBeltMilitaryWebbing
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtOperative
|
innerclothingskirt: ClothingUniformJumpskirtOperative
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
satchel: ClothingBackpackDuffelSyndicateOperative
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
||||||
|
|
||||||
#Nuclear Operative Commander Gear
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SyndicateCommanderGearFull
|
id: SyndicateCommanderGearFull
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
jumpsuit: ClothingUniformJumpsuitOperative
|
||||||
back: ClothingBackpackDuffelSyndicateOperative
|
back: ClothingBackpackDuffelSyndicateOperative
|
||||||
mask: ClothingMaskGasSyndicate
|
mask: ClothingMaskGasSyndicate
|
||||||
eyes: ClothingEyesHudSyndicate
|
# eyes: Night Vision Goggles whenever they're made
|
||||||
|
eyes: ClothingEyesGlassesMeson
|
||||||
ears: ClothingHeadsetAltSyndicate
|
ears: ClothingHeadsetAltSyndicate
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesCombat
|
||||||
outerClothing: ClothingOuterHardsuitSyndieCommander
|
outerClothing: ClothingOuterHardsuitSyndieCommander
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
id: SyndiPDA
|
id: SyndiPDA
|
||||||
pocket1: DoubleEmergencyOxygenTankFilled
|
pocket1: ExtendedEmergencyOxygenTankFilled
|
||||||
pocket2: BaseUplinkRadio40TC
|
pocket2: BaseUplinkRadio40TC
|
||||||
belt: ClothingBeltMilitaryWebbing
|
belt: ClothingBeltMilitaryWebbing
|
||||||
inhand:
|
innerclothingskirt: ClothingUniformJumpskirtOperative
|
||||||
- NukeOpsDeclarationOfWar
|
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtOperative
|
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
satchel: ClothingBackpackDuffelSyndicateOperative
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
||||||
|
|
||||||
#Nuclear Operative Medic Gear
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SyndicateOperativeMedicFull
|
id: SyndicateOperativeMedicFull
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
jumpsuit: ClothingUniformJumpsuitOperative
|
||||||
back: ClothingBackpackDuffelSyndicateOperativeMedic
|
back: ClothingBackpackDuffelSyndicateOperativeMedic
|
||||||
mask: ClothingMaskGasSyndicate
|
mask: ClothingMaskBreathMedical
|
||||||
eyes: ClothingEyesHudSyndicate
|
eyes: ClothingEyesHudMedical
|
||||||
ears: ClothingHeadsetAltSyndicate
|
ears: ClothingHeadsetAltSyndicate
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesCombat
|
||||||
outerClothing: ClothingOuterHardsuitSyndieMedic
|
outerClothing: ClothingOuterHardsuitSyndieElite
|
||||||
shoes: ClothingShoesBootsMagSyndie
|
shoes: ClothingShoesBootsMagSyndie
|
||||||
id: SyndiAgentPDA
|
id: SyndiPDA
|
||||||
pocket1: DoubleEmergencyOxygenTankFilled
|
pocket1: DoubleEmergencyOxygenTankFilled
|
||||||
pocket2: BaseUplinkRadio40TC
|
pocket2: BaseUplinkRadio40TC
|
||||||
belt: ClothingBeltMilitaryWebbingMedFilled
|
belt: ClothingBeltMilitaryWebbingMedFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtOperative
|
innerclothingskirt: ClothingUniformJumpskirtOperative
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperativeMedic
|
satchel: ClothingBackpackDuffelSyndicateOperativeMedic
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperativeMedic
|
duffelbag: ClothingBackpackDuffelSyndicateOperativeMedic
|
||||||
|
|
||||||
# Syndicate Footsoldier Gear - Unarmed
|
|
||||||
- type: startingGear
|
|
||||||
id: SyndicateFootsoldierGear
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
|
||||||
head: ClothingHeadHelmetSwatSyndicate
|
|
||||||
mask: ClothingMaskGas
|
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
|
||||||
ears: ClothingHeadsetAltSyndicate
|
|
||||||
gloves: ClothingHandsGlovesCombat
|
|
||||||
back: ClothingBackpackFilled
|
|
||||||
shoes: ClothingShoesBootsCombat
|
|
||||||
id: SyndiPDA #a subtype of this for footsoldiers would probably be good to have
|
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitOperative
|
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
|
|
||||||
# Syndicate Footsoldier Gear - Knife
|
|
||||||
- type: startingGear
|
|
||||||
id: SyndicateFootsoldierGearKnife
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
|
||||||
head: ClothingHeadHelmetSwatSyndicate
|
|
||||||
mask: ClothingMaskGas
|
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
|
||||||
ears: ClothingHeadsetAltSyndicate
|
|
||||||
gloves: ClothingHandsGlovesCombat
|
|
||||||
back: ClothingBackpackFilled
|
|
||||||
shoes: ClothingShoesBootsCombat
|
|
||||||
pocket1: CombatKnife
|
|
||||||
id: SyndiPDA
|
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitOperative
|
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
|
|
||||||
# Syndicate Footsoldier Gear - Energy Sword
|
|
||||||
- type: startingGear
|
|
||||||
id: SyndicateFootsoldierGearESword
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
|
||||||
head: ClothingHeadHelmetSwatSyndicate
|
|
||||||
mask: ClothingMaskGas
|
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
|
||||||
ears: ClothingHeadsetAltSyndicate
|
|
||||||
gloves: ClothingHandsGlovesCombat
|
|
||||||
back: ClothingBackpackFilled
|
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
|
||||||
pocket1: EnergySword
|
|
||||||
pocket2: EnergyShield
|
|
||||||
id: SyndiPDA
|
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitOperative
|
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
|
|
||||||
# Syndicate Footsoldier Gear - Viper
|
|
||||||
- type: startingGear
|
|
||||||
id: SyndicateFootsoldierGearPistol
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitOperative
|
|
||||||
head: ClothingHeadHelmetSwatSyndicate
|
|
||||||
mask: ClothingMaskGas
|
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
|
||||||
ears: ClothingHeadsetAltSyndicate
|
|
||||||
gloves: ClothingHandsGlovesCombat
|
|
||||||
back: ClothingBackpackFilled
|
|
||||||
shoes: ClothingShoesBootsCombat
|
|
||||||
pocket1: WeaponPistolViper
|
|
||||||
id: SyndiPDA
|
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitOperative
|
|
||||||
satchel: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
duffelbag: ClothingBackpackDuffelSyndicateOperative
|
|
||||||
|
|
||||||
# Nanotrasen Paramilitary Unit Gear - pistol
|
|
||||||
- type: startingGear
|
|
||||||
id: NanotrasenParamilitaryGear
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitSec
|
|
||||||
back: ClothingBackpackSecurityFilled
|
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
|
||||||
eyes: ClothingEyesGlassesSecurity
|
|
||||||
head: ClothingHeadHelmetSwat
|
|
||||||
mask: ClothingMaskGasSwat
|
|
||||||
outerClothing: ClothingOuterArmorBasicSlim
|
|
||||||
ears: ClothingHeadsetSecurity
|
|
||||||
gloves: ClothingHandsGlovesCombat
|
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtSec
|
|
||||||
satchel: ClothingBackpackSatchelSecurityFilled
|
|
||||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
|
||||||
|
|
||||||
#CBURN Unit Gear - Full Kit
|
#CBURN Unit Gear - Full Kit
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: CBURNGear
|
id: CBURNGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorBrown
|
jumpsuit: ClothingUniformJumpsuitColorBrown
|
||||||
back: ClothingBackpackDuffelCBURNFilled
|
back: ClothingBackpackDuffelCBURN
|
||||||
mask: ClothingMaskGasERT
|
mask: ClothingMaskGasExplorer
|
||||||
eyes: ClothingEyesGlassesSecurity
|
eyes: ClothingEyesGlassesSecurity
|
||||||
ears: ClothingHeadsetAltCentCom
|
ears: ClothingHeadsetAltCommand
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesCombat
|
||||||
outerClothing: ClothingOuterHardsuitCBURN
|
outerClothing: ClothingOuterHardsuitCBURN
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
@@ -264,94 +175,14 @@
|
|||||||
pocket2: WeaponLaserGun
|
pocket2: WeaponLaserGun
|
||||||
suitstorage: YellowOxygenTankFilled
|
suitstorage: YellowOxygenTankFilled
|
||||||
belt: ClothingBeltBandolier
|
belt: ClothingBeltBandolier
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitColorBrown
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
satchel: ClothingBackpackDuffelCBURNFilled
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
duffelbag: ClothingBackpackDuffelCBURNFilled
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpsuitColorBrown
|
||||||
|
satchel: ClothingBackpackDuffelCBURN
|
||||||
|
duffelbag: ClothingBackpackDuffelCBURN
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: BoxingKangarooGear
|
id: BoxingKangarooGear
|
||||||
equipment:
|
equipment:
|
||||||
gloves: ClothingHandsGlovesBoxingBlue
|
gloves: ClothingHandsGlovesBoxingBlue
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: MobMonkeyGear
|
|
||||||
equipment:
|
|
||||||
head: ClothingHeadHatTophat
|
|
||||||
ears: ClothingHeadsetService
|
|
||||||
jumpsuit: ClothingUniformJumpsuitJacketMonkey
|
|
||||||
id: PunPunIDCard
|
|
||||||
|
|
||||||
# Passenger but without the ID, bag, or headset
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: LimitedPassengerGear
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitColorGrey
|
|
||||||
shoes: ClothingShoesColorBlack
|
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorGrey
|
|
||||||
|
|
||||||
# DeathMatch Gear
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: DeathMatchGear
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitColorWhite
|
|
||||||
shoes: ClothingShoesBootsJack
|
|
||||||
ears: ClothingHeadsetGrey
|
|
||||||
gloves: ClothingHandsGlovesFingerless
|
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorWhite
|
|
||||||
inhand:
|
|
||||||
- WeaponMeleeToolboxRobust
|
|
||||||
|
|
||||||
#Brigmedic
|
|
||||||
|
|
||||||
- type: startingGear
|
|
||||||
id: BrigmedicGear
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitBrigmedic
|
|
||||||
outerClothing: ClothingOuterCoatAMG
|
|
||||||
back: ClothingBackpackBrigmedic
|
|
||||||
shoes: ClothingShoesColorRed
|
|
||||||
gloves: ClothingHandsGlovesNitrile
|
|
||||||
eyes: ClothingEyesHudMedical
|
|
||||||
head: ClothingHeadHatBeretBrigmedic
|
|
||||||
id: BrigmedicPDA
|
|
||||||
ears: ClothingHeadsetBrigmedic
|
|
||||||
mask: ClothingMaskBreathMedicalSecurity
|
|
||||||
belt: ClothingBeltMedicalFilled
|
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtBrigmedic
|
|
||||||
satchel: ClothingBackpackSatchelBrigmedicFilled
|
|
||||||
duffelbag: ClothingBackpackDuffelBrigmedicFilled
|
|
||||||
|
|
||||||
#Head Rev Gear
|
|
||||||
- type: startingGear
|
|
||||||
id: HeadRevGear
|
|
||||||
equipment:
|
|
||||||
pocket2: Flash
|
|
||||||
|
|
||||||
#Gladiator with spear
|
|
||||||
- type: startingGear
|
|
||||||
id: GladiatorGear
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitGladiator
|
|
||||||
back: SpearBone
|
|
||||||
head: ClothingHeadHatGladiator
|
|
||||||
shoes: ClothingShoesCult
|
|
||||||
|
|
||||||
#Ash Walker
|
|
||||||
- type: startingGear
|
|
||||||
id: AshWalker
|
|
||||||
equipment:
|
|
||||||
jumpsuit: ClothingUniformJumpsuitGladiator
|
|
||||||
outerClothing: ClothingOuterArmorBone
|
|
||||||
back: SpearBone
|
|
||||||
head: ClothingHeadHelmetBone
|
|
||||||
shoes: ClothingShoesCult
|
|
||||||
|
|
||||||
#Banana Clown
|
|
||||||
- type: startingGear
|
|
||||||
id: BananaClown
|
|
||||||
equipment:
|
|
||||||
shoes: ClothingShoesClownBanana
|
|
||||||
jumpsuit: ClothingUniformJumpsuitClownBanana
|
|
||||||
mask: ClothingMaskClownBanana
|
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Medical
|
department: Medical
|
||||||
time: 14400 #4 hrs
|
time: 1800
|
||||||
startingGear: ChemistGear
|
startingGear: ChemistGear
|
||||||
icon: "JobIconChemist"
|
icon: "Chemist"
|
||||||
supervisors: job-supervisors-cmo
|
supervisors: job-supervisors-cmo
|
||||||
access:
|
access:
|
||||||
- Medical
|
- Medical
|
||||||
@@ -27,6 +27,9 @@
|
|||||||
belt: ChemBag
|
belt: ChemBag
|
||||||
pocket1: HandLabeler
|
pocket1: HandLabeler
|
||||||
# the purple glasses?
|
# the purple glasses?
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtChemistry
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtChemistry
|
||||||
satchel: ClothingBackpackSatchelChemistryFilled
|
satchel: ClothingBackpackSatchelChemistryFilled
|
||||||
duffelbag: ClothingBackpackDuffelChemistryFilled
|
duffelbag: ClothingBackpackDuffelChemistryFilled
|
||||||
|
|||||||
@@ -6,39 +6,26 @@
|
|||||||
description: job-description-cmo
|
description: job-description-cmo
|
||||||
playTimeTracker: JobChiefMedicalOfficer
|
playTimeTracker: JobChiefMedicalOfficer
|
||||||
requirements:
|
requirements:
|
||||||
- !type:RoleTimeRequirement
|
|
||||||
role: JobChemist
|
|
||||||
time: 10800 #3 hrs
|
|
||||||
- !type:RoleTimeRequirement
|
|
||||||
role: JobMedicalDoctor
|
|
||||||
time: 21600 #6 hrs
|
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Medical
|
department: Medical
|
||||||
time: 36000 #10 hrs
|
time: 18000
|
||||||
- !type:OverallPlaytimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
time: 144000 #40 hrs
|
time: 108000
|
||||||
weight: 10
|
weight: 10
|
||||||
startingGear: CMOGear
|
startingGear: CMOGear
|
||||||
icon: "JobIconChiefMedicalOfficer"
|
icon: "ChiefMedicalOfficer"
|
||||||
requireAdminNotify: true
|
requireAdminNotify: true
|
||||||
supervisors: job-supervisors-captain
|
supervisors: job-supervisors-captain
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Felinid
|
- Dwarf
|
||||||
canBeAntag: true
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Medical
|
- Medical
|
||||||
- Command
|
- Command
|
||||||
- Maintenance
|
- Maintenance
|
||||||
- Chemistry
|
- Chemistry
|
||||||
- ChiefMedicalOfficer
|
- ChiefMedicalOfficer
|
||||||
- Brig
|
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
- !type:AddComponentSpecial
|
|
||||||
components:
|
|
||||||
- type: CommandStaff
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: CMOGear
|
id: CMOGear
|
||||||
@@ -50,6 +37,9 @@
|
|||||||
id: CMOPDA
|
id: CMOPDA
|
||||||
ears: ClothingHeadsetCMO
|
ears: ClothingHeadsetCMO
|
||||||
belt: ClothingBeltMedicalFilled
|
belt: ClothingBeltMedicalFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtCMO
|
underwearb: ClothingUnderwearBottomBoxersCMO # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraCMO # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesCMO # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtCMO
|
||||||
satchel: ClothingBackpackSatchelCMOFilled
|
satchel: ClothingBackpackSatchelCMOFilled
|
||||||
duffelbag: ClothingBackpackDuffelCMOFilled
|
duffelbag: ClothingBackpackDuffelCMOFilled
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Medical
|
department: Medical
|
||||||
time: 14400 #4 hrs
|
time: 1800
|
||||||
startingGear: DoctorGear
|
startingGear: DoctorGear
|
||||||
icon: "JobIconMedicalDoctor"
|
icon: "MedicalDoctor"
|
||||||
supervisors: job-supervisors-cmo
|
supervisors: job-supervisors-cmo
|
||||||
access:
|
access:
|
||||||
- Medical
|
- Medical
|
||||||
@@ -26,6 +26,9 @@
|
|||||||
id: MedicalPDA
|
id: MedicalPDA
|
||||||
ears: ClothingHeadsetMedical
|
ears: ClothingHeadsetMedical
|
||||||
belt: ClothingBeltMedicalFilled
|
belt: ClothingBeltMedicalFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtMedicalDoctor
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtMedicalDoctor
|
||||||
satchel: ClothingBackpackSatchelMedicalFilled
|
satchel: ClothingBackpackSatchelMedicalFilled
|
||||||
duffelbag: ClothingBackpackDuffelMedicalFilled
|
duffelbag: ClothingBackpackDuffelMedicalFilled
|
||||||
|
|||||||
@@ -6,12 +6,12 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Medical
|
department: Medical
|
||||||
time: 54000 # 15 hrs
|
time: 28800
|
||||||
inverted: true # stop playing intern if you're good at med!
|
inverted: true # stop playing intern if you're good at med!
|
||||||
startingGear: MedicalInternGear
|
startingGear: MedicalInternGear
|
||||||
icon: "JobIconMedicalIntern"
|
icon: "MedicalIntern"
|
||||||
supervisors: job-supervisors-medicine
|
supervisors: job-supervisors-medicine
|
||||||
canBeAntag: true
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Medical
|
- Medical
|
||||||
- Maintenance
|
- Maintenance
|
||||||
@@ -25,6 +25,9 @@
|
|||||||
id: MedicalInternPDA
|
id: MedicalInternPDA
|
||||||
ears: ClothingHeadsetMedical
|
ears: ClothingHeadsetMedical
|
||||||
belt: ClothingBeltMedicalFilled
|
belt: ClothingBeltMedicalFilled
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorWhite
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorWhite
|
||||||
satchel: ClothingBackpackSatchelMedicalFilled
|
satchel: ClothingBackpackSatchelMedicalFilled
|
||||||
duffelbag: ClothingBackpackDuffelMedicalFilled
|
duffelbag: ClothingBackpackDuffelMedicalFilled
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
- type: job
|
- type: job
|
||||||
id: ResearchAssistant
|
id: ResearchAssistant
|
||||||
name: job-name-research-assistant
|
name: job-name-research-assistant
|
||||||
description: job-description-research-assistant
|
description: job-description-research-assistant
|
||||||
@@ -6,12 +6,12 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Science
|
department: Science
|
||||||
time: 54000 #15 hrs
|
time: 28800
|
||||||
inverted: true # stop playing intern if you're good at science!
|
inverted: true # stop playing intern if you're good at science!
|
||||||
startingGear: ResearchAssistantGear
|
startingGear: ResearchAssistantGear
|
||||||
icon: "JobIconResearchAssistant"
|
icon: "ResearchAssistant"
|
||||||
supervisors: job-supervisors-science
|
supervisors: job-supervisors-rd
|
||||||
canBeAntag: true
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Research
|
- Research
|
||||||
- Maintenance
|
- Maintenance
|
||||||
@@ -24,6 +24,9 @@
|
|||||||
shoes: ClothingShoesColorWhite
|
shoes: ClothingShoesColorWhite
|
||||||
id: ResearchAssistantPDA
|
id: ResearchAssistantPDA
|
||||||
ears: ClothingHeadsetScience
|
ears: ClothingHeadsetScience
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorWhite
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorWhite
|
||||||
satchel: ClothingBackpackSatchelScienceFilled
|
satchel: ClothingBackpackSatchelScienceFilled
|
||||||
duffelbag: ClothingBackpackDuffelScienceFilled
|
duffelbag: ClothingBackpackDuffelScienceFilled
|
||||||
|
|||||||
@@ -6,30 +6,23 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Science
|
department: Science
|
||||||
time: 36000 #10 hrs
|
time: 18000
|
||||||
- !type:OverallPlaytimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
time: 144000 #40 hrs
|
time: 108000
|
||||||
weight: 10
|
weight: 10
|
||||||
startingGear: ResearchDirectorGear
|
startingGear: ResearchDirectorGear
|
||||||
icon: "JobIconResearchDirector"
|
icon: "ResearchDirector"
|
||||||
requireAdminNotify: true
|
requireAdminNotify: true
|
||||||
supervisors: job-supervisors-captain
|
supervisors: job-supervisors-captain
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Felinid
|
- Dwarf
|
||||||
canBeAntag: true
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Research
|
- Research
|
||||||
- Command
|
- Command
|
||||||
- Maintenance
|
- Maintenance
|
||||||
- ResearchDirector
|
- ResearchDirector
|
||||||
- Brig
|
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
- !type:AddComponentSpecial
|
|
||||||
components:
|
|
||||||
- type: CommandStaff
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: ResearchDirectorGear
|
id: ResearchDirectorGear
|
||||||
@@ -37,9 +30,12 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitResearchDirector
|
jumpsuit: ClothingUniformJumpsuitResearchDirector
|
||||||
back: ClothingBackpackResearchDirectorFilled
|
back: ClothingBackpackResearchDirectorFilled
|
||||||
shoes: ClothingShoesColorBrown
|
shoes: ClothingShoesColorBrown
|
||||||
outerClothing: ClothingOuterCoatRD
|
outerClothing: ClothingOuterCoatRnd
|
||||||
id: RnDPDA
|
id: RnDPDA
|
||||||
ears: ClothingHeadsetRD
|
ears: ClothingHeadsetRD
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtResearchDirector
|
underwearb: ClothingUnderwearBottomBoxersRD # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraRD # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesRD # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtResearchDirector
|
||||||
satchel: ClothingBackpackSatchelResearchDirectorFilled
|
satchel: ClothingBackpackSatchelResearchDirectorFilled
|
||||||
duffelbag: ClothingBackpackDuffelResearchDirectorFilled
|
duffelbag: ClothingBackpackDuffelResearchDirectorFilled
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Science
|
department: Science
|
||||||
time: 14400 #4 hrs
|
time: 1800
|
||||||
startingGear: ScientistGear
|
startingGear: ScientistGear
|
||||||
icon: "JobIconScientist"
|
icon: "Scientist"
|
||||||
supervisors: job-supervisors-rd
|
supervisors: job-supervisors-rd
|
||||||
access:
|
access:
|
||||||
- Research
|
- Research
|
||||||
@@ -23,6 +23,9 @@
|
|||||||
outerClothing: ClothingOuterCoatRnd
|
outerClothing: ClothingOuterCoatRnd
|
||||||
id: SciencePDA
|
id: SciencePDA
|
||||||
ears: ClothingHeadsetScience
|
ears: ClothingHeadsetScience
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtScientist
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraWhite # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtScientist
|
||||||
satchel: ClothingBackpackSatchelScienceFilled
|
satchel: ClothingBackpackSatchelScienceFilled
|
||||||
duffelbag: ClothingBackpackDuffelScienceFilled
|
duffelbag: ClothingBackpackDuffelScienceFilled
|
||||||
|
|||||||
46
Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
- type: job
|
||||||
|
id: Brigmedic
|
||||||
|
name: job-name-brigmedic
|
||||||
|
description: job-description-brigmedic
|
||||||
|
playTimeTracker: JobBrigmedic
|
||||||
|
requirements:
|
||||||
|
- !type:DepartmentTimeRequirement
|
||||||
|
department: Medical
|
||||||
|
time: 18000
|
||||||
|
- !type:DepartmentTimeRequirement
|
||||||
|
department: Security
|
||||||
|
time: 7200
|
||||||
|
startingGear: BrigmedicGear
|
||||||
|
icon: "Brigmedic"
|
||||||
|
supervisors: job-supervisors-hos
|
||||||
|
whitelistedSpecies:
|
||||||
|
- Human
|
||||||
|
- Dwarf
|
||||||
|
canBeAntag: false
|
||||||
|
access:
|
||||||
|
- Medical
|
||||||
|
- Security
|
||||||
|
- Brig
|
||||||
|
- Maintenance
|
||||||
|
- External
|
||||||
|
|
||||||
|
- type: startingGear
|
||||||
|
id: BrigmedicGear
|
||||||
|
equipment:
|
||||||
|
jumpsuit: ClothingUniformJumpsuitBrigmedic
|
||||||
|
outerClothing: ClothingOuterCoatAMG
|
||||||
|
back: ClothingBackpackBrigmedicFilled
|
||||||
|
shoes: ClothingShoesColorRed
|
||||||
|
gloves: ClothingHandsGlovesNitrile
|
||||||
|
eyes: ClothingEyesHudMedical
|
||||||
|
head: ClothingHeadHatBeretBrigmedic
|
||||||
|
id: BrigmedicPDA
|
||||||
|
ears: ClothingHeadsetBrigmedic
|
||||||
|
mask: ClothingMaskBreathMedicalSecurity
|
||||||
|
belt: ClothingBeltMedicalFilled
|
||||||
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtBrigmedic
|
||||||
|
satchel: ClothingBackpackSatchelBrigmedicFilled
|
||||||
|
duffelbag: ClothingBackpackDuffelBrigmedicFilled
|
||||||
@@ -6,14 +6,13 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Security
|
department: Security
|
||||||
time: 54000 # 15 hours
|
time: 7200 #2 hrs
|
||||||
startingGear: DetectiveGear
|
startingGear: DetectiveGear
|
||||||
icon: "JobIconDetective"
|
icon: "Detective"
|
||||||
supervisors: job-supervisors-hos
|
supervisors: job-supervisors-hos
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
- Dwarf
|
- Dwarf
|
||||||
- Felinid
|
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Security
|
- Security
|
||||||
@@ -21,22 +20,24 @@
|
|||||||
- Maintenance
|
- Maintenance
|
||||||
- Service
|
- Service
|
||||||
- Detective
|
- Detective
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: DetectiveGear
|
id: DetectiveGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitDetective
|
jumpsuit: ClothingUniformJumpsuitDetective
|
||||||
back: ClothingBackpackSecurityFilledDetective
|
back: ClothingBackpackSecurityFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsJack
|
||||||
eyes: ClothingEyesGlassesSunglasses
|
eyes: ClothingEyesGlassesSunglasses
|
||||||
head: ClothingHeadHatFedoraBrown
|
head: ClothingHeadHatFedoraBrown
|
||||||
outerClothing: ClothingOuterVestDetective
|
outerClothing: ClothingOuterVestDetective
|
||||||
id: DetectivePDA
|
id: DetectivePDA
|
||||||
ears: ClothingHeadsetSecurity
|
ears: ClothingHeadsetSecurity
|
||||||
belt: ClothingBeltHolsterFilled
|
pocket1: ForensicPad
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtDetective
|
pocket2: ForensicScanner
|
||||||
satchel: ClothingBackpackSatchelSecurityFilledDetective
|
belt: ClothingBeltHolster
|
||||||
duffelbag: ClothingBackpackDuffelSecurityFilledDetective
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtDetective
|
||||||
|
satchel: ClothingBackpackSatchelSecurityFilled
|
||||||
|
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||||
|
|||||||
@@ -6,22 +6,20 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:RoleTimeRequirement
|
- !type:RoleTimeRequirement
|
||||||
role: JobWarden
|
role: JobWarden
|
||||||
time: 10800 #3 hrs
|
time: 3600
|
||||||
- !type:RoleTimeRequirement
|
|
||||||
role: JobSecurityOfficer
|
|
||||||
time: 36000 #10 hrs
|
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Security
|
department: Security
|
||||||
time: 108000 # 30 hrs
|
time: 18000
|
||||||
- !type:OverallPlaytimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
time: 144000 #40 hrs
|
time: 108000
|
||||||
weight: 10
|
weight: 10
|
||||||
startingGear: HoSGear
|
startingGear: HoSGear
|
||||||
icon: "JobIconHeadOfSecurity"
|
icon: "HeadOfSecurity"
|
||||||
requireAdminNotify: true
|
requireAdminNotify: true
|
||||||
supervisors: job-supervisors-captain
|
supervisors: job-supervisors-captain
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
|
- Dwarf
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- HeadOfSecurity
|
- HeadOfSecurity
|
||||||
@@ -33,12 +31,6 @@
|
|||||||
- Service
|
- Service
|
||||||
- External
|
- External
|
||||||
- Detective
|
- Detective
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
- !type:AddComponentSpecial
|
|
||||||
components:
|
|
||||||
- type: CommandStaff
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: HoSGear
|
id: HoSGear
|
||||||
@@ -47,13 +39,15 @@
|
|||||||
back: ClothingBackpackHOSFilled
|
back: ClothingBackpackHOSFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
outerClothing: ClothingOuterCoatHoSTrench
|
outerClothing: ClothingOuterCoatHoSTrench
|
||||||
eyes: ClothingEyesGlassesSunglasses
|
eyes: ClothingEyesGlassesSecurity
|
||||||
head: ClothingHeadHatBeretHoS
|
head: ClothingHeadHatBeretHoS
|
||||||
id: HoSPDA
|
id: HoSPDA
|
||||||
gloves: ClothingHandsGlovesCombat
|
gloves: ClothingHandsGlovesCombat
|
||||||
ears: ClothingHeadsetAltSecurity
|
ears: ClothingHeadsetAltSecurity
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityFilled
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
underwearb: ClothingUnderwearBottomBoxersHOS # White-Underwear
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtHoS
|
underweart: ClothingUnderwearTopBraHOS # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesHOS # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtHoS
|
||||||
satchel: ClothingBackpackSatchelHOSFilled
|
satchel: ClothingBackpackSatchelHOSFilled
|
||||||
duffelbag: ClothingBackpackDuffelHOSFilled
|
duffelbag: ClothingBackpackDuffelHOSFilled
|
||||||
|
|||||||
@@ -1,39 +1,38 @@
|
|||||||
- type: job
|
- type: job
|
||||||
id: SecurityCadet
|
id: SecurityCadet
|
||||||
name: job-name-cadet
|
name: job-name-cadet
|
||||||
description: job-description-cadet
|
description: job-description-cadet
|
||||||
playTimeTracker: JobSecurityCadet
|
playTimeTracker: JobSecurityCadet
|
||||||
requirements:
|
requirements:
|
||||||
- !type:OverallPlaytimeRequirement
|
- !type:OverallPlaytimeRequirement
|
||||||
time: 36000 #10 hrs
|
time: 18000 #5 hrs
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Security
|
department: Security
|
||||||
time: 54000 #15 hrs
|
time: 28800 #8 hrs
|
||||||
inverted: true # stop playing intern if you're good at security!
|
inverted: true # stop playing intern if you're good at security!
|
||||||
startingGear: SecurityCadetGear
|
startingGear: SecurityCadetGear
|
||||||
icon: "JobIconSecurityCadet"
|
icon: "SecurityCadet"
|
||||||
supervisors: job-supervisors-security
|
supervisors: job-supervisors-security
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
|
- Dwarf
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Security
|
- Security
|
||||||
- Brig
|
- Brig
|
||||||
- Maintenance
|
- Maintenance
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SecurityCadetGear
|
id: SecurityCadetGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitColorRed
|
jumpsuit: ClothingUniformJumpsuitColorRed
|
||||||
back: ClothingBackpackSecurityFilled
|
back: ClothingBackpackSecurityFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsJack
|
||||||
outerClothing: ClothingOuterArmorBasic
|
|
||||||
id: SecurityCadetPDA
|
id: SecurityCadetPDA
|
||||||
ears: ClothingHeadsetSecurity
|
ears: ClothingHeadsetSecurity
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtColorRed
|
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtColorRed
|
||||||
satchel: ClothingBackpackSatchelSecurityFilled
|
satchel: ClothingBackpackSatchelSecurityFilled
|
||||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||||
|
|||||||
@@ -6,12 +6,13 @@
|
|||||||
requirements:
|
requirements:
|
||||||
- !type:DepartmentTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
department: Security
|
department: Security
|
||||||
time: 36000 #10 hrs
|
time: 3600 #1 hr
|
||||||
startingGear: SecurityOfficerGear
|
startingGear: SecurityOfficerGear
|
||||||
icon: "JobIconSecurityOfficer"
|
icon: "SecurityOfficer"
|
||||||
supervisors: job-supervisors-hos
|
supervisors: job-supervisors-hos
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
|
- Dwarf
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Security
|
- Security
|
||||||
@@ -19,23 +20,22 @@
|
|||||||
- Maintenance
|
- Maintenance
|
||||||
- Service
|
- Service
|
||||||
- External
|
- External
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: SecurityOfficerGear
|
id: SecurityOfficerGear
|
||||||
equipment:
|
equipment:
|
||||||
jumpsuit: ClothingUniformJumpsuitSec
|
jumpsuit: ClothingUniformJumpsuitSec
|
||||||
back: ClothingBackpackSecurityFilled
|
back: ClothingBackpackSecurityFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsJack
|
||||||
eyes: ClothingEyesGlassesSunglasses
|
eyes: ClothingEyesGlassesSecurity
|
||||||
head: ClothingHeadHelmetBasic
|
head: ClothingHeadHelmetHelmetOld
|
||||||
outerClothing: ClothingOuterArmorBasic
|
outerClothing: ClothingOuterVestKevlar
|
||||||
id: SecurityPDA
|
id: SecurityPDA
|
||||||
ears: ClothingHeadsetSecurity
|
ears: ClothingHeadsetSecurity
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityFilled
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtSec
|
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtSec
|
||||||
satchel: ClothingBackpackSatchelSecurityFilled
|
satchel: ClothingBackpackSatchelSecurityFilled
|
||||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||||
|
|||||||
@@ -4,26 +4,24 @@
|
|||||||
description: job-description-warden
|
description: job-description-warden
|
||||||
playTimeTracker: JobWarden
|
playTimeTracker: JobWarden
|
||||||
requirements:
|
requirements:
|
||||||
- !type:RoleTimeRequirement
|
- !type:DepartmentTimeRequirement
|
||||||
role: JobSecurityOfficer
|
department: Security
|
||||||
time: 36000 #10 hrs
|
time: 10800
|
||||||
startingGear: WardenGear
|
startingGear: WardenGear
|
||||||
icon: "JobIconWarden"
|
icon: "Warden"
|
||||||
supervisors: job-supervisors-hos
|
supervisors: job-supervisors-hos
|
||||||
whitelistedSpecies:
|
whitelistedSpecies:
|
||||||
- Human
|
- Human
|
||||||
|
- Dwarf
|
||||||
canBeAntag: false
|
canBeAntag: false
|
||||||
access:
|
access:
|
||||||
- Security
|
- Security
|
||||||
- Brig
|
|
||||||
- Armory
|
- Armory
|
||||||
- Maintenance
|
- Maintenance
|
||||||
- Service
|
- Service
|
||||||
|
- Brig
|
||||||
- External
|
- External
|
||||||
- Detective
|
- Detective
|
||||||
special:
|
|
||||||
- !type:AddImplantSpecial
|
|
||||||
implants: [ MindShieldImplant ]
|
|
||||||
|
|
||||||
- type: startingGear
|
- type: startingGear
|
||||||
id: WardenGear
|
id: WardenGear
|
||||||
@@ -32,12 +30,14 @@
|
|||||||
jumpsuit: ClothingUniformJumpsuitWarden
|
jumpsuit: ClothingUniformJumpsuitWarden
|
||||||
back: ClothingBackpackSecurityFilled
|
back: ClothingBackpackSecurityFilled
|
||||||
shoes: ClothingShoesBootsCombatFilled
|
shoes: ClothingShoesBootsCombatFilled
|
||||||
eyes: ClothingEyesGlassesSunglasses
|
eyes: ClothingEyesGlassesSecurity
|
||||||
outerClothing: ClothingOuterCoatWarden
|
outerClothing: ClothingOuterCoatWarden
|
||||||
id: WardenPDA
|
id: WardenPDA
|
||||||
ears: ClothingHeadsetSecurity
|
ears: ClothingHeadsetSecurity
|
||||||
belt: ClothingBeltSecurityFilled
|
belt: ClothingBeltSecurityFilled
|
||||||
pocket1: WeaponPistolMk58Nonlethal
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
innerClothingSkirt: ClothingUniformJumpskirtWarden
|
underweart: ClothingUnderwearTopBraSportsAlternative # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpskirtWarden
|
||||||
satchel: ClothingBackpackSatchelSecurityFilled
|
satchel: ClothingBackpackSatchelSecurityFilled
|
||||||
duffelbag: ClothingBackpackDuffelSecurityFilled
|
duffelbag: ClothingBackpackDuffelSecurityFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-boxer
|
description: job-description-boxer
|
||||||
playTimeTracker: JobBoxer
|
playTimeTracker: JobBoxer
|
||||||
startingGear: BoxerGear
|
startingGear: BoxerGear
|
||||||
icon: "JobIconBoxer"
|
icon: "Boxer"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
@@ -20,6 +20,9 @@
|
|||||||
gloves: ClothingHandsGlovesBoxingRed
|
gloves: ClothingHandsGlovesBoxingRed
|
||||||
shoes: ClothingShoesColorRed
|
shoes: ClothingShoesColorRed
|
||||||
belt: ClothingBeltChampion
|
belt: ClothingBeltChampion
|
||||||
innerClothingSkirt: UniformShortsRedWithTop
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: UniformShortsRedWithTop
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-psychologist
|
description: job-description-psychologist
|
||||||
playTimeTracker: JobPsychologist
|
playTimeTracker: JobPsychologist
|
||||||
startingGear: PsychologistGear
|
startingGear: PsychologistGear
|
||||||
icon: "JobIconPsychologist"
|
icon: "Psychologist"
|
||||||
supervisors: job-supervisors-cmo
|
supervisors: job-supervisors-cmo
|
||||||
access:
|
access:
|
||||||
- Medical
|
- Medical
|
||||||
@@ -20,6 +20,9 @@
|
|||||||
shoes: ClothingShoesLeather
|
shoes: ClothingShoesLeather
|
||||||
id: PsychologistPDA
|
id: PsychologistPDA
|
||||||
ears: ClothingHeadsetMedical
|
ears: ClothingHeadsetMedical
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitPsychologist
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpsuitPsychologist
|
||||||
satchel: ClothingBackpackSatchelMedicalFilled
|
satchel: ClothingBackpackSatchelMedicalFilled
|
||||||
duffelbag: ClothingBackpackDuffelMedicalFilled
|
duffelbag: ClothingBackpackDuffelMedicalFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-reporter
|
description: job-description-reporter
|
||||||
playTimeTracker: JobReporter
|
playTimeTracker: JobReporter
|
||||||
startingGear: ReporterGear
|
startingGear: ReporterGear
|
||||||
icon: "JobIconReporter"
|
icon: "Reporter"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
@@ -18,6 +18,9 @@
|
|||||||
shoes: ClothingShoesColorWhite
|
shoes: ClothingShoesColorWhite
|
||||||
id: ReporterPDA
|
id: ReporterPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitJournalist
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpsuitJournalist
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
duffelbag: ClothingBackpackDuffelFilled
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
description: job-description-zookeeper
|
description: job-description-zookeeper
|
||||||
playTimeTracker: JobZookeeper
|
playTimeTracker: JobZookeeper
|
||||||
startingGear: ZookeeperGear
|
startingGear: ZookeeperGear
|
||||||
icon: "JobIconZookeeper"
|
icon: "Zookeeper"
|
||||||
supervisors: job-supervisors-hop
|
supervisors: job-supervisors-hop
|
||||||
access:
|
access:
|
||||||
- Service
|
- Service
|
||||||
@@ -19,6 +19,9 @@
|
|||||||
shoes: ClothingShoesColorWhite
|
shoes: ClothingShoesColorWhite
|
||||||
id: ZookeeperPDA
|
id: ZookeeperPDA
|
||||||
ears: ClothingHeadsetService
|
ears: ClothingHeadsetService
|
||||||
innerClothingSkirt: ClothingUniformJumpsuitSafari
|
underwearb: ClothingUnderwearBottomBoxersWhite # White-Underwear
|
||||||
|
underweart: ClothingUnderwearTopBraSports # White-Underwear
|
||||||
|
underwearb: ClothingUnderwearBottomPantiesWhite # White-Underwear
|
||||||
|
innerclothingskirt: ClothingUniformJumpsuitSafari
|
||||||
satchel: ClothingBackpackSatchelFilled
|
satchel: ClothingBackpackSatchelFilled
|
||||||
duffelbag: ClothingBackpackDuffelFilled
|
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
|
id: WriteIgnoreStamps
|
||||||
|
|
||||||
# PUT YOUR TAGS IN ALPHABETICAL ORDER
|
# 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 |