Craft menu translate (#88)
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
<BoxContainer Orientation="Vertical" HorizontalExpand="True" SizeFlagsStretchRatio="0.45">
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" SizeFlagsStretchRatio="0.45">
|
||||||
<BoxContainer Orientation="Horizontal" HorizontalExpand="True" VerticalExpand="True"
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True" VerticalExpand="True"
|
||||||
SizeFlagsStretchRatio="0.1">
|
SizeFlagsStretchRatio="0.1">
|
||||||
<LineEdit Name="SearchBar" PlaceHolder="Search" HorizontalExpand="True"
|
<LineEdit Name="SearchBar" PlaceHolder="Поиск" HorizontalExpand="True"
|
||||||
SizeFlagsStretchRatio="0.6" />
|
SizeFlagsStretchRatio="0.6" />
|
||||||
</BoxContainer>
|
</BoxContainer>
|
||||||
<ItemList Name="OutfitList" SelectMode="Single" VerticalExpand="True"
|
<ItemList Name="OutfitList" SelectMode="Single" VerticalExpand="True"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
||||||
<BoxContainer Orientation="Vertical" HorizontalExpand="True" SizeFlagsStretchRatio="0.4">
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" SizeFlagsStretchRatio="0.4">
|
||||||
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
||||||
<LineEdit Name="SearchBar" PlaceHolder="Search" HorizontalExpand="True"/>
|
<LineEdit Name="SearchBar" PlaceHolder="Поиск" HorizontalExpand="True"/>
|
||||||
<OptionButton Name="Category" Access="Public" MinSize="130 0"/>
|
<OptionButton Name="Category" Access="Public" MinSize="130 0"/>
|
||||||
</BoxContainer>
|
</BoxContainer>
|
||||||
<ItemList Name="Recipes" Access="Public" SelectMode="Single" VerticalExpand="True"/>
|
<ItemList Name="Recipes" Access="Public" SelectMode="Single" VerticalExpand="True"/>
|
||||||
|
|||||||
@@ -62,8 +62,12 @@ namespace Content.Client.Construction.UI
|
|||||||
else
|
else
|
||||||
_constructionView.OpenCentered();
|
_constructionView.OpenCentered();
|
||||||
|
|
||||||
if(_selected != null)
|
if (_selected != null)
|
||||||
PopulateInfo(_selected);
|
{
|
||||||
|
var name = Loc.GetString($"ent-{_selected.ID}");
|
||||||
|
var desc = Loc.GetString($"ent-{_selected.ID}.desc");
|
||||||
|
PopulateInfo(_selected, name, desc);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
_constructionView.Close();
|
_constructionView.Close();
|
||||||
@@ -139,7 +143,10 @@ namespace Content.Client.Construction.UI
|
|||||||
|
|
||||||
_selected = (ConstructionPrototype) item.Metadata!;
|
_selected = (ConstructionPrototype) item.Metadata!;
|
||||||
if (_placementManager.IsActive && !_placementManager.Eraser) UpdateGhostPlacement();
|
if (_placementManager.IsActive && !_placementManager.Eraser) UpdateGhostPlacement();
|
||||||
PopulateInfo(_selected);
|
|
||||||
|
var name = Loc.GetString($"ent-{_selected.ID}");
|
||||||
|
var desc = Loc.GetString($"ent-{_selected.ID}.desc");
|
||||||
|
PopulateInfo(_selected, name, desc);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnViewPopulateRecipes(object? sender, (string search, string catagory) args)
|
private void OnViewPopulateRecipes(object? sender, (string search, string catagory) args)
|
||||||
@@ -162,7 +169,7 @@ namespace Content.Client.Construction.UI
|
|||||||
|
|
||||||
if (!string.IsNullOrEmpty(search))
|
if (!string.IsNullOrEmpty(search))
|
||||||
{
|
{
|
||||||
if (!recipe.Name.ToLowerInvariant().Contains(search.Trim().ToLowerInvariant()))
|
if (!Loc.GetString($"ent-{recipe.ID}").ToLowerInvariant().Contains(search.Trim().ToLowerInvariant()))
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -175,7 +182,7 @@ namespace Content.Client.Construction.UI
|
|||||||
recipes.Add(recipe);
|
recipes.Add(recipe);
|
||||||
}
|
}
|
||||||
|
|
||||||
recipes.Sort((a, b) => string.Compare(a.Name, b.Name, StringComparison.InvariantCulture));
|
recipes.Sort((a, b) => string.Compare(Loc.GetString($"ent-{a.ID}"), Loc.GetString($"ent-{b.ID}"), StringComparison.InvariantCulture));
|
||||||
|
|
||||||
foreach (var recipe in recipes)
|
foreach (var recipe in recipes)
|
||||||
{
|
{
|
||||||
@@ -214,11 +221,26 @@ namespace Content.Client.Construction.UI
|
|||||||
_constructionView.Categories = array;
|
_constructionView.Categories = array;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PopulateInfo(ConstructionPrototype prototype)
|
private void PopulateInfo(ConstructionPrototype prototype, string name, string desc)
|
||||||
{
|
{
|
||||||
var spriteSys = _systemManager.GetEntitySystem<SpriteSystem>();
|
var spriteSys = _systemManager.GetEntitySystem<SpriteSystem>();
|
||||||
_constructionView.ClearRecipeInfo();
|
_constructionView.ClearRecipeInfo();
|
||||||
_constructionView.SetRecipeInfo(prototype.Name, prototype.Description, spriteSys.Frame0(prototype.Icon), prototype.Type != ConstructionType.Item);
|
|
||||||
|
string recipeName;
|
||||||
|
string recipeDesc;
|
||||||
|
|
||||||
|
if (name[..3] != "ent")
|
||||||
|
{
|
||||||
|
recipeName = name;
|
||||||
|
recipeDesc = desc;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
recipeName = prototype.Name;
|
||||||
|
recipeDesc = prototype.Description;
|
||||||
|
}
|
||||||
|
|
||||||
|
_constructionView.SetRecipeInfo(recipeName, recipeDesc, spriteSys.Frame0(prototype.Icon), prototype.Type != ConstructionType.Item);
|
||||||
|
|
||||||
var stepList = _constructionView.RecipeStepList;
|
var stepList = _constructionView.RecipeStepList;
|
||||||
GenerateStepList(prototype, stepList);
|
GenerateStepList(prototype, stepList);
|
||||||
@@ -252,13 +274,24 @@ namespace Content.Client.Construction.UI
|
|||||||
|
|
||||||
private static ItemList.Item GetItem(ConstructionPrototype recipe, ItemList itemList)
|
private static ItemList.Item GetItem(ConstructionPrototype recipe, ItemList itemList)
|
||||||
{
|
{
|
||||||
|
string recipeName = Loc.GetString($"ent-{recipe.ID}");
|
||||||
|
string recipeDesc;
|
||||||
|
|
||||||
|
if (recipeName[..3] != "ent")
|
||||||
|
recipeDesc = Loc.GetString($"ent-{recipe.ID}.desc");
|
||||||
|
else
|
||||||
|
{
|
||||||
|
recipeName = recipe.Name;
|
||||||
|
recipeDesc = recipe.Description;
|
||||||
|
}
|
||||||
|
|
||||||
return new(itemList)
|
return new(itemList)
|
||||||
{
|
{
|
||||||
Metadata = recipe,
|
Metadata = recipe,
|
||||||
Text = recipe.Name,
|
Text = recipeName,
|
||||||
Icon = recipe.Icon.Frame0(),
|
Icon = recipe.Icon.Frame0(),
|
||||||
TooltipEnabled = true,
|
TooltipEnabled = true,
|
||||||
TooltipText = recipe.Description
|
TooltipText = recipeDesc
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -433,7 +466,9 @@ namespace Content.Client.Construction.UI
|
|||||||
if (_selected == null)
|
if (_selected == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
PopulateInfo(_selected);
|
var name = Loc.GetString($"ent-{_selected.ID}");
|
||||||
|
var desc = Loc.GetString($"ent-{_selected.ID}.desc");
|
||||||
|
PopulateInfo(_selected, name, desc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ namespace Content.IntegrationTests.Tests.Construction.Interaction;
|
|||||||
|
|
||||||
public sealed class ComputerConstruction : InteractionTest
|
public sealed class ComputerConstruction : InteractionTest
|
||||||
{
|
{
|
||||||
private const string Computer = "Computer";
|
private const string Computer = "ComputerFrame";
|
||||||
private const string ComputerId = "ComputerId";
|
private const string ComputerId = "ComputerId";
|
||||||
private const string ComputerFrame = "ComputerFrame";
|
private const string ComputerFrame = "ComputerFrame";
|
||||||
private const string IdBoard = "IDComputerCircuitboard";
|
private const string IdBoard = "IDComputerCircuitboard";
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ public sealed class CraftingTests : InteractionTest
|
|||||||
public async Task CraftGrenade()
|
public async Task CraftGrenade()
|
||||||
{
|
{
|
||||||
await PlaceInHands(Steel, 5);
|
await PlaceInHands(Steel, 5);
|
||||||
await CraftItem("ModularGrenadeRecipe");
|
await CraftItem("ModularGrenade");
|
||||||
await FindEntity("ModularGrenade");
|
await FindEntity("ModularGrenade");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ public sealed class WallConstruction : InteractionTest
|
|||||||
{
|
{
|
||||||
public const string Girder = "Girder";
|
public const string Girder = "Girder";
|
||||||
public const string WallSolid = "WallSolid";
|
public const string WallSolid = "WallSolid";
|
||||||
public const string Wall = "Wall";
|
public const string Wall = "WallSolid";
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public async Task ConstructWall()
|
public async Task ConstructWall()
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ public abstract partial class InteractionTest
|
|||||||
protected const string RGlass = "ReinforcedGlass";
|
protected const string RGlass = "ReinforcedGlass";
|
||||||
protected const string Plastic = "Plastic";
|
protected const string Plastic = "Plastic";
|
||||||
protected const string Cable = "Cable";
|
protected const string Cable = "Cable";
|
||||||
protected const string Rod = "MetalRod";
|
protected const string Rod = "PartRodMetal";
|
||||||
|
|
||||||
// Parts
|
// Parts
|
||||||
protected const string Bin1 = "MatterBinStockPart";
|
protected const string Bin1 = "MatterBinStockPart";
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ public sealed class ModularGrenadeTests : InteractionTest
|
|||||||
public async Task AssembleAndDetonateGrenade()
|
public async Task AssembleAndDetonateGrenade()
|
||||||
{
|
{
|
||||||
await PlaceInHands(Steel, 5);
|
await PlaceInHands(Steel, 5);
|
||||||
await CraftItem("ModularGrenadeRecipe");
|
await CraftItem("ModularGrenade");
|
||||||
Target = SEntMan.GetNetEntity(await FindEntity("ModularGrenade"));
|
Target = SEntMan.GetNetEntity(await FindEntity("ModularGrenade"));
|
||||||
|
|
||||||
await Drop();
|
await Drop();
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
# Glass
|
# Glass
|
||||||
materials-glass = стекло
|
materials-glass = стекло
|
||||||
materials-reinforced-glass = бронестекло
|
materials-reinforced-glass = усиленное стекло
|
||||||
materials-plasma-glass = плазменное стекло
|
materials-plasma-glass = плазменное стекло
|
||||||
materials-reinforced-plasma-glass = плазменное бронестекло
|
materials-reinforced-plasma-glass = усиленное плазменное стекло
|
||||||
# Metals
|
# Metals
|
||||||
materials-steel = сталь
|
materials-steel = сталь
|
||||||
materials-gold = золото
|
materials-gold = золото
|
||||||
|
|||||||
@@ -7,10 +7,10 @@ ent-SheetGlass = стекло
|
|||||||
ent-SheetGlass1 = стекло
|
ent-SheetGlass1 = стекло
|
||||||
.suffix = Один
|
.suffix = Один
|
||||||
.desc = { ent-SheetGlass.desc }
|
.desc = { ent-SheetGlass.desc }
|
||||||
ent-SheetRGlass = бронестекло
|
ent-SheetRGlass = усиленное стекло
|
||||||
.suffix = Полный
|
.suffix = Полный
|
||||||
.desc = Лист армированного стекла.
|
.desc = Лист армированного стекла.
|
||||||
ent-SheetRGlass1 = бронестекло
|
ent-SheetRGlass1 = усиленное стекло
|
||||||
.suffix = Один
|
.suffix = Один
|
||||||
.desc = { ent-SheetRGlass.desc }
|
.desc = { ent-SheetRGlass.desc }
|
||||||
ent-SheetPGlass = плазменное стекло
|
ent-SheetPGlass = плазменное стекло
|
||||||
@@ -19,9 +19,9 @@ ent-SheetPGlass = плазменное стекло
|
|||||||
ent-SheetPGlass1 = плазменное стекло
|
ent-SheetPGlass1 = плазменное стекло
|
||||||
.suffix = Один
|
.suffix = Один
|
||||||
.desc = { ent-SheetPGlass.desc }
|
.desc = { ent-SheetPGlass.desc }
|
||||||
ent-SheetRPGlass = плазменное бронестекло
|
ent-SheetRPGlass = усиленное плазменное стекло
|
||||||
.suffix = Полный
|
.suffix = Полный
|
||||||
.desc = Лист армированной полупрозрачной плазмы.
|
.desc = Лист армированной полупрозрачной плазмы.
|
||||||
ent-SheetRPGlass1 = плазменное бронестекло
|
ent-SheetRPGlass1 = усиленное плазменное стекло
|
||||||
.suffix = Один
|
.suffix = Один
|
||||||
.desc = { ent-SheetRPGlass.desc }
|
.desc = { ent-SheetRPGlass.desc }
|
||||||
|
|||||||
@@ -55,3 +55,114 @@ ent-AltarHeaven = небесный алтарь
|
|||||||
ent-AltarFangs = клыкастый алтарь
|
ent-AltarFangs = клыкастый алтарь
|
||||||
.desc = { ent-AltarHeaven.desc }
|
.desc = { ent-AltarHeaven.desc }
|
||||||
.suffix = { "" }
|
.suffix = { "" }
|
||||||
|
ent-AltarBananium = алтарь хонкоматери
|
||||||
|
.desc = Бананиевый алтарь, посвященный матери хонков.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-StatueBananiumClown = бананиевая статуя спасителя
|
||||||
|
.desc = Статуя из бананиума. В нем изображено возвращение спасителя, который восстанет и поведет клоунов к великому гудку.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-BananiumDoor = бананиевая дверь
|
||||||
|
.desc = Дверь, куда она приведет?
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-FloorBananiumEntity = бананиевый пол
|
||||||
|
.desc = { "" }
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-MaterialBananium = бананиум
|
||||||
|
.desc = Сырой материал.
|
||||||
|
.suffix = { "Полный" }
|
||||||
|
ent-MaterialBananium1 = бананиум
|
||||||
|
.desc = Сырой материал.
|
||||||
|
.suffix = { "Один" }
|
||||||
|
ent-TrashBananiumPeel = кожурка бананиума
|
||||||
|
.desc = { "" }
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-BananiumHorn = бананиевый гудок
|
||||||
|
.desc = Гудок, сделанный из бананиума.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-BananiumOre = бананиевая руда
|
||||||
|
.desc = Кусок непереработанной руды
|
||||||
|
.suffix = { "Полный" }
|
||||||
|
ent-BananiumOre1 = бананиевая руда
|
||||||
|
.desc = Кусок непереработанной руды
|
||||||
|
.suffix = { "Один" }
|
||||||
|
ent-ClothingOuterHardsuitClown = скафандр клоуна
|
||||||
|
.desc = Сделанный на заказ клоунский скафандр.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-BrigTimer = таймер брига
|
||||||
|
.desc = Это таймер для камер брига.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-BigBox = картонная коробка
|
||||||
|
.desc = Хмм? Это просто коробка.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-MobJonkBot = йонкбот
|
||||||
|
.desc = Ужасающий.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-MobMimeBot = мимбот
|
||||||
|
.desc = Почему бы не помахать мимботу дружелюбно?
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-UraniumWindow = уранивое окно
|
||||||
|
.desc = Не облокачивайтесь на стекло!
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-ReinforcedUraniumWindow = уранивое окно
|
||||||
|
.desc = Не облокачивайтесь на стекло!
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-SpearUranium = ураниевое копьё
|
||||||
|
.desc = Копье с урановым осколком в качестве наконечника.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-SheetRUGlass = усиленное ураниевое стекло
|
||||||
|
.desc = Усиленное стекло из урана.
|
||||||
|
.suffix = { "Полный" }
|
||||||
|
ent-SheetRUGlass1 = усиленное ураниевое стекло
|
||||||
|
.desc = Усиленное стекло из урана.
|
||||||
|
.suffix = { "Один" }
|
||||||
|
ent-SheetUGlass = ураниевое стекло
|
||||||
|
.desc = Стекло из урана.
|
||||||
|
.suffix = { "Полный" }
|
||||||
|
ent-SheetUGlass1 = ураниевое стекло
|
||||||
|
.desc = Стекло из урана.
|
||||||
|
.suffix = { "Один" }
|
||||||
|
ent-ShardGlassUranium = осколок уранового стекла
|
||||||
|
.desc = Маленький кусочек уранового стекла.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-UraniumShiv = урановая заточка
|
||||||
|
.desc = Грубое оружие, сделанное из куска ткани и осколка урана.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-ScreenTimer = экранный таймер
|
||||||
|
.desc = Это таймер для отправки временных сигналов на объекты со встроенным экраном.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-SpearReinforced = усиленное копьё
|
||||||
|
.desc = Копье с осколком усиленного стекла в качестве наконечника.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-SpearPlasma = плазменное копьё
|
||||||
|
.desc = Копье с осколком плазменного стекла в качестве наконечника.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-PlasmaShiv = плазменная заточка
|
||||||
|
.desc = Грубое оружие, сделанное из куска ткани и осколка плазмы.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-ReinforcedShiv = усиленная заточка
|
||||||
|
.desc = Грубое оружие, сделанное из куска ткани и осколка усиленного стекла.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-Shiv = заточка
|
||||||
|
.desc = Грубое оружие, сделанное из куска ткани и осколка стекла.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-SignalTimer = сигнальный таймер
|
||||||
|
.desc = Это таймер для отправки временных сигналов предметам.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-HappyHonkMime = Мим Хонк Мил
|
||||||
|
.desc = Лимитированное издание Хэппи Хонк Мила.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-SignalTimerElectronics = микросхема сигнального таймера
|
||||||
|
.desc = Электронная плата, используемая в схемах таймера. Похоже, вы могли бы использовать отвертку, чтобы изменить тип платы.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-ClownRecorder = диктофон клоуна
|
||||||
|
.desc = Когда ты просто не можешь заставить этот смех звучать естественно!
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-BrigTimerElectronics = микросхема таймера брига
|
||||||
|
.desc = Электронная плата, используемая в схемах таймера.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-ScreenTimerElectronics = микросхема экранного таймера
|
||||||
|
.desc = Электронная плата, используемая в схемах таймера.
|
||||||
|
.suffix = { "" }
|
||||||
|
ent-RagItem = влажная тряпка
|
||||||
|
.desc = Влажная тряпка для мытья пола. Это лучше, чем слоняться без дела весь день.
|
||||||
|
.suffix = { "" }
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ ent-TableReinforced = укреплённый стол
|
|||||||
ent-TableGlass = стеклянный стол
|
ent-TableGlass = стеклянный стол
|
||||||
.desc = Квадратный лист стекла, стоящий на четырех металлических ножках.
|
.desc = Квадратный лист стекла, стоящий на четырех металлических ножках.
|
||||||
.suffix = { "" }
|
.suffix = { "" }
|
||||||
ent-TableReinforcedGlass = стол из бронестекла
|
ent-TableReinforcedGlass = стол из усиленного стекла
|
||||||
.desc = Квадратный лист стекла, стоящий на четырех металлических ножках. Очень прочный.
|
.desc = Квадратный лист стекла, стоящий на четырех металлических ножках. Очень прочный.
|
||||||
.suffix = { "" }
|
.suffix = { "" }
|
||||||
ent-TablePlasmaGlass = стол из плазменного стекла
|
ent-TablePlasmaGlass = стол из плазменного стекла
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ ent-WallBrick = кирпичная стена
|
|||||||
ent-WallClock = часовая стена
|
ent-WallClock = часовая стена
|
||||||
.desc = { ent-BaseWall.desc }
|
.desc = { ent-BaseWall.desc }
|
||||||
.suffix = { "" }
|
.suffix = { "" }
|
||||||
ent-WallClown = клоунская стена
|
ent-WallClown = бананиевая стена
|
||||||
.desc = { ent-BaseWall.desc }
|
.desc = { ent-BaseWall.desc }
|
||||||
.suffix = { "" }
|
.suffix = { "" }
|
||||||
ent-WallCult = стена культа
|
ent-WallCult = стена культа
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ tiles-red-shuttle-floor = красный пол шаттла
|
|||||||
tiles-gold-tile = золотой пол
|
tiles-gold-tile = золотой пол
|
||||||
tiles-silver-tile = серебряный пол
|
tiles-silver-tile = серебряный пол
|
||||||
tiles-glass-floor = стеклянный пол
|
tiles-glass-floor = стеклянный пол
|
||||||
tiles-reinforced-glass-floor = бронестеклянный пол
|
tiles-reinforced-glass-floor = усиленный стеклянный пол
|
||||||
tiles-green-circuit-floor = зелёный микросхемный пол
|
tiles-green-circuit-floor = зелёный микросхемный пол
|
||||||
tiles-blue-circuit-floor = синий микросхемный пол
|
tiles-blue-circuit-floor = синий микросхемный пол
|
||||||
tiles-snow = снег
|
tiles-snow = снег
|
||||||
|
|||||||
@@ -270,7 +270,7 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
parent: SheetPGlass
|
parent: SheetPGlass
|
||||||
id: SheetRPGlass
|
id: SheetRPGlass
|
||||||
name: reinforced plasma glass
|
name: усиленное плазменное стекло
|
||||||
description: A reinforced sheet of translucent plasma.
|
description: A reinforced sheet of translucent plasma.
|
||||||
suffix: Full
|
suffix: Full
|
||||||
components:
|
components:
|
||||||
@@ -312,7 +312,7 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
parent: SheetRPGlass
|
parent: SheetRPGlass
|
||||||
id: SheetRPGlass1
|
id: SheetRPGlass1
|
||||||
name: reinforced plasma glass
|
name: усиленное плазменное стекло
|
||||||
suffix: Single
|
suffix: Single
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
- type: constructionGraph
|
- type: constructionGraph
|
||||||
id: ClownHardsuit
|
id: ClownHardsuit
|
||||||
start: start
|
start: start
|
||||||
graph:
|
graph:
|
||||||
@@ -10,37 +10,37 @@
|
|||||||
amount: 5
|
amount: 5
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: SuitEVA
|
- tag: SuitEVA
|
||||||
name: An EVA suit
|
name: скафандр EVA
|
||||||
icon:
|
icon:
|
||||||
sprite: Clothing/OuterClothing/Suits/eva.rsi
|
sprite: Clothing/OuterClothing/Suits/eva.rsi
|
||||||
state: icon
|
state: icon
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: HelmetEVA
|
- tag: HelmetEVA
|
||||||
name: An EVA helmet
|
name: шлем EVA
|
||||||
icon:
|
icon:
|
||||||
sprite: Clothing/Head/Helmets/eva.rsi
|
sprite: Clothing/Head/Helmets/eva.rsi
|
||||||
state: icon
|
state: icon
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: CrayonPurple
|
- tag: CrayonPurple
|
||||||
name: purple crayon
|
name: фиолетовый мелок
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Fun/crayons.rsi
|
sprite: Objects/Fun/crayons.rsi
|
||||||
state: purple
|
state: purple
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: CrayonRed
|
- tag: CrayonRed
|
||||||
name: red crayon
|
name: красный мелок
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Fun/crayons.rsi
|
sprite: Objects/Fun/crayons.rsi
|
||||||
state: red
|
state: red
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: CrayonYellow
|
- tag: CrayonYellow
|
||||||
name: yellow crayon
|
name: жёлтый мелок
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Fun/crayons.rsi
|
sprite: Objects/Fun/crayons.rsi
|
||||||
state: yellow
|
state: yellow
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: ClownRecorder
|
- tag: ClownRecorder
|
||||||
name: clown recorder
|
name: диктофон клоуна
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Fun/clownrecorder.rsi
|
sprite: Objects/Fun/clownrecorder.rsi
|
||||||
state: icon
|
state: icon
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
amount: 4
|
amount: 4
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: BikeHorn
|
- tag: BikeHorn
|
||||||
name: Bike Horn
|
name: гудок
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Fun/bikehorn.rsi
|
sprite: Objects/Fun/bikehorn.rsi
|
||||||
state: icon
|
state: icon
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- component: ComputerBoard
|
- component: ComputerBoard
|
||||||
store: board
|
store: board
|
||||||
name: any computer circuit board
|
name: машинная плата любой консоли
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "id_mod"
|
state: "id_mod"
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: DoorElectronics
|
- tag: DoorElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "door electronics circuit board"
|
name: "микросхема шлюза"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "door_electronics"
|
state: "door_electronics"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Structures/conveyor.rsi
|
sprite: Structures/conveyor.rsi
|
||||||
state: conveyor_loose
|
state: conveyor_loose
|
||||||
name: conveyor belt assembly
|
name: заготовка конвеерной ленты
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- node: item
|
- node: item
|
||||||
entity: ConveyorBeltAssembly
|
entity: ConveyorBeltAssembly
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: FirelockElectronics
|
- tag: FirelockElectronics
|
||||||
store: board
|
store: board
|
||||||
name: Firelock Electronics
|
name: микросхема пожарного шлюза
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "mainboard"
|
state: "mainboard"
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
anchored: true
|
anchored: true
|
||||||
steps:
|
steps:
|
||||||
- tag: DoorElectronics
|
- tag: DoorElectronics
|
||||||
name: Door Electronics
|
name: микросхема шлюза
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "door_electronics"
|
state: "door_electronics"
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: DoorElectronics
|
- tag: DoorElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "door electronics circuit board"
|
name: "микросхема шлюза"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "door_electronics"
|
state: "door_electronics"
|
||||||
|
|||||||
@@ -78,7 +78,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: DoorElectronics
|
- tag: DoorElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "door electronics circuit board"
|
name: "микросхема шлюза"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "door_electronics"
|
state: "door_electronics"
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: DoorElectronics
|
- tag: DoorElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "door electronics circuit board"
|
name: "микросхема шлюза"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "door_electronics"
|
state: "door_electronics"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
- to: apc
|
- to: apc
|
||||||
steps:
|
steps:
|
||||||
- component: ApcElectronics
|
- component: ApcElectronics
|
||||||
name: "APC electronics"
|
name: "детали АПЦ"
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- to: start
|
- to: start
|
||||||
completed:
|
completed:
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: AirAlarmElectronics
|
- tag: AirAlarmElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "air alarm electronics"
|
name: "микросхема воздушной сигнализации"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "door_electronics" # /tg/ uses the same sprite, right?
|
state: "door_electronics" # /tg/ uses the same sprite, right?
|
||||||
@@ -116,7 +116,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: FireAlarmElectronics
|
- tag: FireAlarmElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "fire alarm electronics"
|
name: "микросхема пожарной сигнализации"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "door_electronics" # /tg/ uses the same sprite, right?
|
state: "door_electronics" # /tg/ uses the same sprite, right?
|
||||||
|
|||||||
@@ -64,7 +64,7 @@
|
|||||||
- to: frame_mailing
|
- to: frame_mailing
|
||||||
steps:
|
steps:
|
||||||
- tag: MailingUnitElectronics
|
- tag: MailingUnitElectronics
|
||||||
name: Mailing Unit Electronics
|
name: микросхема почтового блока
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "net_wired"
|
state: "net_wired"
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: IntercomElectronics
|
- tag: IntercomElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "intercom electronics"
|
name: "микросхема интеркома"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "id_mod"
|
state: "id_mod"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
- to: solarassembly
|
- to: solarassembly
|
||||||
steps:
|
steps:
|
||||||
- tag: SolarAssemblyPart
|
- tag: SolarAssemblyPart
|
||||||
name: Solar Assembly Parts
|
name: детали солнечной батареи
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Power/solar_parts.rsi
|
sprite: Objects/Power/solar_parts.rsi
|
||||||
state: solar_assembly_parts
|
state: solar_assembly_parts
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: TimerSignalElectronics
|
- tag: TimerSignalElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "signal timer electronics"
|
name: "микросхема сигнального таймера"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "charger_APC"
|
state: "charger_APC"
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: TimerScreenElectronics
|
- tag: TimerScreenElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "screen timer electronics"
|
name: "микросхема экранного таймера"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "charger_APC"
|
state: "charger_APC"
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: TimerBrigElectronics
|
- tag: TimerBrigElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "brig timer electronics"
|
name: "микросхема таймера брига"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "charger_APC"
|
state: "charger_APC"
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: WallmountGeneratorElectronics
|
- tag: WallmountGeneratorElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "wallmount generator circuit board"
|
name: "микросхема настенного генератора"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "charger_APC"
|
state: "charger_APC"
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: WallmountGeneratorAPUElectronics
|
- tag: WallmountGeneratorAPUElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "wallmount APU circuit board"
|
name: "микросхема настенной ВСУ"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "charger_APC"
|
state: "charger_APC"
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: WallmountSubstationElectronics
|
- tag: WallmountSubstationElectronics
|
||||||
store: board
|
store: board
|
||||||
name: "wallmount substation circuit board"
|
name: "микросхема настенной подстанции"
|
||||||
icon:
|
icon:
|
||||||
sprite: "Objects/Misc/module.rsi"
|
sprite: "Objects/Misc/module.rsi"
|
||||||
state: "charger_APC"
|
state: "charger_APC"
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
- tool: Screwing
|
- tool: Screwing
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: SurveillanceCameraMonitorCircuitboard
|
- tag: SurveillanceCameraMonitorCircuitboard
|
||||||
name: surveillance camera monitor board
|
name: монитор камер наблюдения (машинная плата)
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/module.rsi
|
sprite: Objects/Misc/module.rsi
|
||||||
state: cpuboard
|
state: cpuboard
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
sprite: Objects/Misc/cablecuffs.rsi
|
sprite: Objects/Misc/cablecuffs.rsi
|
||||||
state: cuff
|
state: cuff
|
||||||
color: red
|
color: red
|
||||||
name: cuffs
|
name: стяжки
|
||||||
- material: Steel
|
- material: Steel
|
||||||
amount: 6
|
amount: 6
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- component: PayloadTrigger
|
- component: PayloadTrigger
|
||||||
store: payloadTrigger
|
store: payloadTrigger
|
||||||
name: Trigger
|
name: триггер
|
||||||
doAfter: 0.5
|
doAfter: 0.5
|
||||||
|
|
||||||
- node: caseWithTrigger
|
- node: caseWithTrigger
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: Payload
|
- tag: Payload
|
||||||
store: payload
|
store: payload
|
||||||
name: Payload
|
name: заряд
|
||||||
doAfter: 0.5
|
doAfter: 0.5
|
||||||
|
|
||||||
- node: grenade
|
- node: grenade
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/proximity_sensor.rsi
|
sprite: Objects/Misc/proximity_sensor.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: proximity sensor
|
name: датчик движения
|
||||||
- to: start
|
- to: start
|
||||||
completed:
|
completed:
|
||||||
- !type:SpawnPrototype
|
- !type:SpawnPrototype
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- tag: Payload
|
- tag: Payload
|
||||||
store: payload
|
store: payload
|
||||||
name: Payload
|
name: заряд
|
||||||
doAfter: 0.5
|
doAfter: 0.5
|
||||||
|
|
||||||
- node: mine
|
- node: mine
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
amount: 2
|
amount: 2
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: GlassShard
|
- tag: GlassShard
|
||||||
name: Glass Shard
|
name: осколок стекла
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Materials/Shards/shard.rsi
|
sprite: Objects/Materials/Shards/shard.rsi
|
||||||
state: shard1
|
state: shard1
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
amount: 2
|
amount: 2
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: ReinforcedGlassShard
|
- tag: ReinforcedGlassShard
|
||||||
name: Reinforced Glass Shard
|
name: осколок усиленного стекла
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Materials/Shards/shard.rsi
|
sprite: Objects/Materials/Shards/shard.rsi
|
||||||
state: shard1
|
state: shard1
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
amount: 2
|
amount: 2
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: PlasmaGlassShard
|
- tag: PlasmaGlassShard
|
||||||
name: Plasma Glass Shard
|
name: осколок плазменного стекла
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Materials/Shards/shard.rsi
|
sprite: Objects/Materials/Shards/shard.rsi
|
||||||
state: shard1
|
state: shard1
|
||||||
@@ -82,7 +82,7 @@
|
|||||||
amount: 2
|
amount: 2
|
||||||
doAfter: 1
|
doAfter: 1
|
||||||
- tag: UraniumGlassShard
|
- tag: UraniumGlassShard
|
||||||
name: Uranium Glass Shard
|
name: осколок ураного стекла
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Materials/Shards/shard.rsi
|
sprite: Objects/Materials/Shards/shard.rsi
|
||||||
state: shard1
|
state: shard1
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
- type: constructionGraph
|
- type: constructionGraph
|
||||||
id: WoodenBuckler
|
id: WoodenBuckler
|
||||||
start: start
|
start: start
|
||||||
graph:
|
graph:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: clown hardsuit
|
name: clown hardsuit
|
||||||
id: ClownHardsuit
|
id: ClothingOuterHardsuitClown
|
||||||
graph: ClownHardsuit
|
graph: ClownHardsuit
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: clownHardsuit
|
targetNode: clownHardsuit
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: bananium horn
|
name: bananium horn
|
||||||
id: HornBananium
|
id: BananiumHorn
|
||||||
graph: BananiumHorn
|
graph: BananiumHorn
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bananiumHorn
|
targetNode: bananiumHorn
|
||||||
|
|||||||
@@ -86,7 +86,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: comfy chair
|
name: comfy chair
|
||||||
id: ChairComfy
|
id: ComfyChair
|
||||||
graph: Seat
|
graph: Seat
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: chairComfy
|
targetNode: chairComfy
|
||||||
@@ -103,7 +103,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: pilots chair
|
name: pilots chair
|
||||||
id: chairPilotSeat
|
id: ChairPilotSeat
|
||||||
graph: Seat
|
graph: Seat
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: chairPilotSeat
|
targetNode: chairPilotSeat
|
||||||
@@ -464,7 +464,7 @@
|
|||||||
|
|
||||||
#misc
|
#misc
|
||||||
- type: construction
|
- type: construction
|
||||||
id: MeatSpike
|
id: KitchenSpike
|
||||||
name: meat spike
|
name: meat spike
|
||||||
description: A spike found in kitchens butchering animals.
|
description: A spike found in kitchens butchering animals.
|
||||||
graph: MeatSpike
|
graph: MeatSpike
|
||||||
@@ -481,7 +481,7 @@
|
|||||||
- !type:TileNotBlocked
|
- !type:TileNotBlocked
|
||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
id: Curtains
|
id: HospitalCurtains
|
||||||
name: curtains
|
name: curtains
|
||||||
description: Contains less than 1% mercury.
|
description: Contains less than 1% mercury.
|
||||||
graph: Curtains
|
graph: Curtains
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: computer
|
name: computer
|
||||||
id: Computer
|
id: ComputerFrame
|
||||||
graph: Computer
|
graph: Computer
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: computer
|
targetNode: computer
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# Switching
|
# Switching
|
||||||
- type: construction
|
- type: construction
|
||||||
name: two-way lever
|
name: two-way lever
|
||||||
id: TwoWayLeverRecipe
|
id: TwoWayLever
|
||||||
graph: LeverGraph
|
graph: LeverGraph
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: LeverNode
|
targetNode: LeverNode
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: light switch
|
name: light switch
|
||||||
id: LightSwitchRecipe
|
id: ApcNetSwitch
|
||||||
graph: LightSwitchGraph
|
graph: LightSwitchGraph
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: LightSwitchNode
|
targetNode: LightSwitchNode
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: signal switch
|
name: signal switch
|
||||||
id: SignalSwitchRecipe
|
id: SignalSwitch
|
||||||
graph: SignalSwitchGraph
|
graph: SignalSwitchGraph
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: SignalSwitchNode
|
targetNode: SignalSwitchNode
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: signal button
|
name: signal button
|
||||||
id: SignalButtonRecipe
|
id: SignalButton
|
||||||
graph: SignalButtonGraph
|
graph: SignalButtonGraph
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: SignalButtonNode
|
targetNode: SignalButtonNode
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: metal rod
|
name: metal rod
|
||||||
id: MetalRod
|
id: PartRodMetal
|
||||||
graph: MetalRod
|
graph: MetalRod
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: MetalRod
|
targetNode: MetalRod
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
objectType: Item
|
objectType: Item
|
||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: reinforced plasma glass
|
name: усиленное плазменное стекло
|
||||||
description: A reinforced sheet of translucent plasma.
|
description: A reinforced sheet of translucent plasma.
|
||||||
id: SheetRPGlass
|
id: SheetRPGlass
|
||||||
graph: Glass
|
graph: Glass
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: modular grenade
|
name: modular grenade
|
||||||
id: ModularGrenadeRecipe
|
id: ModularGrenade
|
||||||
graph: ModularGrenadeGraph
|
graph: ModularGrenadeGraph
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: grenade
|
targetNode: grenade
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: modular mine
|
name: modular mine
|
||||||
id: ModularMineRecipe
|
id: LandMineModular
|
||||||
graph: ModularMineGraph
|
graph: ModularMineGraph
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: mine
|
targetNode: mine
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: wall
|
name: wall
|
||||||
id: Wall
|
id: WallSolid
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: wall
|
targetNode: wall
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: reinforced wall
|
name: reinforced wall
|
||||||
id: ReinforcedWall
|
id: WallReinforced
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: reinforcedWall
|
targetNode: reinforcedWall
|
||||||
@@ -72,7 +72,7 @@
|
|||||||
# here
|
# here
|
||||||
- type: construction
|
- type: construction
|
||||||
name: wood wall
|
name: wood wall
|
||||||
id: WoodWall
|
id: WallWood
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: woodWall
|
targetNode: woodWall
|
||||||
@@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: uranium wall
|
name: uranium wall
|
||||||
id: UraniumWall
|
id: WallUranium
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: uraniumWall
|
targetNode: uraniumWall
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: silver wall
|
name: silver wall
|
||||||
id: SilverWall
|
id: WallSilver
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: silverWall
|
targetNode: silverWall
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: plastic wall
|
name: plastic wall
|
||||||
id: PlasticWall
|
id: WallPlastic
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: plasticWall
|
targetNode: plasticWall
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: plasma wall
|
name: plasma wall
|
||||||
id: PlasmaWall
|
id: WallPlasma
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: plasmaWall
|
targetNode: plasmaWall
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: gold wall
|
name: gold wall
|
||||||
id: GoldWall
|
id: WallGold
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: goldWall
|
targetNode: goldWall
|
||||||
@@ -235,7 +235,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: bananium wall
|
name: bananium wall
|
||||||
id: ClownWall
|
id: WallClown
|
||||||
graph: Girder
|
graph: Girder
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bananiumWall
|
targetNode: bananiumWall
|
||||||
@@ -672,7 +672,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: shutter
|
name: shutter
|
||||||
id: Shutters
|
id: ShuttersNormalOpen
|
||||||
graph: Shutters
|
graph: Shutters
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: Shutters
|
targetNode: Shutters
|
||||||
@@ -739,7 +739,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: bananium floor
|
name: bananium floor
|
||||||
id: FloorBananium
|
id: FloorBananiumEntity
|
||||||
graph: FloorBananium
|
graph: FloorBananium
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: BananiumFloor
|
targetNode: BananiumFloor
|
||||||
@@ -1018,7 +1018,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: secure windoor
|
name: secure windoor
|
||||||
id: SecureWindoor
|
id: WindoorSecure
|
||||||
graph: Windoor
|
graph: Windoor
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: windoorSecure
|
targetNode: windoorSecure
|
||||||
@@ -1037,7 +1037,7 @@
|
|||||||
#lighting
|
#lighting
|
||||||
- type: construction
|
- type: construction
|
||||||
name: wall light
|
name: wall light
|
||||||
id: LightTubeFixture
|
id: PoweredlightEmpty
|
||||||
graph: LightFixture
|
graph: LightFixture
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: tubeLight
|
targetNode: tubeLight
|
||||||
@@ -1057,7 +1057,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: small wall light
|
name: small wall light
|
||||||
id: LightSmallFixture
|
id: PoweredSmallLightEmpty
|
||||||
graph: LightFixture
|
graph: LightFixture
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bulbLight
|
targetNode: bulbLight
|
||||||
@@ -1076,7 +1076,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: ground light post
|
name: ground light post
|
||||||
id: LightGroundFixture
|
id: PoweredLightPostSmallEmpty
|
||||||
graph: LightFixture
|
graph: LightFixture
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: groundLight
|
targetNode: groundLight
|
||||||
@@ -1229,7 +1229,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: bananium clown statue
|
name: bananium clown statue
|
||||||
id: BananiumClownStatue
|
id: StatueBananiumClown
|
||||||
graph: BananiumStatueClown
|
graph: BananiumStatueClown
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bananiumStatue
|
targetNode: bananiumStatue
|
||||||
@@ -1263,7 +1263,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: bananium altar
|
name: bananium altar
|
||||||
id: BananiumAltar
|
id: AltarBananium
|
||||||
graph: BananiumAltarGraph
|
graph: BananiumAltarGraph
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bananiumAltar
|
targetNode: bananiumAltar
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: torch
|
name: torch
|
||||||
id: LightTorch
|
id: Torch
|
||||||
graph: LightTorch
|
graph: LightTorch
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: torch
|
targetNode: torch
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# SURVEILLANCE
|
# SURVEILLANCE
|
||||||
- type: construction
|
- type: construction
|
||||||
name: camera
|
name: camera
|
||||||
id: camera
|
id: SurveillanceCameraAssembly
|
||||||
graph: SurveillanceCamera
|
graph: SurveillanceCamera
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: camera
|
targetNode: camera
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
# POWER
|
# POWER
|
||||||
- type: construction
|
- type: construction
|
||||||
name: APC
|
name: APC
|
||||||
id: APC
|
id: APCBasic
|
||||||
graph: APC
|
graph: APC
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: apc
|
targetNode: apc
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: wallmount substation
|
name: wallmount substation
|
||||||
id: WallmountSubstation
|
id: BaseSubstationWall
|
||||||
graph: WallmountSubstation
|
graph: WallmountSubstation
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: substation
|
targetNode: substation
|
||||||
@@ -112,7 +112,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: wallmount generator
|
name: wallmount generator
|
||||||
id: WallmountGenerator
|
id: GeneratorWallmountBasic
|
||||||
graph: WallmountGenerator
|
graph: WallmountGenerator
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: generator
|
targetNode: generator
|
||||||
@@ -127,7 +127,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: wallmount APU
|
name: wallmount APU
|
||||||
id: WallmountGeneratorAPU
|
id: GeneratorWallmountAPU
|
||||||
graph: WallmountGenerator
|
graph: WallmountGenerator
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: APU
|
targetNode: APU
|
||||||
@@ -335,7 +335,7 @@
|
|||||||
# ATMOS
|
# ATMOS
|
||||||
- type: construction
|
- type: construction
|
||||||
name: air alarm
|
name: air alarm
|
||||||
id: AirAlarmFixture
|
id: AirAlarm
|
||||||
graph: AirAlarm
|
graph: AirAlarm
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: air_alarm
|
targetNode: air_alarm
|
||||||
|
|||||||
@@ -10,18 +10,18 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Objects/Tools/bucket.rsi
|
sprite: Objects/Tools/bucket.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: bucket
|
name: ведро
|
||||||
- tag: ProximitySensor
|
- tag: ProximitySensor
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/proximity_sensor.rsi
|
sprite: Objects/Misc/proximity_sensor.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: proximity sensor
|
name: датчик движения
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: BorgArm
|
- tag: BorgArm
|
||||||
icon:
|
icon:
|
||||||
sprite: Mobs/Silicon/drone.rsi
|
sprite: Mobs/Silicon/drone.rsi
|
||||||
state: l_hand
|
state: l_hand
|
||||||
name: borg arm
|
name: рука борга
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- node: bot
|
- node: bot
|
||||||
entity: MobCleanBot
|
entity: MobCleanBot
|
||||||
|
|||||||
@@ -10,29 +10,29 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Objects/Storage/boxes.rsi
|
sprite: Objects/Storage/boxes.rsi
|
||||||
state: box_hug
|
state: box_hug
|
||||||
name: box of hugs
|
name: коробка обнимашек
|
||||||
- tag: ClownRubberStamp
|
- tag: ClownRubberStamp
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/stamps.rsi
|
sprite: Objects/Misc/stamps.rsi
|
||||||
state: stamp-clown
|
state: stamp-clown
|
||||||
name: clown's rubber stamp
|
name: печать клоуна
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: BikeHorn
|
- tag: BikeHorn
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Fun/bikehorn.rsi
|
sprite: Objects/Fun/bikehorn.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: bike horn
|
name: велосипедный гудок
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: ProximitySensor
|
- tag: ProximitySensor
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/proximity_sensor.rsi
|
sprite: Objects/Misc/proximity_sensor.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: proximity sensor
|
name: датчик движения
|
||||||
- tag: BorgArm
|
- tag: BorgArm
|
||||||
icon:
|
icon:
|
||||||
sprite: Mobs/Silicon/drone.rsi
|
sprite: Mobs/Silicon/drone.rsi
|
||||||
state: l_hand
|
state: l_hand
|
||||||
name: borg arm
|
name: рука борга
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- node: bot
|
- node: bot
|
||||||
entity: MobHonkBot
|
entity: MobHonkBot
|
||||||
@@ -49,29 +49,29 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Objects/Storage/Happyhonk/clown.rsi
|
sprite: Objects/Storage/Happyhonk/clown.rsi
|
||||||
state: box
|
state: box
|
||||||
name: happy honk meal
|
name: Хэппи Хонк Мил
|
||||||
- tag: ClownRubberStamp
|
- tag: ClownRubberStamp
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/stamps.rsi
|
sprite: Objects/Misc/stamps.rsi
|
||||||
state: stamp-clown
|
state: stamp-clown
|
||||||
name: clown's rubber stamp
|
name: печать клоуна
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: CluwneHorn
|
- tag: CluwneHorn
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Fun/cluwnehorn.rsi
|
sprite: Objects/Fun/cluwnehorn.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: broken bike horn
|
name: сломанный гудок
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: ProximitySensor
|
- tag: ProximitySensor
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/proximity_sensor.rsi
|
sprite: Objects/Misc/proximity_sensor.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: proximity sensor
|
name: датчик движения
|
||||||
- tag: BorgArm
|
- tag: BorgArm
|
||||||
icon:
|
icon:
|
||||||
sprite: Mobs/Silicon/drone.rsi
|
sprite: Mobs/Silicon/drone.rsi
|
||||||
state: l_hand
|
state: l_hand
|
||||||
name: borg arm
|
name: рука борга
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- node: bot
|
- node: bot
|
||||||
entity: MobJonkBot
|
entity: MobJonkBot
|
||||||
|
|||||||
@@ -10,24 +10,24 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Objects/Specific/Medical/firstaidkits.rsi
|
sprite: Objects/Specific/Medical/firstaidkits.rsi
|
||||||
state: firstaid
|
state: firstaid
|
||||||
name: medkit
|
name: набор первой помощи
|
||||||
- tag: DiscreteHealthAnalyzer
|
- tag: DiscreteHealthAnalyzer
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Specific/Medical/healthanalyzer.rsi
|
sprite: Objects/Specific/Medical/healthanalyzer.rsi
|
||||||
state: analyzer
|
state: analyzer
|
||||||
name: health analyzer
|
name: анализатор здоровья
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: ProximitySensor
|
- tag: ProximitySensor
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/proximity_sensor.rsi
|
sprite: Objects/Misc/proximity_sensor.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: proximity sensor
|
name: датчик движения
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: BorgArm
|
- tag: BorgArm
|
||||||
icon:
|
icon:
|
||||||
sprite: Mobs/Silicon/drone.rsi
|
sprite: Mobs/Silicon/drone.rsi
|
||||||
state: l_hand
|
state: l_hand
|
||||||
name: borg arm
|
name: рука борга
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- node: bot
|
- node: bot
|
||||||
entity: MobMedibot
|
entity: MobMedibot
|
||||||
|
|||||||
@@ -10,35 +10,35 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Objects/Storage/Happyhonk/mime.rsi
|
sprite: Objects/Storage/Happyhonk/mime.rsi
|
||||||
state: box
|
state: box
|
||||||
name: mime edition happy honk meal
|
name: Мим Хонк Мил
|
||||||
- tag: MimeBelt
|
- tag: MimeBelt
|
||||||
icon:
|
icon:
|
||||||
sprite: Clothing/Belt/suspenders.rsi
|
sprite: Clothing/Belt/suspenders.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: suspenders
|
name: подтяжки
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: ProximitySensor
|
- tag: ProximitySensor
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/proximity_sensor.rsi
|
sprite: Objects/Misc/proximity_sensor.rsi
|
||||||
state: icon
|
state: icon
|
||||||
name: proximity sensor
|
name: датчик движения
|
||||||
- tag: BorgHead
|
- tag: BorgHead
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Specific/Robotics/cyborg_parts.rsi
|
sprite: Objects/Specific/Robotics/cyborg_parts.rsi
|
||||||
state: borg_head
|
state: borg_head
|
||||||
name: borg head
|
name: голова борга
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: BorgArm
|
- tag: BorgArm
|
||||||
icon:
|
icon:
|
||||||
sprite: Mobs/Silicon/drone.rsi
|
sprite: Mobs/Silicon/drone.rsi
|
||||||
state: l_hand
|
state: l_hand
|
||||||
name: borg arm
|
name: рука борга
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- tag: BorgArm
|
- tag: BorgArm
|
||||||
icon:
|
icon:
|
||||||
sprite: Mobs/Silicon/drone.rsi
|
sprite: Mobs/Silicon/drone.rsi
|
||||||
state: l_hand
|
state: l_hand
|
||||||
name: borg arm
|
name: рука борга
|
||||||
doAfter: 2
|
doAfter: 2
|
||||||
- node: bot
|
- node: bot
|
||||||
entity: MobMimeBot
|
entity: MobMimeBot
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
- to: flowercrown
|
- to: flowercrown
|
||||||
steps:
|
steps:
|
||||||
- tag: Flower
|
- tag: Flower
|
||||||
name: flower
|
name: цветок
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Specific/Hydroponics/poppy.rsi
|
sprite: Objects/Specific/Hydroponics/poppy.rsi
|
||||||
state: produce
|
state: produce
|
||||||
|
|||||||
@@ -10,13 +10,13 @@
|
|||||||
icon:
|
icon:
|
||||||
sprite: Structures/Piping/Atmospherics/pipe.rsi
|
sprite: Structures/Piping/Atmospherics/pipe.rsi
|
||||||
state: pipeStraight
|
state: pipeStraight
|
||||||
name: pipe
|
name: труба
|
||||||
- tag: Handcuffs
|
- tag: Handcuffs
|
||||||
icon:
|
icon:
|
||||||
sprite: Objects/Misc/cablecuffs.rsi
|
sprite: Objects/Misc/cablecuffs.rsi
|
||||||
state: cuff
|
state: cuff
|
||||||
color: red
|
color: red
|
||||||
name: cuffs
|
name: стяжки
|
||||||
- material: Steel
|
- material: Steel
|
||||||
amount: 6
|
amount: 6
|
||||||
doAfter: 10
|
doAfter: 10
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: cleanbot
|
name: cleanbot
|
||||||
id: cleanbot
|
id: MobCleanBot
|
||||||
graph: CleanBot
|
graph: CleanBot
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bot
|
targetNode: bot
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: honkbot
|
name: honkbot
|
||||||
id: honkbot
|
id: MobHonkBot
|
||||||
graph: HonkBot
|
graph: HonkBot
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bot
|
targetNode: bot
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: jonkbot
|
name: jonkbot
|
||||||
id: jonkbot
|
id: MobJonkBot
|
||||||
graph: JonkBot
|
graph: JonkBot
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bot
|
targetNode: bot
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: medibot
|
name: medibot
|
||||||
id: medibot
|
id: MobMedibot
|
||||||
graph: MediBot
|
graph: MediBot
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bot
|
targetNode: bot
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: mimebot
|
name: mimebot
|
||||||
id: mimebot
|
id: MobMimeBot
|
||||||
graph: MimeBot
|
graph: MimeBot
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bot
|
targetNode: bot
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: baseball bat
|
name: baseball bat
|
||||||
id: bat
|
id: BaseBallBat
|
||||||
graph: WoodenBat
|
graph: WoodenBat
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: bat
|
targetNode: bat
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: ghost sheet
|
name: ghost sheet
|
||||||
id: ghost_sheet
|
id: ClothingOuterGhostSheet
|
||||||
graph: GhostSheet
|
graph: GhostSheet
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: ghost_sheet
|
targetNode: ghost_sheet
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: makeshift handcuffs
|
name: makeshift handcuffs
|
||||||
id: makeshifthandcuffs
|
id: Cablecuffs
|
||||||
graph: makeshifthandcuffs
|
graph: makeshifthandcuffs
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: cuffscable
|
targetNode: cuffscable
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: muzzle
|
name: muzzle
|
||||||
id: muzzle
|
id: ClothingMaskMuzzle
|
||||||
graph: Muzzle
|
graph: Muzzle
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: muzzle
|
targetNode: muzzle
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: improvised pneumatic cannon
|
name: improvised pneumatic cannon
|
||||||
id: pneumaticcannon
|
id: WeaponImprovisedPneumaticCannon
|
||||||
graph: PneumaticCannon
|
graph: PneumaticCannon
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: cannon
|
targetNode: cannon
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: gauze
|
name: gauze
|
||||||
id: gauze
|
id: Gauze1
|
||||||
graph: Gauze
|
graph: Gauze
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: gauze
|
targetNode: gauze
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: blindfold
|
name: blindfold
|
||||||
id: blindfold
|
id: ClothingEyesBlindfold
|
||||||
graph: Blindfold
|
graph: Blindfold
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: blindfold
|
targetNode: blindfold
|
||||||
@@ -113,7 +113,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: flower crown
|
name: flower crown
|
||||||
id: flowercrown
|
id: ClothingHeadHatFlowerCrown
|
||||||
graph: flowercrown
|
graph: flowercrown
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: flowercrown
|
targetNode: flowercrown
|
||||||
@@ -139,7 +139,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: damp rag
|
name: damp rag
|
||||||
id: rag
|
id: RagItem
|
||||||
graph: Rag
|
graph: Rag
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: rag
|
targetNode: rag
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: construction
|
- type: construction
|
||||||
name: joint
|
name: joint
|
||||||
id: smokeableJoint
|
id: Joint
|
||||||
graph: smokeableJoint
|
graph: smokeableJoint
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: joint
|
targetNode: joint
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: blunt
|
name: blunt
|
||||||
id: smokeableBlunt
|
id: Blunt
|
||||||
graph: smokeableBlunt
|
graph: smokeableBlunt
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: blunt
|
targetNode: blunt
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: cigarette
|
name: cigarette
|
||||||
id: smokeableCigarette
|
id: Cigarette
|
||||||
graph: smokeableCigarette
|
graph: smokeableCigarette
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: cigarette
|
targetNode: cigarette
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: ground cannabis
|
name: ground cannabis
|
||||||
id: smokeableGroundCannabis
|
id: GroundCannabis
|
||||||
graph: smokeableGroundCannabis
|
graph: smokeableGroundCannabis
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: ground
|
targetNode: ground
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: ground tobacco
|
name: ground tobacco
|
||||||
id: smokeableGroundTobacco
|
id: GroundTobacco
|
||||||
graph: smokeableGroundTobacco
|
graph: smokeableGroundTobacco
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: ground
|
targetNode: ground
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: steel tile
|
name: steel tile
|
||||||
id: TileSteel
|
id: FloorTileItemSteel
|
||||||
graph: TileSteel
|
graph: TileSteel
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: steeltile
|
targetNode: steeltile
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: wood floor
|
name: wood floor
|
||||||
id: TileWood
|
id: FloorTileItemWood
|
||||||
graph: TileWood
|
graph: TileWood
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: woodtile
|
targetNode: woodtile
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: white tile
|
name: white tile
|
||||||
id: TileWhite
|
id: FloorTileItemWhite
|
||||||
graph: TileWhite
|
graph: TileWhite
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: whitetile
|
targetNode: whitetile
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
- type: construction
|
- type: construction
|
||||||
name: dark tile
|
name: dark tile
|
||||||
id: TileDark
|
id: FloorTileItemDark
|
||||||
graph: TileDark
|
graph: TileDark
|
||||||
startNode: start
|
startNode: start
|
||||||
targetNode: darktile
|
targetNode: darktile
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: stack
|
- type: stack
|
||||||
id: Glass
|
id: Glass
|
||||||
name: glass
|
name: стекло
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: glass }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: glass }
|
||||||
spawn: SheetGlass1
|
spawn: SheetGlass1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: ReinforcedGlass
|
id: ReinforcedGlass
|
||||||
name: reinforced glass
|
name: усиленное стекло
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rglass }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rglass }
|
||||||
spawn: SheetRGlass1
|
spawn: SheetRGlass1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: PlasmaGlass
|
id: PlasmaGlass
|
||||||
name: plasma glass
|
name: плазменное стекло
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: pglass }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: pglass }
|
||||||
spawn: SheetPGlass1
|
spawn: SheetPGlass1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: ReinforcedPlasmaGlass
|
id: ReinforcedPlasmaGlass
|
||||||
name: reinforced plasma glass
|
name: усиленное плазменное стекло
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rpglass }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rpglass }
|
||||||
spawn: SheetRPGlass1
|
spawn: SheetRPGlass1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: UraniumGlass
|
id: UraniumGlass
|
||||||
name: uranium glass
|
name: ураниевое стекло
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: uglass }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: uglass }
|
||||||
spawn: SheetUGlass1
|
spawn: SheetUGlass1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: ReinforcedUraniumGlass
|
id: ReinforcedUraniumGlass
|
||||||
name: reinforced uranium glass
|
name: усиленное ураниевое стекло
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: ruglass }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: ruglass }
|
||||||
spawn: SheetRUGlass1
|
spawn: SheetRUGlass1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: stack
|
- type: stack
|
||||||
id: Steel
|
id: Steel
|
||||||
name: steel
|
name: сталь
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: steel }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: steel }
|
||||||
spawn: SheetSteel1
|
spawn: SheetSteel1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Plasteel
|
id: Plasteel
|
||||||
name: plasteel
|
name: пласталь
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: plasteel }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: plasteel }
|
||||||
spawn: SheetPlasteel1
|
spawn: SheetPlasteel1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: stack
|
- type: stack
|
||||||
id: Paper
|
id: Paper
|
||||||
name: paper
|
name: бумага
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: paper }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: paper }
|
||||||
spawn: SheetPaper1
|
spawn: SheetPaper1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Plasma
|
id: Plasma
|
||||||
name: plasma
|
name: плазма
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plasma }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plasma }
|
||||||
spawn: SheetPlasma1
|
spawn: SheetPlasma1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Plastic
|
id: Plastic
|
||||||
name: plastic
|
name: пластик
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plastic }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plastic }
|
||||||
spawn: SheetPlastic1
|
spawn: SheetPlastic1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Uranium
|
id: Uranium
|
||||||
name: uranium
|
name: уран
|
||||||
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: uranium }
|
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: uranium }
|
||||||
spawn: SheetUranium1
|
spawn: SheetUranium1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: stack
|
- type: stack
|
||||||
id: Gold
|
id: Gold
|
||||||
name: gold
|
name: золото
|
||||||
icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: gold }
|
icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: gold }
|
||||||
spawn: IngotGold1
|
spawn: IngotGold1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Silver
|
id: Silver
|
||||||
name: silver
|
name: серебро
|
||||||
icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: silver }
|
icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: silver }
|
||||||
spawn: IngotSilver1
|
spawn: IngotSilver1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: stack
|
- type: stack
|
||||||
id: Biomass
|
id: Biomass
|
||||||
name: biomass
|
name: биомасса
|
||||||
icon: { sprite: /Textures/Objects/Misc/monkeycube.rsi, state: cube }
|
icon: { sprite: /Textures/Objects/Misc/monkeycube.rsi, state: cube }
|
||||||
spawn: MaterialBiomass1
|
spawn: MaterialBiomass1
|
||||||
maxCount: 100
|
maxCount: 100
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: WoodPlank
|
id: WoodPlank
|
||||||
name: wood plank
|
name: древесина
|
||||||
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: wood }
|
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: wood }
|
||||||
spawn: MaterialWoodPlank1
|
spawn: MaterialWoodPlank1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Cardboard
|
id: Cardboard
|
||||||
name: cardboard
|
name: картонная коробка
|
||||||
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cardboard }
|
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cardboard }
|
||||||
spawn: MaterialCardboard1
|
spawn: MaterialCardboard1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Cloth
|
id: Cloth
|
||||||
name: cloth
|
name: ткань
|
||||||
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cloth }
|
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cloth }
|
||||||
spawn: MaterialCloth1
|
spawn: MaterialCloth1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Durathread
|
id: Durathread
|
||||||
name: durathread
|
name: дюраткань
|
||||||
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: durathread }
|
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: durathread }
|
||||||
spawn: MaterialDurathread1
|
spawn: MaterialDurathread1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Diamond
|
id: Diamond
|
||||||
name: diamond
|
name: алмаз
|
||||||
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: diamond }
|
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: diamond }
|
||||||
spawn: MaterialDiamond1
|
spawn: MaterialDiamond1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Cotton
|
id: Cotton
|
||||||
name: cotton
|
name: хлопок
|
||||||
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cotton }
|
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cotton }
|
||||||
spawn: MaterialCotton1
|
spawn: MaterialCotton1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: Bananium
|
id: Bananium
|
||||||
name: bananium
|
name: бананиум
|
||||||
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bananium }
|
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bananium }
|
||||||
spawn: MaterialBananium1
|
spawn: MaterialBananium1
|
||||||
maxCount: 10
|
maxCount: 10
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: stack
|
- type: stack
|
||||||
id: MetalRod
|
id: MetalRod
|
||||||
name: rods
|
name: металлический стержень
|
||||||
icon: { sprite: /Textures/Objects/Materials/parts.rsi, state: rods }
|
icon: { sprite: /Textures/Objects/Materials/parts.rsi, state: rods }
|
||||||
spawn: PartRodMetal1
|
spawn: PartRodMetal1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: PaperRolling
|
id: PaperRolling
|
||||||
name: rolling paper
|
name: самокрутка
|
||||||
icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigpaper }
|
icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigpaper }
|
||||||
spawn: PaperRolling
|
spawn: PaperRolling
|
||||||
maxCount: 5
|
maxCount: 5
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: CigaretteFilter
|
id: CigaretteFilter
|
||||||
name: cigarette filter
|
name: фильтр
|
||||||
icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigfilter }
|
icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigfilter }
|
||||||
spawn: CigaretteFilter
|
spawn: CigaretteFilter
|
||||||
maxCount: 5
|
maxCount: 5
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: GroundTobacco
|
id: GroundTobacco
|
||||||
name: ground tobacco
|
name: измельчённый табак
|
||||||
icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile }
|
icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile }
|
||||||
spawn: GroundTobacco
|
spawn: GroundTobacco
|
||||||
maxCount: 5
|
maxCount: 5
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: GroundCannabis
|
id: GroundCannabis
|
||||||
name: ground cannabis
|
name: измельчённый каннабис
|
||||||
icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile }
|
icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile }
|
||||||
spawn: GroundCannabis
|
spawn: GroundCannabis
|
||||||
maxCount:
|
maxCount:
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: LeavesTobaccoDried
|
id: LeavesTobaccoDried
|
||||||
name: dried tobacco leaves
|
name: высушеные листья табака
|
||||||
icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried }
|
icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried }
|
||||||
spawn: LeavesTobaccoDried
|
spawn: LeavesTobaccoDried
|
||||||
maxCount: 5
|
maxCount: 5
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: LeavesCannabisDried
|
id: LeavesCannabisDried
|
||||||
name: dried cannabis leaves
|
name: высушеные листья каннабиса
|
||||||
icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried }
|
icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried }
|
||||||
spawn: LeavesCannabisDried
|
spawn: LeavesCannabisDried
|
||||||
maxCount: 5
|
maxCount: 5
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: stack
|
- type: stack
|
||||||
id: Cable
|
id: Cable
|
||||||
name: lv cable
|
name: НВ провод
|
||||||
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coil-30 }
|
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coil-30 }
|
||||||
spawn: CableApcStack1
|
spawn: CableApcStack1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: CableMV
|
id: CableMV
|
||||||
name: mv cable
|
name: СВ провод
|
||||||
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilmv-30 }
|
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilmv-30 }
|
||||||
spawn: CableMVStack1
|
spawn: CableMVStack1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
- type: stack
|
- type: stack
|
||||||
id: CableHV
|
id: CableHV
|
||||||
name: hv cable
|
name: ВВ провод
|
||||||
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilhv-30 }
|
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilhv-30 }
|
||||||
spawn: CableHVStack1
|
spawn: CableHVStack1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
|
|||||||
Reference in New Issue
Block a user