Compare commits

..

6 Commits

Author SHA1 Message Date
comasqw
06ca2810c9 Demiplane Crystal 2024-12-17 14:39:37 +04:00
Nim
a248c176ae Crane barrel (#672)
* crane barrel

* fix

* sprite resize, file rename

---------

Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
2024-12-16 11:43:29 +03:00
Ed
862df73ff2 Demiplane modifiers groups & tiers (#678)
* data setup

* demiplanes modficators combine refactor

* generationProb

* demiplane tiers setup

* migration, and t2 loots

* t2 balance tweaks

* retags

* weather modifiers group

* maplight modifiers

* more passed checks

* wanderer buy positions localization fix

* fixes
2024-12-16 00:38:29 +03:00
A.Ne.
57a795261f mithril and lucens modular parts (#682)
Co-authored-by: Ed <edwardxperia2000@gmail.com>
2024-12-15 22:40:05 +03:00
Ed
e102b5011e Merge remote-tracking branch 'origin/map-upate' 2024-12-15 22:17:29 +03:00
A.Ne.
f655f74b03 mithril and lucens (#660)
* mithril and manarium

* Rename manarium to Lucens

* pointlight to tree

* lucens tile

* Update trees.yml

* logs sprite

* Update trees.yml

* delete acacia tiles, recolor lucen example

* tiles new palette

* Update ores.yml

Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>

* tiles update

* Update tiles.ftl

---------

Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
2024-12-15 12:53:31 +03:00
264 changed files with 3290 additions and 2480 deletions

View File

@@ -100,16 +100,16 @@ public sealed class RandomGiftSystem : EntitySystem
if (proto.Abstract || proto.HideSpawnMenu || proto.Components.ContainsKey(mapGridCompName) || !proto.Components.ContainsKey(physicsCompName))
continue;
_possibleGiftsUnsafe.Add(proto.ID);
if (!proto.Components.ContainsKey(itemCompName))
continue;
//CP14 Only cp14 items
if (!proto.Categories.Contains(indexedFilter))
continue;
//CP14 end
_possibleGiftsUnsafe.Add(proto.ID);
if (!proto.Components.ContainsKey(itemCompName))
continue;
_possibleGiftsSafe.Add(proto.ID);
}
}

View File

@@ -26,6 +26,7 @@ public sealed partial class CP14DemiplaneSystem
private const double JobMaxTime = 0.002;
[Dependency] private readonly ExamineSystemShared _examine = default!;
[Dependency] private readonly EntityLookupSystem _lookup = default!;
private void InitGeneration()
{
@@ -62,7 +63,7 @@ public sealed partial class CP14DemiplaneSystem
: Loc.GetString("cp14-demiplane-examine-title-unknown"));
List<LocId> modifierNames = new();
foreach (var modifier in comp.Modifiers)
foreach (var modifier in comp.SelectedModifiers)
{
if (!_proto.TryIndex(modifier, out var indexedModifier))
continue;
@@ -141,6 +142,23 @@ public sealed partial class CP14DemiplaneSystem
if (generator.Comp.Location is null)
return;
var curTime = _timing.CurTime;
if (curTime < generator.Comp.LastUseTime + generator.Comp.UseDelay)
return;
generator.Comp.LastUseTime = curTime;
if (generator.Comp.NeedDemiplaneCrystal)
{
var demiplaneCrystals = _lookup.GetEntitiesInRange<CP14DemiplaneCrystalComponent>(Transform(generator).Coordinates, generator.Comp.DemiplaneCrystalRange);
if (demiplaneCrystals.Count == 0)
{
return;
}
}
//We cant open demiplan in another demiplan or if parent is not Map
if (HasComp<CP14DemiplaneComponent>(Transform(generator).MapUid) || !HasComp<MapGridComponent>(_transform.GetParentUid(args.User)))
{
@@ -148,7 +166,7 @@ public sealed partial class CP14DemiplaneSystem
return;
}
SpawnRandomDemiplane(generator.Comp.Location.Value, generator.Comp.Modifiers, out var demiplane, out var mapId);
SpawnRandomDemiplane(generator.Comp.Location.Value, generator.Comp.SelectedModifiers, out var demiplane, out var mapId);
//Admin log needed
//TEST
@@ -178,14 +196,36 @@ public sealed partial class CP14DemiplaneSystem
suitableConfigs.Add(locationConfig);
}
if (suitableConfigs.Count == 0)
CP14DemiplaneLocationPrototype? selectedConfig = null;
while (suitableConfigs.Count > 0)
{
Log.Error("Expedition mission generation failed: No suitable location configs.");
var randomConfig = _random.Pick(suitableConfigs);
if (!generator.Comp.TiersContent.ContainsKey(randomConfig.Tier))
{
suitableConfigs.Remove(randomConfig);
continue;
}
if (!_random.Prob(generator.Comp.TiersContent[randomConfig.Tier]))
{
suitableConfigs.Remove(randomConfig);
continue;
}
selectedConfig = randomConfig;
break;
}
if (selectedConfig is null)
{
// We dont should be here
Log.Warning("Expedition mission generation failed: No suitable location configs.");
QueueDel(generator);
return;
}
var selectedConfig = _random.Pick(suitableConfigs);
generator.Comp.Location = selectedConfig;
//Modifier generation
@@ -204,42 +244,100 @@ public sealed partial class CP14DemiplaneSystem
}
//Tag required filter
foreach (var reqTag in modifier.RequiredTags)
if (passed)
{
if (!selectedConfig.Tags.Contains(reqTag))
foreach (var reqTag in modifier.RequiredTags)
{
if (!selectedConfig.Tags.Contains(reqTag))
{
passed = false;
break;
}
}
}
//Tier filter
if (passed)
{
foreach (var tier in modifier.Tiers)
{
if (!generator.Comp.TiersContent.ContainsKey(tier))
{
passed = false;
break;
}
}
}
// Tier weight filter
if (passed)
{
var maxProb = 0f;
foreach (var tier in modifier.Tiers)
{
maxProb = Math.Max(maxProb, generator.Comp.TiersContent[tier]);
}
if (!_random.Prob(maxProb))
{
passed = false;
}
}
//Random prob filter
if (passed)
{
if (!_random.Prob(modifier.GenerationProb))
{
passed = false;
}
}
if (passed)
suitableModifiersWeights.Add(modifier, modifier.GenerationWeight);
}
//Limits calculation
Dictionary<ProtoId<CP14DemiplaneModifierCategoryPrototype>, float> limits = new();
foreach (var limit in generator.Comp.Limits)
{
limits.Add(limit.Key, limit.Value);
}
while (suitableModifiersWeights.Count > 0)
{
var selectedModifier = ModifierPick(suitableModifiersWeights, _random);
//Fill demiplane under limits
var passed = true;
foreach (var category in selectedModifier.Categories)
{
if (!limits.ContainsKey(category.Key))
{
suitableModifiersWeights.Remove(selectedModifier);
passed = false;
break;
}
if (limits[category.Key] - category.Value < 0)
{
suitableModifiersWeights.Remove(selectedModifier);
passed = false;
break;
}
}
if (passed)
{
suitableModifiersWeights.Add(modifier, modifier.GenerationWeight);
}
}
var difficulty = 0f;
var reward = 0f;
while (generator.Comp.Modifiers.Count < generator.Comp.MaxModifiers && suitableModifiersWeights.Count > 0)
{
var selectedModifier = ModifierPick(suitableModifiersWeights, _random);
if (difficulty + selectedModifier.Difficulty > generator.Comp.DifficultyLimit)
{
suitableModifiersWeights.Remove(selectedModifier);
if (!passed)
continue;
}
if (reward + selectedModifier.Reward > generator.Comp.RewardLimit)
generator.Comp.SelectedModifiers.Add(selectedModifier);
foreach (var category in selectedModifier.Categories)
{
suitableModifiersWeights.Remove(selectedModifier);
continue;
limits[category.Key] -= category.Value;
}
generator.Comp.Modifiers.Add(selectedModifier);
reward += selectedModifier.Reward;
difficulty += selectedModifier.Difficulty;
if (selectedModifier.Unique)
suitableModifiersWeights.Remove(selectedModifier);
}
@@ -274,5 +372,4 @@ public sealed partial class CP14DemiplaneSystem
// Shouldn't happen
throw new InvalidOperationException($"Invalid weighted pick in CP14DemiplanSystem.Generation!");
}
}

View File

@@ -0,0 +1,6 @@
namespace Content.Server._CP14.Demiplane.Components;
[RegisterComponent, Access(typeof(CP14DemiplaneSystem))]
public sealed partial class CP14DemiplaneCrystalComponent : Component
{
}

View File

@@ -1,4 +1,3 @@
using Content.Shared._CP14.Demiplane.Components;
using Content.Shared._CP14.Demiplane.Prototypes;
using Robust.Shared.Prototypes;
@@ -14,14 +13,26 @@ public sealed partial class CP14DemiplaneGeneratorDataComponent : Component
public ProtoId<CP14DemiplaneLocationPrototype>? Location;
[DataField]
public List<ProtoId<CP14DemiplaneModifierPrototype>> Modifiers = new();
public List<ProtoId<CP14DemiplaneModifierPrototype>> SelectedModifiers = new();
/// <summary>
/// Generator Tier. Determines which modifiers and locations will be selected for this demiplane
/// </summary>
[DataField(required: true)]
public Dictionary<int, float> TiersContent = new();
[DataField(required: true)]
public Dictionary<ProtoId<CP14DemiplaneModifierCategoryPrototype>, float> Limits;
[DataField]
public float DifficultyLimit = 1;
public bool NeedDemiplaneCrystal = true;
[DataField]
public float RewardLimit = 1;
public float DemiplaneCrystalRange = 15f;
[DataField]
public int MaxModifiers = 6;
public TimeSpan UseDelay = TimeSpan.FromSeconds(1.0);
[DataField]
public TimeSpan LastUseTime = TimeSpan.Zero;
}

View File

@@ -12,6 +12,12 @@ public sealed partial class CP14DemiplaneLocationPrototype : IPrototype
{
[IdDataField] public string ID { get; } = default!;
/// <summary>
/// Location Tier. Can be generated only in demiplane keys with the corresponding tier
/// </summary>
[DataField]
public int Tier = 1;
[DataField(required: true)]
public ProtoId<DungeonConfigPrototype> LocationConfig;

View File

@@ -0,0 +1,12 @@
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.Demiplane.Prototypes;
/// <summary>
///
/// </summary>
[Prototype("cp14DemiplaneModifierCategory")]
public sealed partial class CP14DemiplaneModifierCategoryPrototype : IPrototype
{
[IdDataField] public string ID { get; } = default!;
}

View File

@@ -13,16 +13,16 @@ public sealed partial class CP14DemiplaneModifierPrototype : IPrototype
[IdDataField] public string ID { get; } = default!;
/// <summary>
/// Abstract danger of this modifier. The demiplane has a threat limit, which it gains from modifiers until it reaches the limit.
/// Modifier Tier. Can be generated only in demiplane keys with the corresponding tier
/// </summary>
[DataField]
public float Difficulty = 0;
[DataField(required: true)]
public List<int> Tiers = new();
/// <summary>
/// The abstract value of this modifier. The demiplane has a limit of rewards it gains from modifiers until it reaches the limit.
/// Each modifier belongs to specific categories. Used by the generator to determine what to generate
/// </summary>
[DataField]
public float Reward = 0;
[DataField(required: true)]
public Dictionary<ProtoId<CP14DemiplaneModifierCategoryPrototype>, float> Categories = new();
/// <summary>
/// How often can this modifier be generated? Determined by weight from all modifiers available for the location
@@ -30,6 +30,14 @@ public sealed partial class CP14DemiplaneModifierPrototype : IPrototype
[DataField]
public float GenerationWeight = 1;
/// <summary>
/// If this modifier is chosen to be generated - it can simply be ignored with some chance.
/// This is useful, for example, for the Fun category. According to the basic logic it should always be filled,
/// but thanks to this field, we can just have a chance that nothing will be generated.
/// </summary>
[DataField]
public float GenerationProb = 1f;
/// <summary>
/// Can this modifier be generated multiple times within a single demiplane?
/// </summary>

View File

@@ -1,6 +1,7 @@
cp14-modifier-gold-ore = gold ore
cp14-modifier-iron-ore = iron ore
cp14-modifier-copper-ore = copper ore
cp14-modifier-mithril-ore = mithril ore
cp14-modifier-quartz-crystal = quartz crystals
cp14-modifier-dayflin = dayflins
cp14-modifier-fly-agaric = fly agaric

View File

@@ -1,5 +1,7 @@
cp14-material-wooden-planks = wooden planks
cp14-material-dirt-block = dirt
cp14-material-stone-block = stone
cp14-material-mithril = mithril
cp14-material-lucens-planks = lucens planks
cp14-material-cloth = cloth
cp14-material-flora = flora material

View File

@@ -8,6 +8,7 @@ cp14-stack-flora = tufts of grass
cp14-stack-copper-bars = copper bars
cp14-stack-iron-bars = iron bars
cp14-stack-gold-bars = gold bars
cp14-stack-mithril-bars = mithril bars
cp14-stack-wallpaper = rolls of wallpaper

View File

@@ -50,23 +50,23 @@ cp14-tiles-dark-woodplanks-big-broken = broken big dark planks
cp14-tiles-dark-woodplanks-cruciform-broken = broken cruciform dark planks
cp14-tiles-dark-woodplanks-stairways-broken = broken stairways dark planks
cp14-tiles-acacia-woodplanks = acacia woodplanks
cp14-tiles-acacia-woodplanks-big = big acacia planks
cp14-tiles-acacia-woodplanks-cruciform = cruciform acacia planks
cp14-tiles-acacia-woodplanks-stairways = stairways acacia planks
cp14-tiles-acacia-woodplanks-broken = broken acacia planks
cp14-tiles-acacia-woodplanks-big-broken = broken big acacia planks
cp14-tiles-acacia-woodplanks-cruciform-broken = broken cruciform acacia planks
cp14-tiles-acacia-woodplanks-stairways-broken = broken stairways acacia planks
cp14-tiles-woodplanks-burned = burned planks
cp14-tiles-woodplanks-big-burned = big burned planks
cp14-tiles-woodplanks-cruciform-burned = cruciform burned planks
cp14-tiles-woodplanks-stairways-burned = stairways burned planks
cp14-tiles-woodplanks-burned = burned planks
cp14-tiles-woodplanks-big-burned = big burned planks
cp14-tiles-woodplanks-cruciform-burned = cruciform burned planks
cp14-tiles-woodplanks-stairways-burned = stairways burned planks
cp14-tiles-stonebricks-small-carved1 = carved brick floor
cp14-tiles-stonebricks-small-carved2 = carved brick floor
cp14-tiles-stonebricks-square-carved = carved brick floor
cp14-tiles-stonebricks = stonebrick floor
cp14-tiles-stonebricks-weather = street stonebrick floor
cp14-tiles-stonebricks-marble = marble floor
cp14-tiles-stonebricks-marble = marble floor
cp14-tiles-lucens-woodplanks = lucens woodplanks
cp14-tiles-lucens-woodplanks-big = big lucens planks
cp14-tiles-lucens-woodplanks-cruciform = cruciform lucens planks
cp14-tiles-lucens-woodplanks-stairways = stairways lucens planks
cp14-tiles-lucens-woodplanks-broken = broken lucens planks
cp14-tiles-lucens-woodplanks-big-broken = broken big lucens planks
cp14-tiles-lucens-woodplanks-cruciform-broken = broken cruciform lucens planks
cp14-tiles-lucens-woodplanks-stairways-broken = broken stairways lucens planks

View File

@@ -1,31 +1,31 @@
cp14-store-buy-hint = To purchase "{$name}", leave your money and order in the trade box: Any paper that says {$code} on it will do.
cp14-store-buy-alchemy-unlock-t1-name = Trade Alliance: Alchemists
cp14-store-buy-alchemy-unlock-t1-desc = The Alchemists Guild, in return for an offer of cooperation and small gifts, agrees to provide their trade services to your settlement.
cp14-store-buy-alchemy-unlock-t1-desc = The Alchemists Guild of the Kingdom of Klanir is willing to include the settlement in their trade route in return for small gifts and payment.
cp14-store-buy-alchemy-normalizer-name = Solution normalizer
cp14-store-buy-alchemy-normalizer-desc = Are your alchemists making poor quality potions? Fix it with a modern technological device made by Dwarf! “Alchemical Normalizer” - will remove any residue from your potions!
cp14-store-buy-alchemy-normalizer-desc = Tired of constantly cleaning potion drops from everywhere? Fix it with a state-of-the-art technological device of imperial manufacture! “Alchemical Normalizer” - will remove unpleasant excess from your potions!
cp14-store-buy-alchemy-vials-name = Alchemical vials
cp14-store-buy-alchemy-vials-desc = Now the problem of shortage of potion vessels is no longer a problem! After all, for a rather modest price you can order batches of shiny vials directly from the glassblowing factory! Random alchemical devices as a gift.
cp14-store-buy-alchemy-vials-desc = Now the shortage of potion vessels is no longer a problem! After all, for a rather modest price, you can order batches of shiny vials directly from the best artisans! Random alchemical devices as a gift.
cp14-store-buy-alchemy-bureaucracy-name = Bureaucratic reserve
cp14-store-buy-alchemy-bureaucracy-desc = Feather pens, inkwells and a big stack of paper. In folders of different colors, or without folders at all: because we make sure that you can choose the option that is most comfortable for you.
cp14-store-buy-alchemy-bureaucracy-desc = Pens, ink pots and a big stack of paper. In folders of different colors, or without folders at all: because we make sure that you can choose the option that is most comfortable for you.
cp14-store-buy-alchemy-farm-seeds-name = Seeds for farming
cp14-store-buy-alchemy-farm-seeds-desc = A set of different seeds, for farming of all kinds! Don't limit yourself, buy several boxes at once, just in case the farmers eat everything and don't have any food left to process into seeds.
cp14-store-buy-alchemy-demiplan-name = 5 demiplane Keys
cp14-store-buy-alchemy-demiplan-desc = Unstable pocket dimensions where doom or riches may await you? What could be better for your adventurers? Buy from us for a couple of gold pieces - resell to them for more, or bail them out.
cp14-store-buy-alchemy-demiplan-desc = Unstable pocket dimensions in which doom or riches may await you. What could be better for your adventurers?
cp14-store-buy-wood-name = Wood stockpile
cp14-store-buy-wood-desc = Fresh wood delivered to your settlement! Do you live in a land where trees don't grow? Or you just don't have the manpower to go out and chop them yourself? We are ready to do it for you! Or rather, for your money.
cp14-store-buy-wood-desc = Fresh wood with delivery to your settlement! Do you live in a region where trees do not grow? Or you simply do not have the working hands to go and cut them yourself? We are ready to do it for you! Or rather, for your money.
cp14-store-buy-fabric-name = Stock of textiles
cp14-store-buy-fabric-desc = Large stock of fabric and strings, for making exquisite outfits or other tools. Today only, now only, last years only.
cp14-store-buy-fabric-desc = A large supply of fabric and thread, to make exquisite outfits or other tools. Only today, only now, only for the last six months.
cp14-store-buy-energy-name = Energy reserve
cp14-store-buy-energy-desc = Energy crystals in both medium and small sizes, and in addition, mana gloves. A complete set to supply your energy devices with energy.
cp14-store-buy-energy-desc = Energy crystals in both medium and small sizes, and in addition, mana manipulation gauntlets. A complete set to power your energy devices.
cp14-store-buy-cheese-name = Cheese stockpile
cp14-store-buy-cheese-desc = Cheese. Lots of cheese, in case you don't have cheese.
cp14-store-buy-cheese-desc = Cows don't like to sail on ships, but their cheese is quite fond of traveling! So pay its way to your table!

View File

@@ -4,16 +4,16 @@ cp14-store-sell-goldbar-name = 10 gold bars
cp14-store-sell-goldbar-desc = The mining and processing of gold ore is heavily sponsored by the empire, which uses gold as currency and material for jewelry.
cp14-store-sell-ironbar-name = 10 iron bars
cp14-store-sell-ironbar-desc = Iron is an indispensable material for the production of... almost anything that has any durability in this world. And surely the Empire could use an extra shipment.
cp14-store-sell-ironbar-desc = Iron is an indispensable material in the manufacture of... almost anything that has any longevity in this world. And surely the Empire could use an extra shipment.
cp14-store-sell-copperbar-name = 10 copper bars
cp14-store-sell-copperbar-desc = We're waiting for a description from the lorekeepers.
cp14-store-sell-copperbar-desc = Although copper is used mainly as a coin material, it is also often enjoyed by blacksmiths in various alloys.
cp14-store-sell-wheat-name = 10 sheaves of wheat
cp14-store-sell-wheat-desc = We're waiting for a description from the lorekeepers.
cp14-store-sell-wheat-desc = If there's one thing that's permanent in this world, it's empire and wheat! Please don't use wheat as currency....
cp14-store-sell-dye-name = 10 dyes
cp14-store-sell-dye-desc = We're waiting for a description from the lorekeepers.
cp14-store-sell-dye-desc = Textile workers will gladly buy dyes from you to satisfy the whims of the rich. And the sailors are tired of cleaning the ship of broken vials.
cp14-store-sell-wood-name = 30 wooden planks
cp14-store-sell-wood-desc = We're waiting for a description from the lorekeepers.
cp14-store-sell-wood-desc = Do you really think anyone needs planks from a faraway island? Well, you're right, we hope your settlement has something to keep you warm in the winter.

View File

@@ -1,6 +1,7 @@
cp14-modifier-gold-ore = золотой руды
cp14-modifier-iron-ore = железной руды
cp14-modifier-copper-ore = медной руды
cp14-modifier-mithril-ore = мифриловой руды
cp14-modifier-quartz-crystal = кварцевых кристаллов
cp14-modifier-dayflin = днецветов
cp14-modifier-fly-agaric = мухоморов

View File

@@ -1,5 +1,7 @@
cp14-material-wooden-planks = деревянные доски
cp14-material-dirt-block = земля
cp14-material-stone-block = камень
cp14-material-mithril = мифрил
cp14-material-lucens-planks = люценсовые доски
cp14-material-cloth = ткань
cp14-material-flora = растительный материал

View File

@@ -8,7 +8,8 @@ cp14-stack-flora = пучки травы
cp14-stack-copper-bars = медные слитки
cp14-stack-iron-bars = железные слитки
cp14-stack-gold-bars = золотые слитки
cp14-stack-mithril-bars = мифриловые слитки
cp14-stack-wallpaper = рулон обоев
cp14-stack-glass-sheet = стекло
cp14-stack-glass-sheet = стекло

View File

@@ -17,7 +17,7 @@ cp14-tiles-foundation = фундамент
cp14-tiles-red-woodplanks = красные доски
cp14-tiles-red-woodplanks-big = большие красные доски
cp14-tiles-red-woodplanks-cruciform = паркетные красные доски
cp14-tiles-red-woodplanks-stairways = узорчатые красные доски
cp14-tiles-red-woodplanks-stairways = узорчатые красные доски
cp14-tiles-red-woodplanks-broken = сломанные красные доски
cp14-tiles-red-woodplanks-big-broken = сломанные большие красные доски
cp14-tiles-red-woodplanks-cruciform-broken = сломанные паркетные красные доски
@@ -26,7 +26,7 @@ cp14-tiles-red-woodplanks-stairways-broken = сломанные узорчаты
cp14-tiles-birch-woodplanks = берёзовые доски
cp14-tiles-birch-woodplanks-big = большие берёзовые доски
cp14-tiles-birch-woodplanks-cruciform = паркетные берёзовые доски
cp14-tiles-birch-woodplanks-stairways = узорчатые берёзовые доски
cp14-tiles-birch-woodplanks-stairways = узорчатые берёзовые доски
cp14-tiles-birch-woodplanks-broken = сломанные берёзовые доски
cp14-tiles-birch-woodplanks-big-broken = сломанные большие берёзовые доски
cp14-tiles-birch-woodplanks-cruciform-broken = сломанные паркетные берёзовые доски
@@ -35,7 +35,7 @@ cp14-tiles-birch-woodplanks-stairways-broken = сломанные узорчат
cp14-tiles-oak-woodplanks = дубовые доски
cp14-tiles-oak-woodplanks-big = большие дубовые доски
cp14-tiles-oak-woodplanks-cruciform = паркетные дубовые доски
cp14-tiles-oak-woodplanks-stairways = узорчатые дубовые доски
cp14-tiles-oak-woodplanks-stairways = узорчатые дубовые доски
cp14-tiles-oak-woodplanks-broken = сломанные дубовые доски
cp14-tiles-oak-woodplanks-big-broken = сломанные большие дубовые доски
cp14-tiles-oak-woodplanks-cruciform-broken = сломанные паркетные дубовые доски
@@ -44,25 +44,16 @@ cp14-tiles-oak-woodplanks-stairways-broken = сломанные узорчаты
cp14-tiles-dark-woodplanks = тёмные доски
cp14-tiles-dark-woodplanks-big = большие тёмные доски
cp14-tiles-dark-woodplanks-cruciform = паркетные тёмные доски
cp14-tiles-dark-woodplanks-stairways = узорчатые тёмные доски
cp14-tiles-dark-woodplanks-stairways = узорчатые тёмные доски
cp14-tiles-dark-woodplanks-broken = сломанные тёмные доски
cp14-tiles-dark-woodplanks-big-broken = сломанные большие тёмные доски
cp14-tiles-dark-woodplanks-cruciform-broken = сломанные паркетные тёмные доски
cp14-tiles-dark-woodplanks-stairways-broken = сломанные узорчатые тёмные доски
cp14-tiles-acacia-woodplanks = акациевые доски
cp14-tiles-acacia-woodplanks-big = большие акациевые доски
cp14-tiles-acacia-woodplanks-cruciform = паркетные акациевые доски
cp14-tiles-acacia-woodplanks-stairways = узорчатые акациевые доски
cp14-tiles-acacia-woodplanks-broken = сломанные акациевые доски
cp14-tiles-acacia-woodplanks-big-broken = сломанные большие акациевые доски
cp14-tiles-acacia-woodplanks-cruciform-broken = сломанные паркетные акациевые доски
cp14-tiles-acacia-woodplanks-stairways-broken = сломанные узорчатые акациевые доски
cp14-tiles-woodplanks-burned = сгоревшие доски
cp14-tiles-woodplanks-big-burned = большие сгоревшие доски
cp14-tiles-woodplanks-cruciform-burned = паркетные сгоревшие доски
cp14-tiles-woodplanks-stairways-burned = узорчатые сгоревшие доски
cp14-tiles-woodplanks-stairways-burned = узорчатые сгоревшие доски
cp14-tiles-stonebricks-small-carved1 = пол из резного кирпича
cp14-tiles-stonebricks-small-carved2 = пол из резного кирпича
@@ -70,3 +61,12 @@ cp14-tiles-stonebricks-square-carved = пол из резного кирпича
cp14-tiles-stonebricks = каменный кирпичный пол
cp14-tiles-stonebricks-weather = уличный каменный кирпичный пол
cp14-tiles-stonebricks-marble = мраморный пол
cp14-tiles-lucens-woodplanks = люценcовые доски
cp14-tiles-lucens-woodplanks-big = большие люценcовые доски
cp14-tiles-lucens-woodplanks-cruciform = паркетные люценcовые доски
cp14-tiles-lucens-woodplanks-stairways = узорчатые люценcовые доски
cp14-tiles-lucens-woodplanks-broken = сломанные люценcовые доски
cp14-tiles-lucens-woodplanks-big-broken = сломанные большие люценcовые доски
cp14-tiles-lucens-woodplanks-cruciform-broken = сломанные паркетные люценcовые доски
cp14-tiles-lucens-woodplanks-stairways-broken = сломанные узорчатые люценcовые доски

View File

@@ -1,13 +1,13 @@
cp14-store-buy-hint = Чтобы приобрести "{$name}", оставьте деньги и ваш заказ в торговом ящике: Подойдет любая бумага, на которой будет написано {$code}
cp14-store-buy-alchemy-unlock-t1-name = Торговый союз: Алхимики
cp14-store-buy-alchemy-unlock-t1-desc = Гильдия алхимиков взамен на предложение о сотрудничестве и небольших даров согласна предоставить свои торговые услуги вашему поселению.
cp14-store-buy-alchemy-unlock-t1-desc = Гильдия алхимиков королевства Кланира готова включить поселение в свой торговый путь взамен на небольшие дары и оплату.
cp14-store-buy-alchemy-normalizer-name = Нормализатор растворов
cp14-store-buy-alchemy-normalizer-desc = Ваши алхимики делают некачественные зелья? Исправьте это при помощи современного технологического устройства дворфского производства! "Алхимический нормализатор" - удалит из ваших зелий любой осадок!
cp14-store-buy-alchemy-normalizer-desc = Надоело постоянно отмывать капли зелья ото всюду? Исправьте это при помощи современного технологического устройства имперского производства! "Алхимический нормализатор" - удалит из ваших зелий неприятные излишки!
cp14-store-buy-alchemy-vials-name = Алхимические пузырьки
cp14-store-buy-alchemy-vials-desc = Теперь проблема дефицита емкостей для зелий больше не проблема! Ведь по довольно скромной цене вы можете заказывать партии блестящих склянок прямо с стеклодульного завода! Случайные алхимические приборы в подарок.
cp14-store-buy-alchemy-vials-desc = Теперь проблема дефицита емкостей для зелий больше не проблема! Ведь по довольно скромной цене вы можете заказывать партии блестящих склянок прямо от лучших ремесленников! Случайные алхимические приборы в подарок.
cp14-store-buy-alchemy-bureaucracy-name = Бюрократический запас
cp14-store-buy-alchemy-bureaucracy-desc = Ручки, чернильницы и большая пачка бумаги. В папках разных цветов, и вовсе без папок: ведь мы заботимся о том, чтобы вы могли выбирать тот вариант, который вам комфортнее.
@@ -16,7 +16,7 @@ cp14-store-buy-alchemy-farm-seeds-name = Семена для фермерств
cp14-store-buy-alchemy-farm-seeds-desc = Набор разных семян, для фермерства всех видов! Не ограничивайте себя, купите сразу несколько ящиков, на случай, если фермеры все съедят и не оставят еды на переработку в семена.
cp14-store-buy-alchemy-demiplan-name = 5 ключей демиплана
cp14-store-buy-alchemy-demiplan-desc = Нестабильные карманные измерения, в котором вас может поджидать гибель или богатства? Что может быть лучше для ваших авантюристов? Купите у нас за пару золотых - перепродайте им подороже, или под залог.
cp14-store-buy-alchemy-demiplan-desc = Нестабильные карманные измерения, в котором вас может поджидать гибель или богатства. Что может быть лучше для ваших авантюристов?
cp14-store-buy-wood-name = Запас древесины
cp14-store-buy-wood-desc = Свежая древесина с доставкой до вашего поселения! Вы живете в краю где не растут деревья? Или у вас просто нет рабочих рук, чтобы пойти и нарубить их самостоятельно? Мы готовы сделать это за вас! Точнее, за ваши деньги.
@@ -25,7 +25,7 @@ cp14-store-buy-fabric-name = Запас текстиля
cp14-store-buy-fabric-desc = Большой запас ткани и ниток, для производства изысканнейших нарядов или другого инструментария. Только сегодня, только сейчас, только последние полгода.
cp14-store-buy-energy-name = Энергетический запас
cp14-store-buy-energy-desc = Энергетические кристаллы и средних, и малых размеров, и в добавок - перчатки оперирования маной. Полный комплект, чтобы обеспечивать ваши энергоприборы энергией.
cp14-store-buy-energy-desc = Энергетические кристаллы и средних, и малых размеров, и в добавок - перчатки манипулирования маной. Полный комплект, чтобы обеспечивать ваши энергоприборы энергией.
cp14-store-buy-cheese-name = Запас сыра
cp14-store-buy-cheese-desc = Сыр. Много сыра, на случай если у вас нет сыра.
cp14-store-buy-cheese-desc = Коровки не любят плавать на кораблях, а вот их сыр вполне любит путешествия! Так оплатите же ему дорогу к вашему столу!

View File

@@ -4,16 +4,16 @@ cp14-store-sell-goldbar-name = 10 золотых слитков
cp14-store-sell-goldbar-desc = Добыча и обработка золотой руды активно спонсируется империей, использующей золото как валюту и материал для ювелирных украшений.
cp14-store-sell-ironbar-name = 10 железных слитков
cp14-store-sell-ironbar-desc = Железо - незаменимый материал для производства... почти всего, что имеет какую либо долговечность в этом мире. И конечно же, Империя не откажется от дополнительной партии.
cp14-store-sell-ironbar-desc = Железо - незаменимый материал для производства... почти всего, что имеет хоть какую либо долговечность в этом мире. И конечно же, Империя не откажется от дополнительной партии.
cp14-store-sell-copperbar-name = 10 медных слитков
cp14-store-sell-copperbar-desc = Ждем описания от лороведов.
cp14-store-sell-copperbar-desc = Хоть медь и используется в основном как материал для монет но и в разных сплавах он часто нравится кузнецам.
cp14-store-sell-wheat-name = 10 снопов пшеницы
cp14-store-sell-wheat-desc = Ждем описания от лороведов.
cp14-store-sell-wheat-desc = Если и есть что то постоянное в этом мире так это империя и пшеница! Пожалуйста не используйте пшеницу как валюту...
cp14-store-sell-dye-name = 10 красителей
cp14-store-sell-dye-desc = Ждем описания от лороведов.
cp14-store-sell-dye-desc = Текстильщики с радостью купят у вас красители для ублажения прихотей богатеньких. А ещё моряки устали отмывать корабль от разбитых склянок.
cp14-store-sell-wood-name = 30 деревянных досок
cp14-store-sell-wood-desc = Ждем описания от лороведов.
cp14-store-sell-wood-desc = Вы правда думаете что хоть кому то нужны доски с далекого острова? Что ж вы правы, надеемся у вашего поселения есть чем греться зимой.

View File

@@ -200,965 +200,6 @@ entities:
- type: Transform
pos: 2.5,10.5
parent: 1
- proto: CP14SpawnerExpeditionLootCommon
entities:
- uid: 5
components:
- type: Transform
pos: 1.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 9
components:
- type: Transform
pos: 13.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 14
components:
- type: Transform
pos: 19.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 16
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 20
components:
- type: Transform
pos: 3.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 23
components:
- type: Transform
pos: 3.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 25
components:
- type: Transform
pos: 2.5,12.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 26
components:
- type: Transform
pos: 4.5,12.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 30
components:
- type: Transform
pos: 13.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 33
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 34
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 35
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 36
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 39
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 40
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 41
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 46
components:
- type: Transform
pos: 14.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 51
components:
- type: Transform
pos: 14.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 53
components:
- type: Transform
pos: 14.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 54
components:
- type: Transform
pos: 13.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 59
components:
- type: Transform
pos: 13.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 60
components:
- type: Transform
pos: 15.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 61
components:
- type: Transform
pos: 15.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 62
components:
- type: Transform
pos: 14.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 63
components:
- type: Transform
pos: 15.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 65
components:
- type: Transform
pos: 15.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 67
components:
- type: Transform
pos: 13.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 68
components:
- type: Transform
pos: 14.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 71
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 72
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 74
components:
- type: Transform
pos: 15.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 75
components:
- type: Transform
pos: 14.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 78
components:
- type: Transform
pos: 9.5,8.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 80
components:
- type: Transform
pos: 6.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 86
components:
- type: Transform
pos: 19.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 91
components:
- type: Transform
pos: 19.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 92
components:
- type: Transform
pos: 21.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 93
components:
- type: Transform
pos: 21.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 94
components:
- type: Transform
pos: 21.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 95
components:
- type: Transform
pos: 21.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 96
components:
- type: Transform
pos: 21.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 97
components:
- type: Transform
pos: 19.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 98
components:
- type: Transform
pos: 20.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 99
components:
- type: Transform
pos: 21.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 100
components:
- type: Transform
pos: 19.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 101
components:
- type: Transform
pos: 15.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 102
components:
- type: Transform
pos: 13.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 104
components:
- type: Transform
pos: 21.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 105
components:
- type: Transform
pos: 19.5,9.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 114
components:
- type: Transform
pos: 24.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 116
components:
- type: Transform
pos: 26.5,8.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 119
components:
- type: Transform
pos: 28.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 120
components:
- type: Transform
pos: 27.5,11.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 121
components:
- type: Transform
pos: 26.5,12.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 132
components:
- type: Transform
pos: 31.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 133
components:
- type: Transform
pos: 33.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 134
components:
- type: Transform
pos: 33.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 135
components:
- type: Transform
pos: 34.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 136
components:
- type: Transform
pos: 30.5,10.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 162
components:
- type: Transform
pos: 1.5,2.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 163
components:
- type: Transform
pos: 1.5,2.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 164
components:
- type: Transform
pos: 1.5,1.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 165
components:
- type: Transform
pos: 3.5,3.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 166
components:
- type: Transform
pos: 3.5,4.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 167
components:
- type: Transform
pos: 4.5,4.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 168
components:
- type: Transform
pos: 4.5,4.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 169
components:
- type: Transform
pos: 3.5,4.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 170
components:
- type: Transform
pos: 4.5,1.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 195
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,5.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 196
components:
- type: Transform
pos: 12.5,5.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 197
components:
- type: Transform
pos: 11.5,5.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 198
components:
- type: Transform
pos: 10.5,1.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 199
components:
- type: Transform
pos: 11.5,1.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 200
components:
- type: Transform
pos: 12.5,1.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 201
components:
- type: Transform
pos: 11.5,1.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 202
components:
- type: Transform
pos: 10.5,1.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 203
components:
- type: Transform
pos: 11.5,5.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 204
components:
- type: Transform
pos: 12.5,5.5
parent: 1
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 1
weight: 1
rolls: !type:ConstantNumberSelector
value: 1
tableId: CP14TableExpeditionLootCommon
- uid: 212
components:
- type: Transform
pos: 32.5,10.5
parent: 1
- uid: 213
components:
- type: Transform
pos: 32.5,10.5
parent: 1
- uid: 214
components:
- type: Transform
pos: 32.5,10.5
parent: 1
- uid: 215
components:
- type: Transform
pos: 32.5,10.5
parent: 1
- proto: CP14TableWooden
entities:
- uid: 159

View File

@@ -1,319 +0,0 @@
meta:
format: 6
postmapinit: false
tilemap:
0: Space
9: CP14FloorFoundation
13: CP14FloorGrass
14: CP14FloorGrassLight
15: CP14FloorGrassTall
10: CP14FloorOakWoodPlanksBig
12: CP14FloorOakWoodPlanksBroken
11: CP14FloorOakWoodPlanksCruciform
2: FloorAsteroidSand
6: FloorAsteroidSandUnvariantized
5: FloorAsteroidTile
8: FloorBrokenWood
82: FloorShuttleOrange
1: FloorShuttlePurple
89: FloorSteel
7: FloorWood
3: Plating
4: PlatingAsteroid
entities:
- proto: ""
entities:
- uid: 1
components:
- type: MetaData
- type: Transform
- type: Map
mapPaused: True
- type: PhysicsMap
- type: GridTree
- type: MovedGrids
- type: Broadphase
- type: OccluderTree
- type: MapGrid
chunks:
-1,-1:
ind: -1,-1
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
version: 6
0,0:
ind: 0,0
tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACwAAAAAACgAAAAAACwAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAACgAAAAAACgAAAAAADAAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACgAAAAAACwAAAAAACwAAAAAACQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAADQAAAAAADgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAA
version: 6
0,1:
ind: 0,1
tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
0,-1:
ind: 0,-1
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-1,0:
ind: -1,0
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
version: 6
-1,1:
ind: -1,1
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
version: 6
1,-1:
ind: 1,-1
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
1,0:
ind: 1,0
tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
1,1:
ind: 1,1
tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-1,2:
ind: -1,2
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-1:
ind: 2,-1
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,0:
ind: 2,0
tiles: CgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Gravity
gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
- type: DecalGrid
chunkCollection:
version: 2
nodes: []
- type: LoadedMap
- type: SpreaderGrid
- type: GridPathfinding
- type: RadiationGridResistance
- proto: CP14BarrelWater
entities:
- uid: 12
components:
- type: Transform
pos: 1.5020437,1.6221794
parent: 1
- proto: CP14FenceWoodSmallCorner
entities:
- uid: 26
components:
- type: Transform
pos: 10.5,0.5
parent: 1
- uid: 33
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 10.5,4.5
parent: 1
- proto: CP14FenceWoodSmallStraight
entities:
- uid: 21
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,4.5
parent: 1
- uid: 22
components:
- type: Transform
pos: 6.5,0.5
parent: 1
- uid: 23
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,4.5
parent: 1
- uid: 24
components:
- type: Transform
pos: 5.5,0.5
parent: 1
- uid: 25
components:
- type: Transform
pos: 7.5,0.5
parent: 1
- uid: 28
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 10.5,1.5
parent: 1
- proto: CP14SpawnerExpeditionLootCommon
entities:
- uid: 2
components:
- type: Transform
pos: 9.5,3.5
parent: 1
- uid: 5
components:
- type: Transform
pos: 2.5,3.5
parent: 1
- uid: 32
components:
- type: Transform
pos: 1.5,3.5
parent: 1
- uid: 34
components:
- type: Transform
pos: 6.5,1.5
parent: 1
- proto: CP14TableWooden
entities:
- uid: 4
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 1.5,3.5
parent: 1
- uid: 19
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,3.5
parent: 1
- proto: CP14TableWoodenFrame
entities:
- uid: 3
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 3.5,3.5
parent: 1
- proto: CP14WallmountTorch
entities:
- uid: 30
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,3.5
parent: 1
- type: Fixtures
fixtures: {}
- uid: 35
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,1.5
parent: 1
- type: Fixtures
fixtures: {}
- proto: CP14WallWooden
entities:
- uid: 6
components:
- type: Transform
pos: 4.5,4.5
parent: 1
- uid: 7
components:
- type: Transform
pos: 4.5,0.5
parent: 1
- uid: 8
components:
- type: Transform
pos: 0.5,0.5
parent: 1
- uid: 9
components:
- type: Transform
pos: 0.5,3.5
parent: 1
- uid: 11
components:
- type: Transform
pos: 0.5,4.5
parent: 1
- uid: 14
components:
- type: Transform
pos: 0.5,1.5
parent: 1
- uid: 15
components:
- type: Transform
pos: 3.5,0.5
parent: 1
- uid: 16
components:
- type: Transform
pos: 4.5,1.5
parent: 1
- uid: 17
components:
- type: Transform
pos: 1.5,0.5
parent: 1
- uid: 27
components:
- type: Transform
pos: 0.5,2.5
parent: 1
- uid: 29
components:
- type: Transform
pos: 2.5,0.5
parent: 1
- uid: 31
components:
- type: Transform
pos: 4.5,3.5
parent: 1
- proto: CP14WindowWooden
entities:
- uid: 10
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,4.5
parent: 1
- uid: 13
components:
- type: Transform
pos: 3.5,4.5
parent: 1
- uid: 18
components:
- type: Transform
pos: 2.5,4.5
parent: 1
- proto: CP14WoodenDoor
entities:
- uid: 20
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 4.5,2.5
parent: 1
...

View File

@@ -71,14 +71,14 @@
components:
- type: StorageFill
contents:
- id: CP14DemiplanKey
- id: CP14DemiplaneKeyT1
amount: 4
- id: CP14DemiplanKey
- id: CP14DemiplaneKeyT1
amount: 1
prob: 0.5
- id: CP14DemiplanKey
- id: CP14DemiplaneKeyT2
amount: 1
prob: 0.5
prob: 0.2
- type: entity
parent: CP14BrassChest

View File

@@ -0,0 +1,137 @@
# TIER 1
- type: entity
parent: MarkerBase
id: CP14SpawnerDemiplaneLootT1
name: Demiplane T1 Loot
categories: [ ForkFiltered ]
components:
- type: Sprite
layers:
- state: green
- sprite: _CP14/Objects/Materials/copper_bar.rsi
state: bar_3
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 0.7
tableId: CP14TableDemiplaneLootT1
- type: entityTable
id: CP14TableDemiplaneLootT1
table: !type:GroupSelector
children:
# Common
- !type:GroupSelector
weight: 75
children:
- !type:GroupSelector
children:
- id: CP14SilverCoin1
weight: 0.1
- id: CP14CopperCoin
weight: 0.1
- id: CP14CopperCoin5
weight: 0.5
- id: CP14CopperCoin1
weight: 1
- !type:GroupSelector
children:
- id: CP14SpellScrollIceShards
- id: CP14SpellScrollShadowGrab
- id: CP14SpellScrollSphereOfLight
- id: CP14SpellScrollCureWounds
- id: CP14SpellScrollBloodPurification
- id: CP14SpellScrollCureBurn
- id: CP14SpellScrollFlameCreation
- id: CP14SpellScrollEarthWall
- id: CP14SpellScrollFlashLight
- id: CP14SpellScrollWaterCreation
- id: CP14EnergyCrystalSmall
- id: CP14BaseSharpeningStone
- id: CP14GlassShard
- id: CP14Paper
- !type:AllSelector
children:
- id: CP14Crossbolt
- id: CP14Crossbolt
- id: CP14Crossbolt
# Rare
- !type:GroupSelector
weight: 25
children:
- !type:GroupSelector
children:
- id: CP14VialSmallBloodFlowerSap
- id: CP14VialSmallAgaricMushroom
- id: CP14VialSmallGroundQuartz
- id: CP14VialSmallWildSage
- id: CP14VialSmallBlueAmanita
- id: CP14VialTinyChromiumSlime
- id: CP14VialTinyLumiMushroom
- id: CP14SilverCoin5
- id: CP14BaseLockpick
- id: CP14EnergyCrystalMedium
- id: CP14DemiplaneKeyT1
weight: 2
- id: CP14DemiplaneKeyT2
# Rare standard village crates loot
- !type:NestedSelector
tableId: CP14StationCrateLoot
# TIER 2
- type: entity
parent: MarkerBase
id: CP14SpawnerDemiplaneLootT2
name: Demiplane T2 Loot
categories: [ ForkFiltered ]
components:
- type: Sprite
layers:
- state: green
- sprite: _CP14/Objects/Materials/iron_bar.rsi
state: bar_3
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 0.7
tableId: CP14TableDemiplaneLootT2
- type: entityTable
id: CP14TableDemiplaneLootT2
table: !type:GroupSelector
children:
# Common
- !type:GroupSelector
weight: 75
children:
# T1 loot chance
- !type:NestedSelector
tableId: CP14TableDemiplaneLootT1
weight: 0.25
# Coins
- !type:GroupSelector
children:
- id: CP14SilverCoin5
weight: 0.1
- id: CP14SilverCoin1
weight: 0.3
- id: CP14CopperCoin5
weight: 0.5
- !type:GroupSelector
children:
- id: CP14SpellScrollShadowStep
- id: CP14SpellScrollFireball
- id: CP14SpellScrollBeerCreation
weight: 0.2
- id: CP14EnergyCrystalMedium
# Rare
- !type:GroupSelector
weight: 25
children:
- !type:GroupSelector # remove this when players can create their own magic items
children:
- id: CP14ClothingRingIceShards
- id: CP14ClothingRingFireball
- id: CP14ClothingRingFlashLight
- id: CP14MagicHealingStaff
- id: CP14SpellScrollResurrection

View File

@@ -1,92 +1,3 @@
- type: entity
parent: MarkerBase
id: CP14SpawnerExpeditionLootCommon
name: Expedition common loot spawner
categories: [ ForkFiltered ]
components:
- type: Sprite
layers:
- state: green
- sprite: _CP14/Objects/Materials/copper_bar.rsi
state: bar_3
- type: EntityTableSpawner
table: !type:NestedSelector
prob: 0.7
tableId: CP14TableExpeditionLootCommon
- type: entityTable
id: CP14TableExpeditionLootCommon
table: !type:GroupSelector
children:
# Common
- !type:GroupSelector
weight: 75
children:
- !type:GroupSelector
children:
- id: CP14SilverCoin1
weight: 0.1
- id: CP14CopperCoin
weight: 0.1
- id: CP14CopperCoin5
weight: 0.5
- id: CP14CopperCoin1
weight: 1
- !type:GroupSelector
children:
- id: CP14SpellScrollIceShards
- id: CP14SpellScrollShadowGrab
- id: CP14SpellScrollSphereOfLight
- id: CP14SpellScrollCureWounds
- id: CP14SpellScrollBloodPurification
- id: CP14SpellScrollCureBurn
- id: CP14SpellScrollShadowStep
- id: CP14SpellScrollFireball
- id: CP14SpellScrollFlameCreation
- id: CP14SpellScrollEarthWall
- id: CP14SpellScrollFlashLight
- id: CP14SpellScrollWaterCreation
- id: CP14SpellScrollBeerCreation
weight: 0.2
- id: CP14EnergyCrystalSmall
- id: CP14BaseSharpeningStone
- id: CP14GlassShard
- id: CP14Paper
# Rare
- !type:GroupSelector
weight: 25
children:
- !type:GroupSelector
children:
- id: CP14VialSmallBloodFlowerSap
- id: CP14VialSmallAgaricMushroom
- id: CP14VialSmallGroundQuartz
- id: CP14VialSmallWildSage
- id: CP14VialSmallBlueAmanita
- id: CP14VialTinyChromiumSlime
- id: CP14VialTinyLumiMushroom
- id: CP14SilverCoin5
- id: CP14BaseLockpick
- id: CP14EnergyCrystalMedium
- id: CP14DemiplanKey
weight: 2
- !type:AllSelector
children:
- id: CP14Crossbolt
- id: CP14Crossbolt
- id: CP14Crossbolt
# remove this when players can create their own magic items
- !type:GroupSelector
children:
- id: CP14ClothingRingIceShards
- id: CP14ClothingRingFireball
- id: CP14ClothingRingFlashLight
- id: CP14MagicHealingStaff
- id: CP14SpellScrollResurrection
# Rare standard village crates loot
- !type:NestedSelector
tableId: CP14StationCrateLoot
- type: entityTable
id: CP14TableBureaucracy
table: !type:GroupSelector

View File

@@ -34,4 +34,17 @@
- type: Transform
anchored: true
- type: CP14TravelingStoreShipFTLTarget
- type: FTLSmashImmune
- type: FTLSmashImmune
- type: entity
parent: MarkerBase
id: CP14DemiplaneEntryPointMarker
name: demiplane entry point
categories: [ ForkFiltered ]
components:
- type: Sprite
layers:
- state: green
- sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift.rsi
state: pulse
- type: CP14DemiplaneRift

View File

@@ -167,4 +167,45 @@
suffix: 10
components:
- type: Stack
count: 10
count: 10
- type: entity
id: CP14MithrilBar1
parent: BaseItem
name: mithril bar
description: A warm to the touch, soft piece of refined mithril.
categories: [ ForkFiltered ]
components:
- type: Item
size: Normal
- type: Sprite
sprite: _CP14/Objects/Materials/mithril_bar.rsi
layers:
- state: bar
map: ["base"]
- type: Appearance
- type: Stack
stackType: CP14MithrilBar
count: 1
baseLayer: base
layerStates:
- bar
- bar_2
- bar_3
- type: Material
- type: entity
id: CP14MithrilBar5
parent: CP14MithrilBar1
suffix: 5
components:
- type: Stack
count: 5
- type: entity
id: CP14MithrilBar10
parent: CP14MithrilBar1
suffix: 10
components:
- type: Stack
count: 10

View File

@@ -214,6 +214,62 @@
- type: Stack
count: 10
- type: entity
id: CP14LucensWoodLog
parent: CP14WoodLog
name: lucens log
components:
- type: Sprite
sprite: _CP14/Objects/Materials/lucens_wood.rsi
layers:
- state: log
map: ["random"]
- type: RandomSprite
available:
- random:
log: ""
log_2: ""
log_3: ""
- type: Log
spawnedPrototype: CP14LucensWoodenPlanks1
spawnCount: 3
- type: entity
id: CP14LucensWoodenPlanks1
parent: CP14WoodenPlanks1
name: lucens planks
suffix: 1
components:
- type: Sprite
sprite: _CP14/Objects/Materials/lucens_wood.rsi
layers:
- state: planks
map: ["base"]
- type: Stack
stackType: CP14LucensWoodenPlanks
count: 1
baseLayer: base
layerStates:
- planks
- planks_2
- planks_3
- type: FloorTile
placeTileSound:
path: /Audio/Effects/woodenclosetclose.ogg
params:
variation: 0.03
volume: 2
outputs:
- CP14FloorLucensWoodPlanks
- type: entity
id: CP14LucensWoodenPlanks10
parent: CP14LucensWoodenPlanks1
suffix: 10
components:
- type: Stack
count: 10
- type: entity
id: CP14Nail1
parent: BaseItem

View File

@@ -45,4 +45,16 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeCopperAxe
- BladeCopperAxe
- type: entity
parent: CP14ModularBladeAxeBase
id: CP14ModularBladeMithrilAxe
name: mithril axe blade
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Axe/mithril_axe.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilAxe

View File

@@ -45,4 +45,16 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeCopperDagger
- BladeCopperDagger
- type: entity
parent: CP14ModularBladeDaggerBase
id: CP14ModularBladeMithrilDagger
name: mithril dagger blade
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Dagger/mithril_dagger.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilDagger

View File

@@ -45,4 +45,16 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeCopperMace
- BladeCopperMace
- type: entity
parent: CP14ModularBladeMaceBase
id: CP14ModularBladeMithrilMace
name: mithril mace ball
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Mace/mithril_mace.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilMace

View File

@@ -45,4 +45,16 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeCopperPickaxe
- BladeCopperPickaxe
- type: entity
parent: CP14ModularBladePickaxeBase
id: CP14ModularBladeMithrilPickaxe
name: mithril pickaxe head
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/mithril_pickaxe.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilPickaxe

View File

@@ -45,4 +45,16 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeCopperRapier
- BladeCopperRapier
- type: entity
parent: CP14ModularBladeRapierBase
id: CP14ModularBladeMithrilRapier
name: mithril rapier blade
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Rapier/mithril_rapier.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilRapier

View File

@@ -45,4 +45,16 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeCopperShovel
- BladeCopperShovel
- type: entity
parent: CP14ModularBladeShovelBase
id: CP14ModularBladeMithrilShovel
name: mithril shovel blade
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Shovel/mithril_shovel.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilShovel

View File

@@ -45,4 +45,16 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeGoldSickle
- BladeGoldSickle
- type: entity
parent: CP14ModularBladeSickleBase
id: CP14ModularBladeMithrilSickle
name: mithril sickle blade
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Sickle/mithril_sickle.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilSickle

View File

@@ -47,6 +47,18 @@
possibleParts:
- BladeCopperSword
- type: entity
parent: CP14ModularBladeSwordBase
id: CP14ModularBladeMithrilSword
name: mithril sword blade
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Blade/Sword/mithril_sword.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeMithrilSword
- type: entity
parent: CP14ModularBladeSwordBase
id: CP14ModularBladeBoneSword
@@ -57,4 +69,4 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- BladeBoneSword
- BladeBoneSword

View File

@@ -48,4 +48,17 @@
state: icon
- type: CP14ModularCraftPart
possibleParts:
- GardeSharpCopper
- GardeSharpCopper
- type: entity
parent: CP14ModularGardeBase
id: CP14ModularGardeSharpMithril
categories: [ ForkFiltered ]
name: sharp mithril garde
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Garde/mithril_sharp.rsi
state: icon
- type: CP14ModularCraftPart
possibleParts:
- GardeSharpMithril

View File

@@ -104,7 +104,30 @@
- !type:CP14ModularDisassembleBehavior
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripShort
id: CP14ModularGripLucens
name: lucens grip
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Grip/lucens_grip.rsi
state: icon
- type: CP14ModularCraftStartPoint
startProtoPart: CP14ModularGripLucens
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 60
behaviors:
- !type:PlaySoundBehavior
sound:
collection: MetalBreak
- !type:CP14ModularDisassembleBehavior
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripShort
id: CP14ModularGripIron
@@ -128,6 +151,29 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripShort
id: CP14ModularGripMithril
name: mithril grip
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/Grip/mithril_grip.rsi
state: icon
- type: CP14ModularCraftStartPoint
startProtoPart: CP14ModularGripMithril
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 120 #x2.4 durability
behaviors:
- !type:PlaySoundBehavior
sound:
collection: MetalBreak
- !type:CP14ModularDisassembleBehavior
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripShort
id: CP14ModularGripGolden
@@ -198,6 +244,29 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripLong
id: CP14ModularGripLucensLong
name: long lucens grip
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/GripLong/lucens_grip_long.rsi
state: icon
- type: CP14ModularCraftStartPoint
startProtoPart: CP14ModularGripLucensLong
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 60
behaviors:
- !type:PlaySoundBehavior
sound:
collection: MetalBreak
- !type:CP14ModularDisassembleBehavior
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripLong
id: CP14ModularGripIronLong
@@ -221,6 +290,29 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripLong
id: CP14ModularGripMithrilLong
name: long mithril grip
components:
- type: Sprite
sprite: _CP14/Objects/ModularTools/GripLong/mithril_grip_long.rsi
state: icon
- type: CP14ModularCraftStartPoint
startProtoPart: CP14ModularGripMithrilLong
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 120 #x2.4 durability
behaviors:
- !type:PlaySoundBehavior
sound:
collection: MetalBreak
- !type:CP14ModularDisassembleBehavior
- !type:DoActsBehavior
acts: ["Destruction"]
- type: entity
parent: CP14ModularGripIronLong
id: CP14ModularGripIronLongGuard
@@ -275,4 +367,4 @@
collection: MetalBreak
- !type:CP14ModularDisassembleBehavior
- !type:DoActsBehavior
acts: ["Destruction"]
acts: ["Destruction"]

View File

@@ -0,0 +1,55 @@
- type: entity
parent: BaseItem
id: CP14BaseSubdimensionalKey
abstract: true
categories: [ ForkFiltered ]
name: demiplane key
description: The core that connects the real world to the demiplane. Use it to open a temporary passage to the other world.
components:
- type: Item
size: Tiny
- type: Sprite
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift_core.rsi
layers:
- state: core
shader: unshaded
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes
- type: entity
id: CP14DemiplaneKeyT1
parent: CP14BaseSubdimensionalKey
suffix: T1
components:
- type: CP14DemiplaneGeneratorData
tiersContent:
1: 1
limits:
Reward: 1
Danger: 1
Fun: 1
Weather: 1
MapLight: 1
- type: entity
id: CP14DemiplaneKeyT2
parent: CP14BaseSubdimensionalKey
suffix: T2
components:
- type: Sprite
layers:
- state: core
shader: unshaded
color: red
- type: CP14DemiplaneGeneratorData
tiersContent:
1: 0.75 # We dont have lot t2 content now. In future, decrease to 0.33
2: 1
limits:
Reward: 1.5
Danger: 2
Fun: 1
Weather: 1
MapLight: 1

View File

@@ -17,7 +17,7 @@
id: CP14OreCopper
parent: CP14BaseOre
name: copper ore
description: A piece of pale, heavy copper.
description: A piece of pale, heavy copper.
components:
- type: Sprite
sprite: _CP14/Objects/Materials/copper_ore.rsi
@@ -29,7 +29,7 @@
id: CP14OreIron
parent: CP14BaseOre
name: iron ore
description: A piece of cold, heavy iron.
description: A piece of cold, heavy iron.
components:
- type: Sprite
sprite: _CP14/Objects/Materials/iron_ore.rsi
@@ -48,3 +48,15 @@
layers:
- state: ore1
map: ["random"]
- type: entity
id: CP14OreMithril
parent: CP14BaseOre
name: mithril ore
description: A piece of enchanted, pure mithril.
components:
- type: Sprite
sprite: _CP14/Objects/Materials/mithril_ore.rsi
layers:
- state: ore1
map: ["random"]

View File

@@ -179,4 +179,121 @@
treelarge03: ""
treelarge04: ""
treelarge05: ""
treelarge06: ""
treelarge06: ""
- type: entity
id: CP14BaseLucensTree
parent: CP14BaseTree
name: lucens tree
components:
- type: PointLight
radius: 1.5
energy: 2
color: "#87CEEB"
- type: Sprite
noRot: true
sprite: _CP14/Structures/Flora/lucens.rsi
drawdepth: Mobs
offset: 0,0.9
layers:
- state: tree03
map: ["random"]
- type: RandomSprite
available:
- random:
tree03: ""
tree04: ""
tree05: ""
tree06: ""
- type: Destructible
thresholds:
- trigger:
!type:DamageTypeTrigger
damageType: Heat
damage: 100
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
damage: 200
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
damage: 75
behaviors:
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/tree_fell.ogg
params:
volume: 5
variation: 0.05
- !type:DoActsBehavior
acts: [ "Destruction" ]
- !type:SpawnEntitiesBehavior
spawn:
CP14LucensWoodLog:
min: 1
max: 3
- type: entity
parent: CP14BaseLucensTree
id: CP14BaseLucensTreeLarge
name: large lucens tree
components:
- type: Sprite
noRot: true
sprite: _CP14/Structures/Flora/lucens.rsi
drawdepth: Mobs
offset: 0,0.9
layers:
- state: tree01
map: ["random"]
- type: RandomSprite
available:
- random:
tree01: ""
tree02: ""
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeAabb
bounds: "-0.18,-0.35,0.18,0.35"
density: 2000
layer:
- WallLayer
- type: Destructible
thresholds:
- trigger:
!type:DamageTypeTrigger
damageType: Heat
damage: 100
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
damage: 200
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
damage: 120
behaviors:
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/tree_fell.ogg
params:
volume: 5
variation: 0.05
- !type:DoActsBehavior
acts: [ "Destruction" ]
- !type:SpawnEntitiesBehavior
spawn:
CP14LucensWoodLog:
min: 3
max: 6

View File

@@ -1,7 +1,27 @@
- type: entity
id: CP14BarrelSolution
abstract: true
components:
- type: InteractionOutline
- type: Appearance
- type: DrainableSolution
solution: barrel
- type: MixableSolution
solution: barrel
- type: RefillableSolution
solution: barrel
- type: DrawableSolution
solution: barrel
- type: DumpableSolution
solution: barrel
- type: Drink
solution: barrel
- type: entity
id: CP14BaseBarrel
parent:
- BaseStructureDynamic
- CP14BarrelSolution
- CP14BaseFlammable
name: wooden barrel
suffix: Empty
@@ -24,7 +44,7 @@
False: {visible: true}
- type: Sprite
drawdepth: Mobs
sprite: _CP14/Structures/Furniture/barrel.rsi
sprite: _CP14/Structures/Furniture/Barrels/barrel.rsi
noRot: true
layers:
- state: barrel_open
@@ -35,7 +55,6 @@
map: ["enum.OpenableVisuals.Layer"]
- type: Transform
noRot: true
- type: InteractionOutline
- type: Physics
- type: Construction
graph: CP14BaseBarrel
@@ -87,7 +106,6 @@
collection: WoodDestroy
- !type:DoActsBehavior
acts: ["Destruction"]
- type: Appearance
- type: SolutionContainerManager
solutions:
barrel:
@@ -95,20 +113,8 @@
- type: SolutionContainerVisuals
maxFillLevels: 5
fillBaseName: liq
- type: DrainableSolution
solution: barrel
- type: ExaminableSolution
solution: barrel
- type: MixableSolution
solution: barrel
- type: RefillableSolution
solution: barrel
- type: DrawableSolution
solution: barrel
- type: DumpableSolution
solution: barrel
- type: Drink
solution: barrel
- type: entity
id: CP14BarrelWater

View File

@@ -0,0 +1,153 @@
- type: entity
id: CP14CraneBarrel
parent: [BaseStructure, CP14BarrelSolution, CP14BaseFlammable]
name: wooden crane barrel
description: Large lying barrel with tap, for storing valuable liquids.
suffix: Empty
categories: [ ForkFiltered ]
components:
- type: Sprite
drawdepth: Mobs
sprite: _CP14/Structures/Furniture/Barrels/crane_barrel.rsi
layers:
- state: barrel
- type: Damageable
damageContainer: Inorganic
damageModifierSet: Wood
- type: Transform
- type: Anchorable
delay: 3
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 80
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTypeTrigger
damageType: Heat
damage: 5
behaviors:
- !type:SolutionExplosionBehavior
solution: barrel
- trigger:
!type:DamageTypeTrigger
damageType: Piercing
damage: 5
behaviors:
- !type:SolutionExplosionBehavior
solution: barrel
- trigger:
!type:DamageTrigger
damage: 25
behaviors:
- !type:SpillBehavior
solution: barrel
- !type:PlaySoundBehavior
sound:
collection: WoodDestroy
- !type:DoActsBehavior
acts: ["Destruction"]
- type: SolutionContainerManager
solutions:
barrel:
maxVol: 500
- type: entity
parent: CP14CraneBarrel
id: CP14CraneBarrelBeer
suffix: Beer
categories: [ ForkFiltered ]
components:
- type: SolutionContainerManager
solutions:
barrel:
reagents:
- ReagentId: Beer
Quantity: 500
- type: entity
id: CP14CraneBarrelSmall
parent: [BaseStructureDynamic, CP14BarrelSolution, CP14BaseFlammable]
name: wooden small crane barrel
description: A small lying barrel with a tap to quickly pour liquid into mugs.
suffix: Empty
categories: [ ForkFiltered ]
placement:
mode: SnapgridCenter
components:
- type: Sprite
drawdepth: Mobs
sprite: _CP14/Structures/Furniture/Barrels/crane_barrel_small.rsi
layers:
- state: barrel
- type: Transform
anchored: true
noRot: true
- type: Pullable
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeAabb
bounds: "-0.25,-0.25,0.25,0.25"
density: 200
mask:
- TabletopMachineMask
layer:
- TabletopMachineLayer
- type: Damageable
damageContainer: Inorganic
damageModifierSet: Wood
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 50
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTypeTrigger
damageType: Heat
damage: 5
behaviors:
- !type:SolutionExplosionBehavior
solution: barrel
- trigger:
!type:DamageTypeTrigger
damageType: Piercing
damage: 5
behaviors:
- !type:SolutionExplosionBehavior
solution: barrel
- trigger:
!type:DamageTrigger
damage: 15
behaviors:
- !type:SpillBehavior
solution: barrel
- !type:PlaySoundBehavior
sound:
collection: WoodDestroy
- !type:DoActsBehavior
acts: ["Destruction"]
- type: SolutionContainerManager
solutions:
barrel:
maxVol: 50
- type: entity
parent: CP14CraneBarrelSmall
id: CP14CraneBarrelSmallBeer
suffix: Beer
categories: [ ForkFiltered ]
components:
- type: SolutionContainerManager
solutions:
barrel:
reagents:
- ReagentId: Beer
Quantity: 50

View File

@@ -249,6 +249,44 @@
- type: IconSmooth
base: wall
- type: entity
id: CP14WallStoneMithrilOre
suffix: mithril ore
parent: CP14WallStone
description: A solid stone natural wall. You see the tantalizing particles of mithril in it.
components:
- type: Sprite
sprite: _CP14/Structures/Walls/Natural/cave_stone_mithril.rsi
- type: Icon
sprite: _CP14/Structures/Walls/Natural/cave_stone_mithril.rsi
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 300
behaviors:
- !type:DoActsBehavior
acts: ["Destruction"]
- trigger:
!type:DamageTrigger
damage: 100
behaviors:
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/break_stone.ogg
params:
volume: -6
- !type:SpawnEntitiesBehavior
spawn:
CP14OreMithril:
min: 1
max: 3
- !type:DoActsBehavior
acts: ["Destruction"]
- type: IconSmooth
base: wall
# We dont have silver now
#- type: entity

View File

@@ -47,4 +47,95 @@
- type: InteractionOutline
- type: Physics
- type: Damageable
- type: CP14DPSMeter
- type: CP14DPSMeter
- type: entity
id: CP14DemiplanRiftCore
categories: [ ForkFiltered ]
name: demiplan rift core
description: A subtle connection between the real world and the demiplane where the adventurers went. Sooner or later they will return from there.
components:
- type: CP14DemiplaneRift
- type: Transform
anchored: True
- type: Clickable
- type: Physics
canCollide: false
bodyType: Static
- type: Sprite
drawdepth: Effects
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift_core.rsi
layers:
- state: core
shader: unshaded
- state: pulse
shader: unshaded
- type: PointLight
radius: 2
energy: 2
color: "#371c5c"
netsync: false
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes
- type: entity
id: CP14DemiplaneTimedRadiusPassway
parent: CP14DemiplanRiftCore
name: pulsating demiplane rift
description: This rift is gaining strength, and will trap all nearby creatures in a demiplane in a second!
components:
- type: CP14DemiplaneRift
activeTeleport: false
- type: CP14DemiplaneRadiusTimedPassway
maxEntities: 4
delay: 4
- type: Sprite
drawdepth: Effects
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift.rsi
layers:
- state: pulse
shader: unshaded
- type: PointLight
radius: 8
- type: SingularityDistortion
falloffPower: 1.5
intensity: 50
- type: AmbientSound
volume: -3
range: 7
sound:
path: /Audio/Ambience/Objects/gravity_gen_hum.ogg
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes
- type: entity
id: CP14DemiplanePassway
parent: CP14DemiplanRiftCore
name: demiplane rift
description: A gap in space that allows you to travel between world and demiplanes.
components:
- type: CP14DemiplaneRiftOpened
- type: CP14DemiplaneRift
activeTeleport: false
- type: Sprite
drawdepth: Effects
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift.rsi
layers:
- state: anom
shader: unshaded
- type: SingularityDistortion
falloffPower: 1.5
intensity: 50
- type: AmbientSound
volume: -3
range: 7
sound:
path: /Audio/Ambience/Objects/gravity_gen_hum.ogg
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes

View File

@@ -1,133 +0,0 @@
- type: entity
parent: BaseItem
id: CP14BaseSubdimensionalKey
abstract: true
categories: [ ForkFiltered ]
name: demiplan key
description: The core that connects the real world to the demiplane. Use it to open a temporary passage to the other world.
components:
- type: Sprite
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift_core.rsi
layers:
- state: core
shader: unshaded
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes
- type: entity
id: CP14DemiplanKey
parent: CP14BaseSubdimensionalKey
name: demiplan key
components:
- type: Item
size: Tiny
- type: CP14DemiplaneGeneratorData
rewardLimit: 1.25
difficultyLimit: 0.75
maxModifiers: 6
- type: entity
id: CP14DemiplanRiftCore
categories: [ ForkFiltered ]
name: demiplan rift core
description: A subtle connection between the real world and the demiplane where the adventurers went. Sooner or later they will return from there.
components:
- type: CP14DemiplaneRift
- type: Transform
anchored: True
- type: Clickable
- type: Physics
canCollide: false
bodyType: Static
- type: Sprite
drawdepth: Effects
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift_core.rsi
layers:
- state: core
shader: unshaded
- state: pulse
shader: unshaded
- type: PointLight
radius: 2
energy: 2
color: "#371c5c"
netsync: false
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes
- type: entity
id: CP14DemiplaneTimedRadiusPassway
parent: CP14DemiplanRiftCore
name: pulsating demiplane rift
description: This rift is gaining strength, and will trap all nearby creatures in a demiplane in a second!
components:
- type: CP14DemiplaneRift
activeTeleport: false
- type: CP14DemiplaneRadiusTimedPassway
maxEntities: 4
delay: 4
- type: Sprite
drawdepth: Effects
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift.rsi
layers:
- state: pulse
shader: unshaded
- type: PointLight
radius: 8
- type: SingularityDistortion
falloffPower: 1.5
intensity: 50
- type: AmbientSound
volume: -3
range: 7
sound:
path: /Audio/Ambience/Objects/gravity_gen_hum.ogg
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes
- type: entity
id: CP14DemiplanePassway
parent: CP14DemiplanRiftCore
name: demiplane rift
description: A gap in space that allows you to travel between world and demiplanes.
components:
- type: CP14DemiplaneRiftOpened
- type: CP14DemiplaneRift
activeTeleport: false
- type: Sprite
drawdepth: Effects
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift.rsi
layers:
- state: anom
shader: unshaded
- type: SingularityDistortion
falloffPower: 1.5
intensity: 50
- type: AmbientSound
volume: -3
range: 7
sound:
path: /Audio/Ambience/Objects/gravity_gen_hum.ogg
- type: GuideHelp
guides:
- CP14_RU_Demiplanes
- CP14_EN_Demiplanes
- type: entity
parent: MarkerBase
id: CP14DemiplaneEntryPointMarker
name: demiplane entry point
categories: [ ForkFiltered ]
components:
- type: Sprite
layers:
- state: green
- sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift.rsi
state: pulse
- type: CP14DemiplaneRift

View File

@@ -305,7 +305,7 @@
- CP14ModularIronPickaxe
- CP14Lighter
- CP14Torch
- CP14DemiplanKey
- CP14DemiplaneKeyT1
- type: loadout
id: CP14MagicHealingStaff
@@ -397,10 +397,10 @@
- CP14Torch
- type: loadout
id: CP14DemiplanKey
id: CP14DemiplaneKeyT1
storage:
back:
- CP14DemiplanKey
- CP14DemiplaneKeyT1
# Keys

View File

@@ -70,6 +70,24 @@
color: "#FFD700"
price: 0 #?
- type: material
id: CP14Mithril
stackEntity: CP14MithrilBar1
name: cp14-material-mithril
unit: materials-unit-bar
icon: { sprite: _CP14/Objects/Materials/mithril_bar.rsi, state: bar_2 }
color: "#006c83"
price: 0 #?
- type: material
id: CP14LucensWoodenPlanks
stackEntity: CP14LucensWoodenPlanks1
name: cp14-material-lucens-planks
unit: materials-unit-bar
icon: { sprite: _CP14/Objects/Materials/lucens_wood.rsi, state: planks_2 }
color: "#1a1e22"
price: 0 #?
- type: material
id: CP14FloraMaterial
stackEntity: CP14FloraMaterial1

View File

@@ -58,4 +58,15 @@
- !type:Inherit
copyFrom:
- BaseBladeAxe
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilAxe
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilAxe
rsiPath: _CP14/Objects/ModularTools/Blade/Axe/mithril_axe.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladeAxe
- BaseWeaponMithril

View File

@@ -63,4 +63,15 @@
- !type:Inherit
copyFrom:
- BaseBladeDagger
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilDagger
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilDagger
rsiPath: _CP14/Objects/ModularTools/Blade/Dagger/mithril_dagger.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladeDagger
- BaseWeaponMithril

View File

@@ -56,4 +56,15 @@
- !type:Inherit
copyFrom:
- BaseBladeMace
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilMace
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilMace
rsiPath: _CP14/Objects/ModularTools/Blade/Mace/mithril_mace.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladeMace
- BaseWeaponMithril

View File

@@ -51,4 +51,15 @@
- !type:Inherit
copyFrom:
- BaseBladePickaxe
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilPickaxe
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilPickaxe
rsiPath: _CP14/Objects/ModularTools/Blade/Pickaxe/mithril_pickaxe.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladePickaxe
- BaseWeaponMithril

View File

@@ -66,4 +66,15 @@
- !type:Inherit
copyFrom:
- BaseBladeRapier
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilRapier
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilRapier
rsiPath: _CP14/Objects/ModularTools/Blade/Rapier/mithril_rapier.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladeRapier
- BaseWeaponMithril

View File

@@ -62,4 +62,15 @@
- !type:Inherit
copyFrom:
- BaseBladeShovel
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilShovel
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilShovel
rsiPath: _CP14/Objects/ModularTools/Blade/Shovel/mithril_shovel.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladeShovel
- BaseWeaponMithril

View File

@@ -1,5 +1,5 @@
#Concept:
# Copy of dagger with lesser damage
# Copy of dagger with lesser damage
# But can gather grass from world
- type: modularPart
id: BaseBladeSickle
@@ -54,4 +54,15 @@
- !type:Inherit
copyFrom:
- BaseBladeSickle
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilSickle
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilSickle
rsiPath: _CP14/Objects/ModularTools/Blade/Sickle/mithril_sickle.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladeSickle
- BaseWeaponMithril

View File

@@ -70,6 +70,17 @@
- BaseBladeSword
- BaseWeaponCopper
- type: modularPart
id: BladeMithrilSword
targetSlot: Blade
sourcePart: CP14ModularBladeMithrilSword
rsiPath: _CP14/Objects/ModularTools/Blade/Sword/mithril_sword.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseBladeSword
- BaseWeaponMithril
- type: modularPart
id: BladeBoneSword
targetSlot: Blade
@@ -93,4 +104,4 @@
- !type:EditDamageableModifier
multiplier: 2.5
- !type:EditSharpened
sharpnessDamageMultiplier: 3
sharpnessDamageMultiplier: 3

View File

@@ -40,4 +40,15 @@
- !type:Inherit
copyFrom:
- BaseGardeSharp
- BaseWeaponCopper
- BaseWeaponCopper
- type: modularPart
id: GardeSharpMithril
targetSlot: Garde
sourcePart: CP14ModularGardeSharpMithril
rsiPath: _CP14/Objects/ModularTools/Garde/mithril_sharp.rsi
modifiers:
- !type:Inherit
copyFrom:
- BaseGardeSharp
- BaseWeaponMithril

View File

@@ -89,4 +89,12 @@
- !type:EditDamageableModifier
multiplier: 2
- !type:EditSharpened
sharpnessDamageMultiplier: 3
sharpnessDamageMultiplier: 3
- type: modularPart
id: BaseWeaponMithril
modifiers:
- !type:EditDamageableModifier
multiplier: 1
- !type:EditSharpened
sharpnessDamageMultiplier: 1

View File

@@ -1,14 +1,11 @@
- type: cp14DemiplaneLocation
id: T1Caves
tier: 1
locationConfig: CP14DemiplaneCaves
name: cp14-demiplane-location-cave
tags:
- CP14DemiplaneCave
- CP14DemiplaneOres
- CP14DemiplaneUnderground
components:
- type: CP14WeatherController
entries:
- visuals: CP14Mist
- type: dungeonConfig
id: CP14DemiplaneCaves

View File

@@ -1,11 +1,12 @@
- type: cp14DemiplaneLocation
id: T1GrasslandIsland
tier: 1
locationConfig: CP14DemiplaneGrasslandIsland
name: cp14-demiplane-location-grassland-island
tags:
- CP14DemiplaneCave
- CP14DemiplaneOres
- CP14DemiplaneHerbals
- CP14DemiplaneOpenSky
- CP14DemiplaneGrass
components:
- type: MapLight
ambientLightColor: "#BFEEFFFF"
@@ -14,33 +15,6 @@
- type: Parallax
parallax: CP14Ocean
- type: CP14CloudShadows
- type: CP14WeatherController
entries:
- visuals: CP14Rain
- visuals: CP14Storm
- visuals: CP14Mist
- type: CP14DayCycle
timeEntries:
- duration: 80
color: '#754A4AFF'
- duration: 80
color: '#E0BA87FF'
- duration: 80
color: '#BFEEFFFF'
- period: Night
duration: 80
color: '#385163FF'
- period: Night
duration: 80
color: '#060D12FF'
- period: Night
duration: 80
color: '#000000FF'
- period: Night
duration: 80
color: '#000000FF'
- duration: 80
color: '#120906FF'
- type: dungeonConfig
id: CP14DemiplaneGrasslandIsland

View File

@@ -1,14 +1,11 @@
- type: cp14DemiplaneLocation
id: T1CavesRing
tier: 2
locationConfig: CP14DemiplaneCavesRing
name: cp14-demiplane-location-cave
tags:
- CP14DemiplaneCave
- CP14DemiplaneOres
- CP14DemiplaneUnderground
components:
- type: CP14WeatherController
entries:
- visuals: CP14Mist
- type: dungeonConfig
id: CP14DemiplaneCavesRing

View File

@@ -1,17 +1,12 @@
- type: cp14DemiplaneLocation
id: T1GrassGeode
tier: 2
locationConfig: CP14DemiplaneGrassGeode
name: cp14-demiplane-location-cave-grass
tags:
- CP14DemiplaneCave
- CP14DemiplaneGrass
- CP14DemiplaneOres
- CP14DemiplaneHerbals
- CP14DemiplaneUnderground
components:
- type: CP14WeatherController
entries:
- visuals: CP14Mist
- type: MapLight
ambientLightColor: "#020a1c"
- type: dungeonConfig
id: CP14EdTestLayers

View File

@@ -1,10 +1,11 @@
- type: cp14DemiplaneLocation
id: T1GrasslandIslandRing
tier: 2
locationConfig: CP14DemiplaneGrasslandIslandRing
name: cp14-demiplane-location-grassland-island
tags:
- CP14DemiplaneOpenSky
- CP14DemiplaneGrass
- CP14DemiplaneHerbals
components:
- type: MapLight
ambientLightColor: "#BFEEFFFF"
@@ -13,33 +14,6 @@
- type: Parallax
parallax: CP14Ocean
- type: CP14CloudShadows
- type: CP14WeatherController
entries:
- visuals: CP14Rain
- visuals: CP14Storm
- visuals: CP14Mist
- type: CP14DayCycle
timeEntries:
- duration: 80
color: '#754A4AFF'
- duration: 80
color: '#E0BA87FF'
- duration: 80
color: '#BFEEFFFF'
- period: Night
duration: 80
color: '#385163FF'
- period: Night
duration: 80
color: '#060D12FF'
- period: Night
duration: 80
color: '#000000FF'
- period: Night
duration: 80
color: '#000000FF'
- duration: 80
color: '#120906FF'
- type: dungeonConfig
id: CP14DemiplaneGrasslandIslandRing

View File

@@ -0,0 +1,52 @@
# TIER 1
- type: cp14DemiplaneModifier
id: Chasm
tiers:
- 1
- 2
- 3
name: cp14-modifier-chasm
generationWeight: 0.6
categories:
Danger: 0.33
layers:
- !type:OreDunGen
entity: CP14Chasm
tileMask:
- CP14FloorBase
count: 5
minGroupSize: 2
maxGroupSize: 5
# TIER 2
- type: cp14DemiplaneModifier
id: Explosive
tiers:
- 2
- 3
name: cp14-modifier-explosive
generationWeight: 0.25
categories:
Danger: 0.4
layers:
- !type:OreDunGen
entity: LandMineExplosive
count: 20
minGroupSize: 1
maxGroupSize: 2
- type: cp14DemiplaneModifier
id: ShadowKudzuDebug
tiers:
- 2
- 3
categories:
Danger: 0.3
layers:
- !type:OreDunGen
entity: ShadowKudzu
count: 10
minGroupSize: 1
maxGroupSize: 1

View File

@@ -0,0 +1,123 @@
# TIER 1
- type: cp14DemiplaneModifier
id: EnemyZombie
tiers:
- 1
name: cp14-modifier-zombie
generationWeight: 1.5
categories:
Danger: 0.3
layers:
- !type:OreDunGen
entity: CP14SpawnMobUndeadZombieRandom
count: 4
minGroupSize: 5
maxGroupSize: 8
- type: cp14DemiplaneModifier
id: EnemyDyno
tiers:
- 1
- 2
name: cp14-modifier-dyno
categories:
Danger: 0.4
requiredTags:
- CP14DemiplaneOpenSky
- CP14DemiplaneHerbals
layers:
- !type:OreDunGen
entity: CP14SpawnMobDinoYumkaraptor
count: 6
minGroupSize: 1
maxGroupSize: 1
- type: cp14DemiplaneModifier
id: MonsterMosquito
tiers:
- 1
- 2
name: cp14-modifier-dyno
categories:
Danger: 0.2
requiredTags:
- CP14DemiplaneHerbals
layers:
- !type:OreDunGen
entity: CP14SpawnMobMonsterMosquito
count: 4
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: EnemyXeno
tiers:
- 1
name: cp14-modifier-xeno
categories:
Danger: 0.4
requiredTags:
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
entity: CP14MobXenoDrone
count: 3
minGroupSize: 1
maxGroupSize: 2
- !type:OreDunGen
entity: CP14MobXeno
count: 3
minGroupSize: 1
maxGroupSize: 2
- type: cp14DemiplaneModifier
id: SmallHydra
tiers:
- 1
name: cp14-modifier-dyno
categories:
Danger: 0.3
requiredTags:
- CP14DemiplaneHerbals
layers:
- !type:OreDunGen
entity: CP14MobDinoSmallHydra
count: 4
minGroupSize: 2
maxGroupSize: 3
# TIER 2
- type: cp14DemiplaneModifier
id: EnemySkeleton
tiers:
- 2
name: cp14-modifier-zombie
generationWeight: 1.5
categories:
Danger: 0.5
layers:
- !type:OreDunGen
entity: SpawnPointGhostDemiplaneSkeleton
count: 1
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: EnemyMole
tiers:
- 2
name: cp14-modifier-mole
categories:
Danger: 0.4
requiredTags:
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14MobMonsterMole
count: 6
minGroupSize: 1
maxGroupSize: 2

View File

@@ -0,0 +1,23 @@
- type: cp14DemiplaneModifier
id: RoyalPumpkin
tiers:
- 1
- 2
- 3
generationWeight: 0.1
generationProb: 0.1
categories:
Fun: 1
requiredTags:
- CP14DemiplaneHerbals
- CP14DemiplaneOpenSky
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14RoyalPumpkin
count: 10
minGroupSize: 1
maxGroupSize: 1

View File

@@ -0,0 +1,105 @@
- type: cp14DemiplaneModifier
id: MapLightDarkness
tiers:
- 1
- 2
- 3
generationWeight: 2
categories:
MapLight: 1
components:
- type: MapLight
ambientLightColor: "#000000"
- type: cp14DemiplaneModifier
id: MapLightDarkRed
tiers:
- 2
- 3
categories:
MapLight: 1
components:
- type: MapLight
ambientLightColor: "#0f0104"
- type: cp14DemiplaneModifier
id: MapLightDarkPurple
tiers:
- 1
categories:
MapLight: 1
components:
- type: MapLight
ambientLightColor: "#09010f"
# Open sky time entries
- type: cp14DemiplaneModifier
id: MapLightDarkNight
tiers:
- 1
- 2
- 3
categories:
MapLight: 1
requiredTags:
- CP14DemiplaneOpenSky
components:
- type: MapLight
ambientLightColor: "#010714"
- type: cp14DemiplaneModifier
id: MapLightDawn
tiers:
- 1
- 2
- 3
categories:
MapLight: 1
requiredTags:
- CP14DemiplaneOpenSky
components:
- type: MapLight
ambientLightColor: "#754A4A"
- type: cp14DemiplaneModifier
id: MapLightMidday
tiers:
- 1
- 2
- 3
categories:
MapLight: 1
requiredTags:
- CP14DemiplaneOpenSky
components:
- type: MapLight
ambientLightColor: "#E0BA87"
- type: cp14DemiplaneModifier
id: MapLightMidday2
tiers:
- 1
- 2
- 3
categories:
MapLight: 1
requiredTags:
- CP14DemiplaneOpenSky
components:
- type: MapLight
ambientLightColor: "#BFEEFF"
- type: cp14DemiplaneModifier
id: MapLightEvening
tiers:
- 1
- 2
- 3
categories:
MapLight: 1
requiredTags:
- CP14DemiplaneOpenSky
components:
- type: MapLight
ambientLightColor: "#385163"

View File

@@ -0,0 +1,158 @@
# TIER 1
- type: cp14DemiplaneModifier
id: QuartzCrystal
tiers:
- 1
name: cp14-modifier-quartz-crystal
categories:
Reward: 0.1
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14QuartzCrystal
count: 10
minGroupSize: 1
maxGroupSize: 4
# TIER 2
- type: cp14DemiplaneModifier
id: QuartzCrystalRubies
tiers:
- 1
- 2
- 3
name: cp14-modifier-quartz-crystal
generationWeight: 0.1
categories:
Reward: 0.1
requiredTags:
- CP14DemiplaneOres
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14CrystalRubiesMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalTopazes
tiers:
- 1
- 2
- 3
name: cp14-modifier-quartz-crystal
generationWeight: 0.1
categories:
Reward: 0.1
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorSand
entity: CP14CrystalTopazesMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalEmeralds
tiers:
- 1
- 2
- 3
name: cp14-modifier-quartz-crystal
generationWeight: 0.1
categories:
Reward: 0.1
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14CrystalEmeraldsMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalSapphires
tiers:
- 1
- 2
- 3
name: cp14-modifier-quartz-crystal
generationWeight: 0.1
categories:
Reward: 0.1
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14CrystalSapphiresMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalAmethysts
tiers:
- 1
- 2
- 3
name: cp14-modifier-quartz-crystal
generationWeight: 0.1
categories:
Reward: 0.1
requiredTags:
- CP14DemiplaneOres
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14CrystalAmethystsMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalDiamonds
tiers:
- 1
- 2
- 3
name: cp14-modifier-quartz-crystal
generationWeight: 0.1
categories:
Reward: 0.1
requiredTags:
- CP14DemiplaneOres
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorSand
entity: CP14CrystalDiamondsMedium
count: 30
minGroupSize: 1
maxGroupSize: 4

View File

@@ -0,0 +1,132 @@
# TIER 1
- type: cp14DemiplaneModifier
id: Dayflin
tiers:
- 1
- 2
name: cp14-modifier-dayflin
categories:
Reward: 0.2
requiredTags:
- CP14DemiplaneHerbals
- CP14DemiplaneOpenSky
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableDayflin
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: FlyAgaric
tiers:
- 1
- 2
name: cp14-modifier-fly-agaric
categories:
Reward: 0.2
requiredTags:
- CP14DemiplaneHerbals
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableFlyAgaric
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: BlueAmanita
tiers:
- 1
- 2
name: cp14-modifier-blue-amanita
categories:
Reward: 0.2
requiredTags:
- CP14DemiplaneHerbals
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableBlueAmanita
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: BloodFlower
tiers:
- 1
- 2
name: cp14-modifier-blood-flower
categories:
Reward: 0.2
requiredTags:
- CP14DemiplaneHerbals
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableBloodFlower
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: WildSage
tiers:
- 1
- 2
name: cp14-modifier-wild-sage
categories:
Reward: 0.2
requiredTags:
- CP14DemiplaneHerbals
- CP14DemiplaneOpenSky
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableWildSage
count: 10
minGroupSize: 3
maxGroupSize: 5
# TIER 2
- type: cp14DemiplaneModifier
id: LumiShroom
tiers:
- 2
name: cp14-modifier-lumisroom
categories:
Reward: 0.2
requiredTags:
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
- CP14FloorBase
entity: CP14GatherableLumiMushroom
count: 10
minGroupSize: 3
maxGroupSize: 5

View File

@@ -0,0 +1,89 @@
# TIER 1
- type: cp14DemiplaneModifier
id: LootT1
tiers:
- 1
generationWeight: 2
categories:
Reward: 0.35
layers:
- !type:OreDunGen
entity: CP14SpawnerDemiplaneLootT1
count: 20
minGroupSize: 2
maxGroupSize: 3
#- type: cp14DemiplaneModifier
# id: Ruins
# tier: 1
# name: cp14-modifier-ruins
# generationWeight: 2
# categories:
# Reward: 0.35
# layers:
# - !type:OreDunGen
# entity: ##CP14DemiplanRuinsRoomSpawner
# count: 5
# minGroupSize: 1
# maxGroupSize: 1
- type: cp14DemiplaneModifier
id: Rabbits
tiers:
- 1
- 2
name: cp14-modifier-rabbits
generationWeight: 0.4
categories:
Reward: 0.2
requiredTags:
- CP14DemiplanePeacefulAnimals
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14MobRabbit
count: 3
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: Boar
tiers:
- 1
- 2
name: cp14-modifier-boars
generationWeight: 0.4
categories:
Reward: 0.2
requiredTags:
- CP14DemiplanePeacefulAnimals
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14MobBoar
count: 3
minGroupSize: 2
maxGroupSize: 3
# TIER 2
- type: cp14DemiplaneModifier
id: LootT2
tiers:
- 2
generationWeight: 2
categories:
Reward: 0.35
layers:
- !type:OreDunGen
entity: CP14SpawnerDemiplaneLootT2
count: 20
minGroupSize: 2
maxGroupSize: 3

View File

@@ -0,0 +1,79 @@
# TIER 1
- type: cp14DemiplaneModifier
id: IronOre
tiers:
- 1
name: cp14-modifier-iron-ore
unique: false
categories:
Reward: 0.4
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
entityMask:
- CP14WallStone
entity: CP14WallStoneIronOre
count: 5
minGroupSize: 10
maxGroupSize: 15
- type: cp14DemiplaneModifier
id: CopperOre
tiers:
- 1
name: cp14-modifier-copper-ore
unique: false
categories:
Reward: 0.3
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
entityMask:
- CP14WallStone
entity: CP14WallStoneCopperOre
count: 10
minGroupSize: 5
maxGroupSize: 7
# TIER 2
- type: cp14DemiplaneModifier
id: GoldOre
tiers:
- 2
name: cp14-modifier-gold-ore
unique: false
categories:
Reward: 0.5
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
entityMask:
- CP14WallStone
entity: CP14WallStoneGoldOre # Hellish gold 666
count: 6
minGroupSize: 6
maxGroupSize: 6
- type: cp14DemiplaneModifier
id: MithrilOre
tiers:
- 2
name: cp14-modifier-mithril-ore
unique: false
categories:
Reward: 0.5
requiredTags:
- CP14DemiplaneOres
layers:
- !type:OreDunGen
entityMask:
- CP14WallStone
entity: CP14WallStoneMithrilOre
count: 5
minGroupSize: 4
maxGroupSize: 8

View File

@@ -0,0 +1,68 @@
- type: cp14DemiplaneModifier
id: WeatherNone
tiers:
- 1
- 2
- 3
generationWeight: 3
categories:
Weather: 1
- type: cp14DemiplaneModifier
id: WeatherMist
tiers:
- 1
- 2
- 3
categories:
Weather: 1
components:
- type: CP14WeatherController
clearDuration:
min: 0
max: 0
entries:
- visuals: CP14Mist
duration:
min: 10000
max: 10000
- type: cp14DemiplaneModifier
id: WeatherRain
tiers:
- 1
- 2
categories:
Weather: 1
requiredTags:
- CP14DemiplaneOpenSky
components:
- type: CP14WeatherController
clearDuration:
min: 0
max: 0
entries:
- visuals: CP14Rain
duration:
min: 10000
max: 10000
- type: cp14DemiplaneModifier
id: WeatherStorm
tiers:
- 2
- 3
categories:
Weather: 1
requiredTags:
- CP14DemiplaneOpenSky
components:
- type: CP14WeatherController
clearDuration:
min: 0
max: 0
entries:
- visuals: CP14Storm
duration:
min: 10000
max: 10000

View File

@@ -0,0 +1,14 @@
- type: cp14DemiplaneModifierCategory
id: Danger
- type: cp14DemiplaneModifierCategory
id: Reward
- type: cp14DemiplaneModifierCategory
id: Fun
- type: cp14DemiplaneModifierCategory
id: Weather
- type: cp14DemiplaneModifierCategory
id: MapLight

View File

@@ -1,477 +0,0 @@
- type: cp14DemiplaneModifier
id: GoldOre
name: cp14-modifier-gold-ore
unique: false
reward: 0.5
requiredTags:
- CP14DemiplaneCave
layers:
- !type:OreDunGen
entityMask:
- CP14WallStone
entity: CP14WallStoneGoldOre # Hellish gold 666
count: 6
minGroupSize: 6
maxGroupSize: 6
- type: cp14DemiplaneModifier
id: IronOre
name: cp14-modifier-iron-ore
unique: false
reward: 0.4
requiredTags:
- CP14DemiplaneCave
layers:
- !type:OreDunGen
entityMask:
- CP14WallStone
entity: CP14WallStoneIronOre
count: 5
minGroupSize: 10
maxGroupSize: 15
- type: cp14DemiplaneModifier
id: CopperOre
name: cp14-modifier-copper-ore
unique: false
reward: 0.3
requiredTags:
- CP14DemiplaneCave
layers:
- !type:OreDunGen
entityMask:
- CP14WallStone
entity: CP14WallStoneCopperOre
count: 10
minGroupSize: 5
maxGroupSize: 7
- type: cp14DemiplaneModifier
id: QuartzCrystal
name: cp14-modifier-quartz-crystal
reward: 0.1
requiredTags:
- CP14DemiplaneCave
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14QuartzCrystal
count: 10
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalRubies
name: cp14-modifier-quartz-crystal
reward: 0.2
generationWeight: 0.1
requiredTags:
- CP14DemiplaneCave
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14CrystalRubiesMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalTopazes
name: cp14-modifier-quartz-crystal
reward: 0.2
generationWeight: 0.1
requiredTags:
- CP14DemiplaneCave
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorSand
entity: CP14CrystalTopazesMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalEmeralds
name: cp14-modifier-quartz-crystal
reward: 0.2
generationWeight: 0.1
requiredTags:
- CP14DemiplaneCave
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14CrystalEmeraldsMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalSapphires
name: cp14-modifier-quartz-crystal
reward: 0.2
generationWeight: 0.1
requiredTags:
- CP14DemiplaneCave
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14CrystalSapphiresMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalAmethysts
name: cp14-modifier-quartz-crystal
reward: 0.2
generationWeight: 0.1
requiredTags:
- CP14DemiplaneCave
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14CrystalAmethystsMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: QuartzCrystalDiamonds
name: cp14-modifier-quartz-crystal
reward: 0.2
generationWeight: 0.1
requiredTags:
- CP14DemiplaneCave
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorSand
entity: CP14CrystalDiamondsMedium
count: 30
minGroupSize: 1
maxGroupSize: 4
- type: cp14DemiplaneModifier
id: Dayflin
name: cp14-modifier-dayflin
reward: 0.2
requiredTags:
- CP14DemiplaneGrass
- CP14DemiplaneOpenSky
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableDayflin
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: FlyAgaric
name: cp14-modifier-fly-agaric
reward: 0.2
requiredTags:
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableFlyAgaric
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: BlueAmanita
name: cp14-modifier-blue-amanita
reward: 0.2
requiredTags:
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableBlueAmanita
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: BloodFlower
name: cp14-modifier-blood-flower
reward: 0.2
requiredTags:
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableBloodFlower
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: WildSage
name: cp14-modifier-wild-sage
reward: 0.2
requiredTags:
- CP14DemiplaneGrass
- CP14DemiplaneOpenSky
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14GatherableWildSage
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: LumiShroom
name: cp14-modifier-lumisroom
reward: 0.2
requiredTags:
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
- CP14FloorBase
entity: CP14GatherableLumiMushroom
count: 10
minGroupSize: 3
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: Explosive
name: cp14-modifier-explosive
difficulty: 0.4
generationWeight: 0.25
layers:
- !type:OreDunGen
entity: LandMineExplosive
count: 20
minGroupSize: 1
maxGroupSize: 2
#- type: cp14DemiplaneModifier
# id: Ruins
# name: cp14-modifier-ruins
# reward: 0.35
# generationWeight: 2
# layers:
# - !type:OreDunGen
# entity: ##CP14DemiplanRuinsRoomSpawner
# count: 5
# minGroupSize: 1
# maxGroupSize: 1
- type: cp14DemiplaneModifier
id: Loot
reward: 0.35
generationWeight: 2
layers:
- !type:OreDunGen
entity: CP14SpawnerExpeditionLootCommon
count: 20
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: EnemyXeno
name: cp14-modifier-xeno
difficulty: 0.4
requiredTags:
- CP14DemiplaneUnderground
layers:
- !type:OreDunGen
entity: CP14MobXenoDrone
count: 3
minGroupSize: 1
maxGroupSize: 2
- !type:OreDunGen
entity: CP14MobXeno
count: 3
minGroupSize: 1
maxGroupSize: 2
- type: cp14DemiplaneModifier
id: EnemyZombie
name: cp14-modifier-zombie
difficulty: 0.3
generationWeight: 1.5
layers:
- !type:OreDunGen
entity: CP14SpawnMobUndeadZombieRandom
count: 4
minGroupSize: 5
maxGroupSize: 8
- type: cp14DemiplaneModifier
id: EnemySkeleton
name: cp14-modifier-zombie
difficulty: 0.3
generationWeight: 1.5
layers:
- !type:OreDunGen
entity: SpawnPointGhostDemiplaneSkeleton
count: 1
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: EnemyDyno
name: cp14-modifier-dyno
difficulty: 0.3
requiredTags:
- CP14DemiplaneOpenSky
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
entity: CP14SpawnMobDinoYumkaraptor
count: 6
minGroupSize: 1
maxGroupSize: 1
- type: cp14DemiplaneModifier
id: SmallHydra
name: cp14-modifier-dyno
difficulty: 0.3
requiredTags:
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
entity: CP14MobDinoSmallHydra
count: 4
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: MonsterMosquito
name: cp14-modifier-dyno
difficulty: 0.15
requiredTags:
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
entity: CP14SpawnMobMonsterMosquito
count: 4
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: EnemyMole
name: cp14-modifier-mole
difficulty: 0.4
requiredTags:
- CP14DemiplaneUnderground
- CP14DemiplaneCave
layers:
- !type:OreDunGen
tileMask:
- CP14FloorBase
entity: CP14MobMonsterMole
count: 6
minGroupSize: 1
maxGroupSize: 1
- type: cp14DemiplaneModifier
id: Rabbits
name: cp14-modifier-rabbits
reward: 0.2
generationWeight: 0.4
requiredTags:
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14MobRabbit
count: 3
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: Boar
name: cp14-modifier-boars
reward: 0.2
difficulty: 0.2
generationWeight: 0.4
requiredTags:
- CP14DemiplaneGrass
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14MobBoar
count: 3
minGroupSize: 2
maxGroupSize: 3
- type: cp14DemiplaneModifier
id: Chasm
name: cp14-modifier-chasm
difficulty: 0.2
generationWeight: 0.6
layers:
- !type:OreDunGen
entity: CP14Chasm
tileMask:
- CP14FloorBase
count: 5
minGroupSize: 2
maxGroupSize: 5
- type: cp14DemiplaneModifier
id: RoyalPumpkin
reward: 0.2
generationWeight: 0.1
requiredTags:
- CP14DemiplaneGrass
- CP14DemiplaneOpenSky
layers:
- !type:OreDunGen
tileMask:
- CP14FloorGrass
- CP14FloorGrassLight
- CP14FloorGrassTall
entity: CP14RoyalPumpkin
count: 1
minGroupSize: 1
maxGroupSize: 1

View File

@@ -1,8 +1,16 @@
- type: Tag
id: CP14DemiplaneCave
# Content types
- type: Tag
id: CP14DemiplaneGrass
id: CP14DemiplaneOres
- type: Tag
id: CP14DemiplanePeacefulAnimals
- type: Tag
id: CP14DemiplaneHerbals
# Demiplane features
- type: Tag
id: CP14DemiplaneOpenSky

View File

@@ -26,7 +26,7 @@
targetNode: CP14BaseBarrel
category: construction-category-furniture
icon:
sprite: _CP14/Structures/Furniture/barrel.rsi
sprite: _CP14/Structures/Furniture/Barrels/barrel.rsi
state: barrel
objectType: Structure
placementMode: PlaceFree

View File

@@ -384,4 +384,94 @@
craftTime: 4
stacks:
CP14GoldBar: 2
result: CP14ModularBladeGoldAxe
result: CP14ModularBladeGoldAxe
## mithril
- type: CP14Recipe
id: CP14ModularBladeMithrilDagger
tag: CP14RecipeAnvil
craftTime: 2
stacks:
CP14MithrilBar: 1
result: CP14ModularBladeMithrilDagger
- type: CP14Recipe
id: CP14ModularBladeMithrilMace
tag: CP14RecipeAnvil
craftTime: 2
stacks:
CP14MithrilBar: 1
result: CP14ModularBladeMithrilMace
- type: CP14Recipe
id: CP14ModularBladeMithrilSword
tag: CP14RecipeAnvil
craftTime: 4
stacks:
CP14MithrilBar: 2
result: CP14ModularBladeMithrilSword
- type: CP14Recipe
id: CP14ModularBladeMithrilSickle
tag: CP14RecipeAnvil
craftTime: 2
stacks:
CP14MithrilBar: 1
result: CP14ModularBladeMithrilSickle
- type: CP14Recipe
id: CP14ModularBladeMithrilShovel
tag: CP14RecipeAnvil
craftTime: 2
stacks:
CP14MithrilBar: 1
result: CP14ModularBladeMithrilShovel
- type: CP14Recipe
id: CP14ModularBladeMithrilPickaxe
tag: CP14RecipeAnvil
craftTime: 2
stacks:
CP14MithrilBar: 1
result: CP14ModularBladeMithrilPickaxe
- type: CP14Recipe
id: CP14ModularGripMithril
tag: CP14RecipeAnvil
craftTime: 2
stacks:
CP14MithrilBar: 1
result: CP14ModularGripMithril
- type: CP14Recipe
id: CP14ModularGripMithrilLong
tag: CP14RecipeAnvil
craftTime: 4
stacks:
CP14MithrilBar: 2
result: CP14ModularGripMithrilLong
- type: CP14Recipe
id: CP14ModularGardeSharpMithril
tag: CP14RecipeAnvil
craftTime: 4
stacks:
CP14MithrilBar: 1
result: CP14ModularGardeSharpMithril
- type: CP14Recipe
id: CP14ModularBladeMithrilRapier
tag: CP14RecipeAnvil
craftTime: 4
stacks:
CP14MithrilBar: 1
result: CP14ModularBladeMithrilRapier
- type: CP14Recipe
id: CP14ModularBladeMithrilAxe
tag: CP14RecipeAnvil
craftTime: 4
stacks:
CP14MithrilBar: 2
result: CP14ModularBladeMithrilAxe

View File

@@ -22,10 +22,18 @@
CP14OreGold: 4
result: CP14GoldBar1
- type: CP14Recipe
id: CP14MithrilBar1
tag: CP14RecipeMeltingFurnace
craftTime: 4
entities:
CP14OreMithril: 4
result: CP14MithrilBar1
- type: CP14Recipe
id: CP14GlassSheet1
tag: CP14RecipeMeltingFurnace
craftTime: 4
entities:
CP14QuartzShard: 1
result: CP14GlassSheet1
result: CP14GlassSheet1

View File

@@ -75,3 +75,19 @@
stacks:
CP14WoodenPlanks: 2
result: CP14ModularGripWoodenLong
- type: CP14Recipe
id: CP14ModularGripLucens
tag: CP14RecipeWorkbench
craftTime: 2
stacks:
CP14LucensWoodenPlanks: 1
result: CP14ModularGripLucens
- type: CP14Recipe
id: CP14ModularGripLucensLong
tag: CP14RecipeWorkbench
craftTime: 2
stacks:
CP14LucensWoodenPlanks: 2
result: CP14ModularGripLucensLong

View File

@@ -54,6 +54,20 @@
icon: { sprite: _CP14/Objects/Materials/gold_bar.rsi, state: bar_2 }
maxCount: 10
- type: stack
id: CP14MithrilBar
name: cp14-stack-mithril-bars
spawn: CP14MithrilBar1
icon: { sprite: _CP14/Objects/Materials/mithril_bar.rsi, state: bar_2 }
maxCount: 10
- type: stack
id: CP14LucensWoodenPlanks
name: cp14-material-lucens-planks
spawn: CP14LucensWoodenPlanks1
icon: { sprite: _CP14/Objects/Materials/lucens_wood.rsi, state: planks_2 }
maxCount: 10
- type: stack
id: CP14GlassSheet
name: cp14-stack-glass-sheet

View File

@@ -64,7 +64,7 @@
- type: tile #Cruci
editorHidden: false
id: CP14FloorRedWoodPlanksCruciform
id: CP14FloorRedWoodPlanksCruciform
name: cp14-tiles-red-woodplanks-cruciform
sprite: /Textures/_CP14/Tiles/WoodPlanks/RedWood/red_woodplanks_cruciform.png
variants: 4
@@ -92,7 +92,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorRedWoodPlanksStairways
@@ -185,7 +185,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorRedWoodPlanksCruciformBroken
@@ -215,7 +215,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorRedWoodPlanksStairwaysBroken
@@ -316,7 +316,7 @@
- type: tile #Cruci
editorHidden: false
id: CP14FloorBirchWoodPlanksCruciform
id: CP14FloorBirchWoodPlanksCruciform
name: cp14-tiles-birch-woodplanks-cruciform
sprite: /Textures/_CP14/Tiles/WoodPlanks/BirchWood/birch_woodplanks_cruciform.png
variants: 4
@@ -344,7 +344,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorBirchWoodPlanksStairways
@@ -437,7 +437,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorBirchWoodPlanksCruciformBroken
@@ -467,7 +467,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorBirchWoodPlanksStairwaysBroken
@@ -568,7 +568,7 @@
- type: tile #Cruci
editorHidden: false
id: CP14FloorOakWoodPlanksCruciform
id: CP14FloorOakWoodPlanksCruciform
name: cp14-tiles-oak-woodplanks-cruciform
sprite: /Textures/_CP14/Tiles/WoodPlanks/OakWood/oak_woodplanks_cruciform.png
variants: 4
@@ -596,7 +596,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorOakWoodPlanksStairways
@@ -689,7 +689,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorOakWoodPlanksCruciformBroken
@@ -719,7 +719,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorOakWoodPlanksStairwaysBroken
@@ -820,7 +820,7 @@
- type: tile #Cruci
editorHidden: false
id: CP14FloorDarkWoodPlanksCruciform
id: CP14FloorDarkWoodPlanksCruciform
name: cp14-tiles-dark-woodplanks-cruciform
sprite: /Textures/_CP14/Tiles/WoodPlanks/DarkWood/dark_woodplanks_cruciform.png
variants: 4
@@ -848,7 +848,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorDarkWoodPlanksStairways
@@ -941,7 +941,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorDarkWoodPlanksCruciformBroken
@@ -971,7 +971,7 @@
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorDarkWoodPlanksStairwaysBroken
@@ -1006,258 +1006,6 @@
#/broken
### /DARK
### ACACIA
- type: tile #Default
editorHidden: false
id: CP14FloorAcaciaWoodPlanks
name: cp14-tiles-acacia-woodplanks
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
itemDrop: CP14WoodenPlanks1
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBurned
- type: tile #Big
editorHidden: false
id: CP14FloorAcaciaWoodPlanksBig
name: cp14-tiles-acacia-woodplanks-big
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks_big.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
itemDrop: CP14WoodenPlanks1
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorAcaciaWoodPlanksCruciform
name: cp14-tiles-acacia-woodplanks-cruciform
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks_cruciform.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
deconstructTools: [ Prying ]
itemDrop: CP14WoodenPlanks1
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorAcaciaWoodPlanksStairways
name: cp14-tiles-acacia-woodplanks-stairways
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks_stairways.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
itemDrop: CP14WoodenPlanks1
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksStairwaysBurned
#broken
- type: tile #Default
editorHidden: false
id: CP14FloorAcaciaWoodPlanksBroken
name: cp14-tiles-acacia-woodplanks-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBurned
- type: tile #Big
editorHidden: false
id: CP14FloorAcaciaWoodPlanksBigBroken
name: cp14-tiles-acacia-woodplanks-big-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks_big_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorAcaciaWoodPlanksCruciformBroken
name: cp14-tiles-acacia-woodplanks-cruciform-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks_cruciform_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorAcaciaWoodPlanksStairwaysBroken
name: cp14-tiles-acacia-woodplanks-stairways-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_woodplanks_stairways_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/AcaciaWood/acacia_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksStairwaysBurned
#/broken
### /ACACIA
### BURNED
- type: tile #Default
editorHidden: false
@@ -1304,7 +1052,7 @@
collection: FootstepWood
heatCapacity: 10000
weather: true
- type: tile #Cruci
editorHidden: false
id: CP14FloorWoodPlanksCruciformBurned
@@ -1327,7 +1075,7 @@
collection: FootstepWood
heatCapacity: 10000
weather: true
- type: tile #Stairways
editorHidden: false
id: CP14FloorWoodPlanksStairwaysBurned
@@ -1352,3 +1100,249 @@
weather: true
### /BURNED
### LUCENS
- type: tile #Default
editorHidden: false
id: CP14FloorLucensWoodPlanks
name: cp14-tiles-lucens-woodplanks
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
deconstructTools: [ Prying ]
itemDrop: CP14LucensWoodenPlanks1
isSubfloor: false
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBurned
- type: tile #Big
editorHidden: false
id: CP14FloorLucensWoodPlanksBig
name: cp14-tiles-lucens-woodplanks-big
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks_big.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
itemDrop: CP14LucensWoodenPlanks1
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorLucensWoodPlanksCruciform
name: cp14-tiles-lucens-woodplanks-cruciform
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks_cruciform.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
itemDrop: CP14LucensWoodenPlanks1
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorLucensWoodPlanksStairways
name: cp14-tiles-lucens-woodplanks-stairways
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks_stairways.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
itemDrop: CP14LucensWoodenPlanks1
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksStairwaysBurned
#broken
- type: tile #Default
editorHidden: false
id: CP14FloorLucensWoodPlanksBroken
name: cp14-tiles-lucens-woodplanks-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBurned
- type: tile #Big
editorHidden: false
id: CP14FloorLucensWoodPlanksBigBroken
name: cp14-tiles-lucens-woodplanks-big-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks_big_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksBigBurned
- type: tile #Cruci
editorHidden: false
id: CP14FloorLucensWoodPlanksCruciformBroken
name: cp14-tiles-lucens-woodplanks-cruciform-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks_cruciform_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksCruciformBurned
- type: tile #Stairways
editorHidden: false
id: CP14FloorLucensWoodPlanksStairwaysBroken
name: cp14-tiles-lucens-woodplanks-stairways-broken
sprite: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_woodplanks_stairways_broken.png
variants: 4
placementVariants:
- 1.0
- 1.0
- 1.0
- 1.0
edgeSpritePriority: 101
edgeSprites:
SouthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SE.png
NorthEast: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NE.png
NorthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_NW.png
SouthWest: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_single_edge_SW.png
South: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_S.png
East: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_E.png
North: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_N.png
West: /Textures/_CP14/Tiles/WoodPlanks/LucensWood/lucens_double_edge_W.png
baseTurf: CP14FloorFoundation
isSubfloor: false
deconstructTools: [ Prying ]
footstepSounds:
collection: FootstepWood
heatCapacity: 10000
weather: true
burnedTile: CP14FloorWoodPlanksStairwaysBurned

View File

@@ -12,7 +12,7 @@ As an adventurer, you can sell resources from the demiplane to artisans and othe
There are "keys" in the game world that allow you to temporarily activate a portal to move into a procedurally generated demiplane with enemies and resources. Within the location there will be generated exits from the demiplane that you will have to find on your own.
<Box>
<GuideEntityEmbed Entity="CP14DemiplanKey"/>
<GuideEntityEmbed Entity="CP14DemiplaneKeyT1"/>
<GuideEntityEmbed Entity="CP14DemiplanRiftCore"/>
</Box>.

View File

@@ -12,7 +12,7 @@
В мире игры существуют «ключи», позволяющие временно активировать портал для перехода в процедурно сгенерированный демиплан с противниками и ресурсами. Внутри локации будут сгенерированы выходы с демиплана которые вам предстоит найти самим.
<Box>
<GuideEntityEmbed Entity="CP14DemiplanKey"/>
<GuideEntityEmbed Entity="CP14DemiplaneKeyT1"/>
<GuideEntityEmbed Entity="CP14DemiplanRiftCore"/>
</Box>

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 997 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 B

View File

@@ -0,0 +1,29 @@
{
"version": 1,
"size": {
"x": 32,
"y": 32
},
"license": "CLA",
"copyright": "Created by TheShuEd (Github), modified by vladimir.s",
"states": [
{
"name": "log"
},
{
"name": "log_2"
},
{
"name": "log_3"
},
{
"name": "planks"
},
{
"name": "planks_2"
},
{
"name": "planks_3"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

View File

@@ -0,0 +1,20 @@
{
"version": 1,
"size": {
"x": 32,
"y": 32
},
"license": "CLA",
"copyright": "Created by TheShuEd (Github)",
"states": [
{
"name": "bar"
},
{
"name": "bar_2"
},
{
"name": "bar_3"
}
]
}

View File

@@ -0,0 +1,20 @@
{
"version": 1,
"size": {
"x": 32,
"y": 32
},
"license": "CLA",
"copyright": "Created by TheShuEd (Github)",
"states": [
{
"name": "ore1"
},
{
"name": "ore2"
},
{
"name": "ore3"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 744 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

Some files were not shown because too many files have changed in this diff Show More