diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs index 7d1dec3246..295218a546 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs @@ -103,9 +103,9 @@ public sealed partial class MeleeWeaponSystem case WeaponArcAnimation.CPThrust: track = EnsureComp(animationUid); track.User = user; - _animation.Play(animationUid, CPGetThrustAnimation(sprite, -offset, spriteRotation, length), ThrustAnimationKey); + _animation.Play(animationUid, CPGetThrustAnimation(sprite, -offset * 2, spriteRotation, length), ThrustAnimationKey); if (arcComponent.Fadeout) - _animation.Play(animationUid, GetFadeAnimation(sprite, 0f, 0.15f), FadeAnimationKey); + _animation.Play(animationUid, GetFadeAnimation(sprite, length * 0.5f, length + 0.15f), FadeAnimationKey); break; //CrystallEdge MeleeUpgrade end } @@ -260,8 +260,9 @@ public sealed partial class MeleeWeaponSystem var startRotation = sprite.Rotation + (arc * 0.5f); var endRotation = sprite.Rotation - (arc * 0.5f); - var startRotationOffset = startRotation.RotateVec(new Vector2(0f, offset)); - var endRotationOffset = endRotation.RotateVec(new Vector2(0f, offset)); + var startRotationOffset = startRotation.RotateVec(new Vector2(0f, -offset * 0.9f)); + var minRotationOffset = sprite.Rotation.RotateVec(new Vector2(0f, -offset * 1.1f)); + var endRotationOffset = endRotation.RotateVec(new Vector2(0f, -offset * 0.9f)); startRotation += spriteRotation; endRotation += spriteRotation; @@ -279,6 +280,7 @@ public sealed partial class MeleeWeaponSystem KeyFrames = { new AnimationTrackProperty.KeyFrame(Angle.Lerp(startRotation,endRotation,0.0f), length * 0.0f), + new AnimationTrackProperty.KeyFrame(Angle.Lerp(startRotation,endRotation,0.5f), length * 0.3f), new AnimationTrackProperty.KeyFrame(Angle.Lerp(startRotation,endRotation,1.0f), length * 0.6f), new AnimationTrackProperty.KeyFrame(Angle.Lerp(startRotation,endRotation,0.8f), length * 1.0f), } @@ -290,6 +292,7 @@ public sealed partial class MeleeWeaponSystem KeyFrames = { new AnimationTrackProperty.KeyFrame(Vector2.Lerp(startRotationOffset,endRotationOffset,0.0f), length * 0.0f), + new AnimationTrackProperty.KeyFrame(minRotationOffset, length * 0.3f), new AnimationTrackProperty.KeyFrame(Vector2.Lerp(startRotationOffset,endRotationOffset,1.0f), length * 0.6f), new AnimationTrackProperty.KeyFrame(Vector2.Lerp(startRotationOffset,endRotationOffset,0.8f), length * 1.0f), } @@ -298,10 +301,10 @@ public sealed partial class MeleeWeaponSystem }; } - private Animation CPGetThrustAnimation(SpriteComponent sprite, float distance, Angle spriteRotation, float length) + private Animation CPGetThrustAnimation(SpriteComponent sprite, float offset, Angle spriteRotation, float length) { - var startOffset = sprite.Rotation.RotateVec(new Vector2(0f, -distance / 5f)); - var endOffset = sprite.Rotation.RotateVec(new Vector2(0f, -distance)); + var startOffset = sprite.Rotation.RotateVec(new Vector2(0f, 0f)); + var endOffset = sprite.Rotation.RotateVec(new Vector2(0f, offset / 2)); sprite.Rotation += spriteRotation; diff --git a/Content.Client/_CP14/IdentityRecognition/CP14IdentityRecognitionBoundUserInterface.cs b/Content.Client/_CP14/IdentityRecognition/CP14IdentityRecognitionBoundUserInterface.cs index d934880f13..a89b80dd25 100644 --- a/Content.Client/_CP14/IdentityRecognition/CP14IdentityRecognitionBoundUserInterface.cs +++ b/Content.Client/_CP14/IdentityRecognition/CP14IdentityRecognitionBoundUserInterface.cs @@ -87,10 +87,6 @@ public sealed class CP14IdentityRecognitionBoundUserInterface : BoundUserInterfa { case CP14RememberNameUiState rememberNameUiState: _rememberedTarget = rememberNameUiState.Target; - - var currentName = CurrentName(); - if (currentName is not null) - _window.SetCurrentLabel(currentName); break; } } diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index e08773d665..30641a7222 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -42,8 +42,10 @@ namespace Content.IntegrationTests.Tests .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. .Where(p => !p.Components.ContainsKey("RoomFill")) // This comp can delete all entities, and spawn others - .Where(p => !p.Components.ContainsKey("CP14BiomeSpawner")) // CP14 this component delete all entities on this tile - .Where(p => !p.Components.ContainsKey("CP14AreaEntityEffect")) // CP14 lightning detonates entities + //CP14 + .Where(p => !p.Components.ContainsKey("CP14BiomeSpawner")) // this component delete all entities on this tile + .Where(p => !p.Components.ContainsKey("CP14AreaEntityEffect")) // lightning detonates entities + //CP14 end .Select(p => p.ID) .ToList(); @@ -58,7 +60,7 @@ namespace Content.IntegrationTests.Tests } }); - await server.WaitRunTicks(15); // 15 seconds, enough to trigger most update loops //CP14 returned back to 15 ticks (operation was cancelled github issue) + await server.WaitRunTicks(15); await server.WaitPost(() => { @@ -107,8 +109,10 @@ namespace Content.IntegrationTests.Tests .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. .Where(p => !p.Components.ContainsKey("RoomFill")) // This comp can delete all entities, and spawn others + //CP14 .Where(p => !p.Components.ContainsKey("CP14BiomeSpawner")) // CP14 this component delete all entities on this tile .Where(p => !p.Components.ContainsKey("CP14AreaEntityEffect")) // CP14 lightning detonates entities + //CP14 end .Select(p => p.ID) .ToList(); foreach (var protoId in protoIds) @@ -116,7 +120,7 @@ namespace Content.IntegrationTests.Tests entityMan.SpawnEntity(protoId, map.GridCoords); } }); - await server.WaitRunTicks(15); // 15 seconds, enough to trigger most update loops //CP14 returned back to 15 ticks (operation was cancelled github issue) + await server.WaitRunTicks(15); await server.WaitPost(() => { static IEnumerable<(EntityUid, TComp)> Query(IEntityManager entityMan) @@ -169,6 +173,9 @@ namespace Content.IntegrationTests.Tests .Where(p => !p.Abstract) .Where(p => !pair.IsTestPrototype(p)) .Where(p => !p.Components.ContainsKey("MapGrid")) // This will smash stuff otherwise. + //CP14 + .Where(p => !p.Components.ContainsKey("CP14VampireClanHeart")) //Spawn announcement sound entities on init + //CP14 end .Select(p => p.ID) .ToList(); @@ -248,6 +255,9 @@ namespace Content.IntegrationTests.Tests // makes an announcement on mapInit. "AnnounceOnSpawn", + //CP14 + "CP14VampireClanHeart", //Also announce on spawn + //CP14 end }; Assert.That(server.CfgMan.GetCVar(CVars.NetPVS), Is.False); @@ -383,8 +393,6 @@ namespace Content.IntegrationTests.Tests "DebugExceptionStartup", "GridFill", "RoomFill", - "CP14BiomeSpawner", // CP14 this component delete all entities on this tile - "CP14AreaEntityEffect", // CP14 lightning detonates entities "Map", // We aren't testing a map entity in this test "MapGrid", "Broadphase", diff --git a/Content.Server/_CP14/Eye/CP14ToggleableEyeOffsetSystem.cs b/Content.Server/_CP14/Eye/CP14ToggleableEyeOffsetSystem.cs new file mode 100644 index 0000000000..cb9513b946 --- /dev/null +++ b/Content.Server/_CP14/Eye/CP14ToggleableEyeOffsetSystem.cs @@ -0,0 +1,20 @@ +using Content.Server.Movement.Components; +using Content.Shared._CP14.Eye; + +namespace Content.Server._CP14.Eye; + +public sealed class CP14ToggleableEyeOffsetSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnToggleEyeOffset); + } + + private void OnToggleEyeOffset(Entity ent, ref CP14EyeOffsetToggleActionEvent args) + { + if (!HasComp(ent)) + AddComp(ent); + else + RemComp(ent); + } +} diff --git a/Content.Server/_CP14/GameTicking/Rules/CP14VampireRuleSystem.cs b/Content.Server/_CP14/GameTicking/Rules/CP14VampireRuleSystem.cs index bff43c399f..26747c13d3 100644 --- a/Content.Server/_CP14/GameTicking/Rules/CP14VampireRuleSystem.cs +++ b/Content.Server/_CP14/GameTicking/Rules/CP14VampireRuleSystem.cs @@ -29,16 +29,16 @@ public sealed class CP14VampireRuleSystem : GameRuleSystem>(); - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var vampireUid, out var vampire, out var mobState)) + var query = EntityQueryEnumerator(); + while (query.MoveNext(out _, out var heart)) { - if (mobState.CurrentState != MobState.Alive) + if (heart.Faction is null) continue; - if (vampire.Faction is null) + if (heart.Level < _condition.RequiredHeartLevel) continue; - aliveFactions.Add(vampire.Faction.Value); + aliveFactions.Add(heart.Faction.Value); } args.AddLine($"[head=2][color=#ab1b3d]{Loc.GetString("cp14-vampire-clans-battle")}[/color][/head]"); diff --git a/Content.Server/_CP14/MagicEnergy/CP14MagicEnergySystem.Draw.cs b/Content.Server/_CP14/MagicEnergy/CP14MagicEnergySystem.Draw.cs index 61a377e14c..9ac02701b4 100644 --- a/Content.Server/_CP14/MagicEnergy/CP14MagicEnergySystem.Draw.cs +++ b/Content.Server/_CP14/MagicEnergy/CP14MagicEnergySystem.Draw.cs @@ -4,6 +4,7 @@ using Content.Shared._CP14.MagicEnergy.Components; using Content.Shared.Damage; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Robust.Shared.Timing; namespace Content.Server._CP14.MagicEnergy; @@ -60,7 +61,7 @@ public partial class CP14MagicEnergySystem if (TryComp(uid, out var mobState) && !_mobState.IsAlive(uid, mobState)) continue; - draw.NextUpdateTime += TimeSpan.FromSeconds(draw.Delay); + draw.NextUpdateTime = _gameTiming.CurTime + TimeSpan.FromSeconds(draw.Delay); ChangeEnergy((uid, magicContainer), draw.Energy, out _, out _, draw.Safe); } diff --git a/Content.Server/_CP14/Objectives/Systems/CP14VampireObjectiveConditionsSystem.cs b/Content.Server/_CP14/Objectives/Systems/CP14VampireObjectiveConditionsSystem.cs index aa0d160c75..2ada1b1a12 100644 --- a/Content.Server/_CP14/Objectives/Systems/CP14VampireObjectiveConditionsSystem.cs +++ b/Content.Server/_CP14/Objectives/Systems/CP14VampireObjectiveConditionsSystem.cs @@ -22,6 +22,7 @@ public sealed class CP14VampireObjectiveConditionsSystem : EntitySystem [Dependency] private readonly IPrototypeManager _proto = default!; public readonly float RequiredAlivePercentage = 0.5f; + public readonly int RequiredHeartLevel = 3; public override void Initialize() { @@ -84,27 +85,37 @@ public sealed class CP14VampireObjectiveConditionsSystem : EntitySystem ent.Comp.Faction = vampireComp.Faction; - _meta.SetEntityName(ent, Loc.GetString("cp14-objective-vampire-pure-bood-title")); - _meta.SetEntityDescription(ent, Loc.GetString("cp14-objective-vampire-pure-bood-desc")); + _meta.SetEntityName(ent, Loc.GetString("cp14-objective-vampire-pure-blood-title")); + _meta.SetEntityDescription(ent, Loc.GetString("cp14-objective-vampire-pure-blood-desc")); _objectives.SetIcon(ent, ent.Comp.Icon); } private void OnBloodPurityGetProgress(Entity ent, ref ObjectiveGetProgressEvent args) { - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var vampire, out var mobState)) + var ourHeartReady = false; + var othersHeartsExist = false; + while (query.MoveNext(out var uid, out var vampire)) { - if (vampire.Faction != ent.Comp.Faction) - { - if (mobState.CurrentState == MobState.Dead) - continue; + if (vampire.Faction == ent.Comp.Faction && vampire.Level >= RequiredHeartLevel) + ourHeartReady = true; - args.Progress = 0f; - return; + if (vampire.Faction != ent.Comp.Faction && vampire.Level >= RequiredHeartLevel) + { + othersHeartsExist = true; + break; } } - args.Progress = 1f; + var progress = 0f; + + if (ourHeartReady) + progress += 0.5f; + + if (!othersHeartsExist) + progress += 0.5f; + + args.Progress = progress; } } diff --git a/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.CBT.cs b/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.CBT.cs index 3de9ed6a2a..0f36747f2f 100644 --- a/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.CBT.cs +++ b/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.CBT.cs @@ -125,6 +125,13 @@ public sealed partial class CP14RoundEndSystem sender: "Server" ); }), + (22, 0, () => + { + if (!ruDays) + return; + + _consoleHost.ExecuteCommand("endround"); + }), (22, 2, () => { if (!ruDays) @@ -143,6 +150,13 @@ public sealed partial class CP14RoundEndSystem sender: "Server" ); }), + (23, 58, () => + { + if (ruDays) + return; + + _consoleHost.ExecuteCommand("endround"); + }), (23, 59, () => { if (ruDays) diff --git a/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.cs b/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.cs index 51f75becaf..bd8beb234b 100644 --- a/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.cs +++ b/Content.Server/_CP14/RoundEnd/CP14RoundEndSystem.cs @@ -49,6 +49,7 @@ public sealed partial class CP14RoundEndSystem : EntitySystem _chatSystem.DispatchGlobalAnnouncement(Loc.GetString("cp14-round-end"), announcementSound: new SoundPathSpecifier("/Audio/_CP14/Announce/event_boom.ogg")); _roundEnd.EndRound(); + _roundEndMoment = TimeSpan.Zero; } private void OnFinisherMagicEnergyLevelChange(Entity ent, diff --git a/Content.Server/_CP14/Vampire/CP14VampireSystem.Announce.cs b/Content.Server/_CP14/Vampire/CP14VampireSystem.Announce.cs index f1194cd5ba..a938e61254 100644 --- a/Content.Server/_CP14/Vampire/CP14VampireSystem.Announce.cs +++ b/Content.Server/_CP14/Vampire/CP14VampireSystem.Announce.cs @@ -1,11 +1,8 @@ -using System.Text; +using Content.Server.Administration.Managers; using Content.Server.Chat.Systems; using Content.Shared._CP14.Vampire; using Content.Shared._CP14.Vampire.Components; using Content.Shared.Damage; -using Content.Shared.Destructible; -using Content.Shared.Examine; -using Content.Shared.Ghost; using Robust.Shared.Audio; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -16,13 +13,26 @@ public sealed partial class CP14VampireSystem { [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly IAdminManager _admin = default!; private void InitializeAnnounces() { + SubscribeLocalEvent(OnHeartCreate); SubscribeLocalEvent(OnHeartDamaged); SubscribeLocalEvent(OnHeartDestructed); } + private void OnHeartCreate(Entity ent, ref MapInitEvent args) + { + if (ent.Comp.Faction is null) + return; + + if (!Proto.TryIndex(ent.Comp.Faction, out var indexedFaction)) + return; + + AnnounceToFaction(ent.Comp.Faction.Value, Loc.GetString("cp14-vampire-tree-created", ("name", Loc.GetString(indexedFaction.Name)))); + AnnounceToOpposingFactions(ent.Comp.Faction.Value, Loc.GetString("cp14-vampire-tree-created", ("name", Loc.GetString(indexedFaction.Name)))); + } private void OnHeartDamaged(Entity ent, ref DamageChangedEvent args) { @@ -84,6 +94,8 @@ public sealed partial class CP14VampireSystem filter.AddPlayer(actor.PlayerSession); } + filter.AddPlayers(_admin.ActiveAdmins); + if (filter.Count == 0) return; diff --git a/Content.Server/_CP14/Vampire/CP14VampireSystem.cs b/Content.Server/_CP14/Vampire/CP14VampireSystem.cs index ccc6c7a7db..89536b4366 100644 --- a/Content.Server/_CP14/Vampire/CP14VampireSystem.cs +++ b/Content.Server/_CP14/Vampire/CP14VampireSystem.cs @@ -170,7 +170,7 @@ public sealed partial class CP14VampireSystem : CP14SharedVampireSystem heart.NextRegenTime = _timing.CurTime + heart.RegenFrequency; - AddEssence((uid, heart), heart.EssenceRegenPerLevel * heart.Level); + AddEssence((uid, heart), heart.EssenceRegen); } } } diff --git a/Content.Shared/Weapons/Melee/Events/MeleeHitEvent.cs b/Content.Shared/Weapons/Melee/Events/MeleeHitEvent.cs index 75c85790de..2175766975 100644 --- a/Content.Shared/Weapons/Melee/Events/MeleeHitEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/MeleeHitEvent.cs @@ -66,13 +66,19 @@ public sealed class MeleeHitEvent : HandledEntityEventArgs /// public bool IsHit = true; - public MeleeHitEvent(List hitEntities, EntityUid user, EntityUid weapon, DamageSpecifier baseDamage, Vector2? direction) + /// + /// CP14 Heavy attack flag. + /// + public bool CP14Heavy; + + public MeleeHitEvent(List hitEntities, EntityUid user, EntityUid weapon, DamageSpecifier baseDamage, Vector2? direction, bool heavy = false) { HitEntities = hitEntities; User = user; Weapon = weapon; BaseDamage = baseDamage; Direction = direction; + CP14Heavy = heavy; //CP14 } } diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index bfb80382d4..12c5dc00ec 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -84,7 +84,7 @@ public sealed partial class MeleeWeaponComponent : Component /// Multiplies damage by this amount for single-target attacks. /// [DataField, AutoNetworkedField] - public FixedPoint2 ClickDamageModifier = FixedPoint2.New(1); + public FixedPoint2 ClickDamageModifier = FixedPoint2.New(1.3); //CP14 default bonus damage // TODO: Temporarily 1.5 until interactionoutline is adjusted to use melee, then probably drop to 1.2 /// @@ -131,7 +131,7 @@ public sealed partial class MeleeWeaponComponent : Component /// CrystallEdge Melee upgrade. how far away from the player the animation should be played. /// [DataField] - public float CPAnimationOffset = -1f; + public float CPAnimationOffset = 1f; // Sounds diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 8cebb0b7ae..ea41a4f45c 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -498,7 +498,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (light) using {ToPrettyString(meleeUid):tool} and missed"); } - var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, null); + var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, null, heavy: false); RaiseLocalEvent(meleeUid, missEvent); _meleeSound.PlaySwingSound(user, meleeUid, component); return; @@ -507,7 +507,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem // Sawmill.Debug($"Melee damage is {damage.Total} out of {component.Damage.Total}"); // Raise event before doing damage so we can cancel damage if the event is handled - var hitEvent = new MeleeHitEvent(new List { target.Value }, user, meleeUid, damage, null); + var hitEvent = new MeleeHitEvent(new List { target.Value }, user, meleeUid, damage, null, heavy: false); RaiseLocalEvent(meleeUid, hitEvent); if (hitEvent.Handled) @@ -600,7 +600,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem LogImpact.Low, $"{ToPrettyString(user):actor} melee attacked (heavy) using {ToPrettyString(meleeUid):tool} and missed"); } - var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, direction); + var missEvent = new MeleeHitEvent(new List(), user, meleeUid, damage, direction, heavy: true); RaiseLocalEvent(meleeUid, missEvent); // immediate audio feedback @@ -649,7 +649,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem // Sawmill.Debug($"Melee damage is {damage.Total} out of {component.Damage.Total}"); // Raise event before doing damage so we can cancel damage if the event is handled - var hitEvent = new MeleeHitEvent(targets, user, meleeUid, damage, direction); + var hitEvent = new MeleeHitEvent(targets, user, meleeUid, damage, direction, heavy: true); RaiseLocalEvent(meleeUid, hitEvent); if (hitEvent.Handled) diff --git a/Content.Shared/_CP14/Eye/CP14ToggleableEyeSystem.cs b/Content.Shared/_CP14/Eye/CP14ToggleableEyeSystem.cs new file mode 100644 index 0000000000..ded62627d5 --- /dev/null +++ b/Content.Shared/_CP14/Eye/CP14ToggleableEyeSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.Actions; + +namespace Content.Shared._CP14.Eye; + +public sealed partial class CP14EyeOffsetToggleActionEvent : InstantActionEvent +{ +} diff --git a/Content.Shared/_CP14/IdentityRecognition/CP14SharedIdentityRecognitionSystem.cs b/Content.Shared/_CP14/IdentityRecognition/CP14SharedIdentityRecognitionSystem.cs index d72788c966..4157d6908e 100644 --- a/Content.Shared/_CP14/IdentityRecognition/CP14SharedIdentityRecognitionSystem.cs +++ b/Content.Shared/_CP14/IdentityRecognition/CP14SharedIdentityRecognitionSystem.cs @@ -1,9 +1,9 @@ using Content.Shared.Examine; using Content.Shared.Ghost; -using Content.Shared.IdentityManagement; using Content.Shared.IdentityManagement.Components; using Content.Shared.Mind; using Content.Shared.Mind.Components; +using Content.Shared.Popups; using Content.Shared.Verbs; using Robust.Shared.Player; using Robust.Shared.Serialization; @@ -15,7 +15,7 @@ public abstract class CP14SharedIdentityRecognitionSystem : EntitySystem { [Dependency] private readonly SharedUserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedMindSystem _mind = default!; - [Dependency] private readonly SharedIdentitySystem _identity = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { @@ -68,11 +68,17 @@ public abstract class CP14SharedIdentityRecognitionSystem : EntitySystem Priority = 2, Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/sentient.svg.192dpi.png")), Text = Loc.GetString("cp14-remember-name-verb"), - Disabled = seeAttemptEv.Cancelled, Act = () => { - _uiSystem.SetUiState(_args.User, CP14RememberNameUiKey.Key, new CP14RememberNameUiState(GetNetEntity(ent))); - _uiSystem.TryToggleUi(_args.User, CP14RememberNameUiKey.Key, actor.PlayerSession); + if (seeAttemptEv.Cancelled) + { + _popup.PopupClient(Loc.GetString("cp14-remember-fail-mask"), _args.Target, _args.User); + } + else + { + _uiSystem.SetUiState(_args.User, CP14RememberNameUiKey.Key, new CP14RememberNameUiState(GetNetEntity(ent))); + _uiSystem.TryToggleUi(_args.User, CP14RememberNameUiKey.Key, actor.PlayerSession); + } }, }; args.Verbs.Add(verb); diff --git a/Content.Shared/_CP14/MagicSpell/Spells/CP14SpellKnockdown.cs b/Content.Shared/_CP14/MagicSpell/Spells/CP14SpellKnockdown.cs new file mode 100644 index 0000000000..15157c3b45 --- /dev/null +++ b/Content.Shared/_CP14/MagicSpell/Spells/CP14SpellKnockdown.cs @@ -0,0 +1,27 @@ +using Content.Shared.Stunnable; + +namespace Content.Shared._CP14.MagicSpell.Spells; + +public sealed partial class CP14SpellKnockdown : CP14SpellEffect +{ + [DataField] + public float ThrowPower = 10f; + + [DataField] + public TimeSpan Time = TimeSpan.FromSeconds(1f); + + [DataField] + public bool DropItems = false; + + public override void Effect(EntityManager entManager, CP14SpellEffectBaseArgs args) + { + if (args.Target is null || args.User is null) + return; + + var targetEntity = args.Target.Value; + + var stun = entManager.System(); + + stun.TryKnockdown(args.Target.Value, Time, true, true, DropItems); + } +} diff --git a/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellPointerToVampireClan.cs b/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellPointerToVampireClan.cs index ffacc98e93..0f398cfb0d 100644 --- a/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellPointerToVampireClan.cs +++ b/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellPointerToVampireClan.cs @@ -63,5 +63,29 @@ public sealed partial class CP14SpellPointerToVampireClan : CP14SpellEffect transform.SetWorldRotation(pointer, angle + Angle.FromDegrees(90)); } + + var heartsInRange = lookup.GetEntitiesInRange(originEntPosition, SearchRange); + foreach (var heart in heartsInRange) + { + if (!Inversed) + { + if (heart.Comp.Faction != vampireComponent.Faction) + continue; + } + else + { + if (heart.Comp.Faction == vampireComponent.Faction) + continue; + } + + var targetPosition = transform.GetWorldPosition(heart); + + //Calculate the rotation + Angle angle = new(targetPosition - originPosition); + + var pointer = entManager.Spawn(PointerEntity, new MapCoordinates(originPosition, transform.GetMapId(originEntPosition))); + + transform.SetWorldRotation(pointer, angle + Angle.FromDegrees(90)); + } } } diff --git a/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellTeleportToVampireSingleton.cs b/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellTeleportToVampireSingleton.cs index 1264e452be..f882c895d3 100644 --- a/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellTeleportToVampireSingleton.cs +++ b/Content.Shared/_CP14/MagicSpell/Spells/Vampire/CP14SpellTeleportToVampireSingleton.cs @@ -44,8 +44,7 @@ public sealed partial class CP14SpellTeleportToVampireSingleton : CP14SpellEffec if (singleton.Key != indexedVampireFaction.SingletonTeleportKey) continue; - var randomOffset = new Vector2(random.Next(-1, 1), random.Next(-1, 1)); - var second = entManager.SpawnAtPosition(PortalProto, xform.Coordinates.Offset(randomOffset)); + var second = entManager.SpawnAtPosition(PortalProto, xform.Coordinates); linkSys.TryLink(first, second, true); return; diff --git a/Content.Shared/_CP14/MeleeWeapon/Components/CP14BonusDistanceMeleeDamageComponent.cs b/Content.Shared/_CP14/MeleeWeapon/Components/CP14BonusDistanceMeleeDamageComponent.cs new file mode 100644 index 0000000000..2f7881e09d --- /dev/null +++ b/Content.Shared/_CP14/MeleeWeapon/Components/CP14BonusDistanceMeleeDamageComponent.cs @@ -0,0 +1,28 @@ +using Content.Shared.Damage; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared._CP14.MeleeWeapon.Components; + +/// +/// Adds bonus damage to weapons if targets are at a certain distance from the attacker. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class CP14BonusDistanceMeleeDamageComponent : Component +{ + [DataField] + public DamageSpecifier BonusDamage = new(); + + [DataField] + public float MinDistance = 1f; + + [DataField] + public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/_CP14/Effects/critical.ogg") + { + Params = AudioParams.Default.WithVariation(0.125f), + }; + + [DataField] + public EntProtoId VFX = "CP14MeleeCritEffect"; +} diff --git a/Content.Shared/_CP14/MeleeWeapon/Components/CP14ComboBonusMeleeDamageComponent.cs b/Content.Shared/_CP14/MeleeWeapon/Components/CP14ComboBonusMeleeDamageComponent.cs new file mode 100644 index 0000000000..6f5771b8b6 --- /dev/null +++ b/Content.Shared/_CP14/MeleeWeapon/Components/CP14ComboBonusMeleeDamageComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Damage; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared._CP14.MeleeWeapon.Components; + +/// +/// After several wide attacks, a light attack deals additional damage. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class CP14ComboBonusMeleeDamageComponent : Component +{ + [DataField] + public DamageSpecifier BonusDamage = new(); + + [DataField] + public int HeavyAttackNeed = 2; + + [DataField, AutoNetworkedField] + public int CurrentHeavyAttacks = 0; + + [DataField, AutoNetworkedField] + public HashSet HitEntities = new(); + + [DataField] + public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/_CP14/Effects/critical_sword.ogg") + { + Params = AudioParams.Default.WithVariation(0.125f), + }; + + [DataField] + public EntProtoId VFX = "CP14MeleeCritEffect"; +} diff --git a/Content.Shared/_CP14/MeleeWeapon/Components/CP14LightMeleeKnockdownComponent.cs b/Content.Shared/_CP14/MeleeWeapon/Components/CP14LightMeleeKnockdownComponent.cs new file mode 100644 index 0000000000..64781aeec3 --- /dev/null +++ b/Content.Shared/_CP14/MeleeWeapon/Components/CP14LightMeleeKnockdownComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared._CP14.MeleeWeapon.Components; + +/// +/// After several wide attacks, a light attack deals additional damage. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class CP14LightMeleeKnockdownComponent : Component +{ + [DataField] + public float ThrowDistance = 0.5f; + + [DataField] + public TimeSpan KnockdownTime = TimeSpan.FromSeconds(0.25f); +} diff --git a/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeParriableComponent.cs b/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeParriableComponent.cs new file mode 100644 index 0000000000..5273bdd902 --- /dev/null +++ b/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeParriableComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.Audio; + +namespace Content.Shared._CP14.MeleeWeapon.Components; + +/// +/// allows this item to be knocked out of your hands by a successful parry +/// +[RegisterComponent] +public sealed partial class CP14MeleeParriableComponent : Component +{ + [DataField] + public TimeSpan LastMeleeHit = TimeSpan.Zero; + + [DataField] + public SoundSpecifier ParrySound = new SoundPathSpecifier("/Audio/_CP14/Effects/parry1.ogg", AudioParams.Default.WithVariation(0.2f)); +} diff --git a/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeParryComponent.cs b/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeParryComponent.cs new file mode 100644 index 0000000000..f041c7b245 --- /dev/null +++ b/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeParryComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared._CP14.MeleeWeapon.Components; + +/// +/// attacks with this item may knock CP14ParriableComponent items out of your hand on a hit +/// +[RegisterComponent] +public sealed partial class CP14MeleeParryComponent : Component +{ + [DataField] + public TimeSpan ParryWindow = TimeSpan.FromSeconds(1f); + + [DataField] + public float ParryPower = 1f; +} diff --git a/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeWeaponStaminaCostComponent.cs b/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeWeaponStaminaCostComponent.cs new file mode 100644 index 0000000000..c4eff377e8 --- /dev/null +++ b/Content.Shared/_CP14/MeleeWeapon/Components/CP14MeleeWeaponStaminaCostComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared._CP14.MeleeWeapon.Components; + +/// +/// Using this weapon damages the wearer's stamina. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class CP14MeleeWeaponStaminaCostComponent : Component +{ + [DataField] + public float Stamina = 10f; +} diff --git a/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14MeleeSelfDamageSystem.cs b/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14MeleeSelfDamageSystem.cs deleted file mode 100644 index 468d8e20a3..0000000000 --- a/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14MeleeSelfDamageSystem.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Content.Shared._CP14.MeleeWeapon.Components; -using Content.Shared.Damage; -using Content.Shared.Weapons.Melee.Events; - -namespace Content.Shared._CP14.MeleeWeapon.EntitySystems; - -public sealed class CP14MeleeSelfDamageSystem : EntitySystem -{ - [Dependency] private readonly DamageableSystem _damageable = default!; - - public override void Initialize() - { - SubscribeLocalEvent(OnMeleeHit); - } - - private void OnMeleeHit(Entity ent, ref MeleeHitEvent args) - { - if (!args.IsHit) - return; - if (args.HitEntities.Count == 0) - return; - _damageable.TryChangeDamage(ent, ent.Comp.DamageToSelf); - } -} diff --git a/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14MeleeWeaponSystem.cs b/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14MeleeWeaponSystem.cs new file mode 100644 index 0000000000..026c8d322e --- /dev/null +++ b/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14MeleeWeaponSystem.cs @@ -0,0 +1,210 @@ +using System.Numerics; +using Content.Shared._CP14.MeleeWeapon.Components; +using Content.Shared.Damage; +using Content.Shared.Damage.Systems; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Popups; +using Content.Shared.Stunnable; +using Content.Shared.Throwing; +using Content.Shared.Weapons.Melee.Events; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Shared._CP14.MeleeWeapon.EntitySystems; + +public sealed class CP14MeleeWeaponSystem : EntitySystem +{ + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly ThrowingSystem _throw = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedStaminaSystem _stamina = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnMeleeHit); + SubscribeLocalEvent(OnDistanceBonusDamage); + SubscribeLocalEvent(OnComboBonusDamage); + SubscribeLocalEvent(OnKnockdownAttack); + SubscribeLocalEvent(OnMeleeParryHit); + SubscribeLocalEvent(OnMeleeParriableHitAttmpt); + SubscribeLocalEvent(OnMeleeStaminaCost); + } + + private void OnMeleeStaminaCost(Entity ent, ref MeleeHitEvent args) + { + _stamina.TakeStaminaDamage(args.User, ent.Comp.Stamina); + } + + private void OnMeleeParryHit(Entity ent, ref MeleeHitEvent args) + { + if (args.HitEntities.Count != 1) + return; + + var target = args.HitEntities[0]; + + var activeTargetHand = _hands.GetActiveHand(target); + + var heldItem = _hands.GetHeldItem(target, activeTargetHand); + if (heldItem is null) + return; + + if (!TryComp(heldItem, out var meleeParriable)) + return; + + if (_timing.CurTime > meleeParriable.LastMeleeHit + ent.Comp.ParryWindow) + return; + + _hands.TryDrop(target, heldItem.Value); + _throw.TryThrow(heldItem.Value, _random.NextAngle().ToWorldVec(), ent.Comp.ParryPower, target); + _popup.PopupPredicted( Loc.GetString("cp14-successful-parry"), args.User, args.User); + _audio.PlayPredicted(meleeParriable.ParrySound, heldItem.Value, args.User); + } + + private void OnMeleeParriableHitAttmpt(Entity ent, ref AttemptMeleeEvent args) + { + ent.Comp.LastMeleeHit = _timing.CurTime; + } + + private void OnKnockdownAttack(Entity ent, ref MeleeHitEvent args) + { + if (args.CP14Heavy) + return; + + foreach (var hit in args.HitEntities) + { + _stun.TryKnockdown(hit, ent.Comp.KnockdownTime, true, drop: false); + + // Vector from splitter to item + var direction = Transform(hit).Coordinates.Position - Transform(args.User).Coordinates.Position; + if (direction != Vector2.Zero) + { + var dir = direction.Normalized() * ent.Comp.ThrowDistance; + _throw.TryThrow(hit, dir, 3); + } + } + } + + private void OnComboBonusDamage(Entity ent, ref MeleeHitEvent args) + { + // Resets combo state + void Reset() + { + ent.Comp.HitEntities.Clear(); + ent.Comp.CurrentHeavyAttacks = 0; + Dirty(ent); + } + + // No hits this swing → reset + if (args.HitEntities.Count == 0) + { + Reset(); + return; + } + + var comp = ent.Comp; + + // Not enough heavy attacks accumulated yet + if (comp.CurrentHeavyAttacks < comp.HeavyAttackNeed) + { + // Light attack before threshold → reset combo + if (!args.CP14Heavy) + { + Reset(); + return; + } + + // Heavy attack: track overlapping targets across swings + if (comp.HitEntities.Count == 0) + { + // First heavy: initialize the set with current hits + comp.HitEntities.UnionWith(args.HitEntities); + } + else + { + // Subsequent heavy: keep only targets hit every time + comp.HitEntities.IntersectWith(args.HitEntities); + + // Diverged to different targets → reset + if (comp.HitEntities.Count == 0) + { + Reset(); + return; + } + } + + comp.CurrentHeavyAttacks++; + Dirty(ent); + return; + } + + // Light attack after enough heavies → check if it hits any tracked target + if (comp.HitEntities.Overlaps(args.HitEntities) && !args.CP14Heavy) + { + if (_timing.IsFirstTimePredicted) + { + _audio.PlayPredicted(comp.Sound, ent, args.User); + args.BonusDamage += comp.BonusDamage; + + // Visual feedback on every hit entity this swing + foreach (var hit in args.HitEntities) + { + PredictedSpawnAtPosition(comp.VFX, Transform(hit).Coordinates); + } + } + Reset(); + } + } + + private void OnDistanceBonusDamage(Entity ent, ref MeleeHitEvent args) + { + var critical = true; + + if (args.HitEntities.Count == 0) + return; + + var userPos = _transform.GetWorldPosition(args.User); + //Crit only if all targets are at distance + foreach (var hit in args.HitEntities) + { + var targetPos = _transform.GetWorldPosition(hit); + + var distance = (userPos - targetPos).Length(); + if (distance < ent.Comp.MinDistance) + { + critical = false; + break; + } + } + + if (!critical) + return; + + if (!_timing.IsFirstTimePredicted) + return; + + _audio.PlayPredicted(ent.Comp.Sound, ent, args.User); + args.BonusDamage += ent.Comp.BonusDamage; + + //Visual effect! + foreach (var hit in args.HitEntities) + { + PredictedSpawnAtPosition(ent.Comp.VFX, Transform(hit).Coordinates); + } + } + + private void OnMeleeHit(Entity ent, ref MeleeHitEvent args) + { + if (!args.IsHit) + return; + if (args.HitEntities.Count == 0) + return; + _damageable.TryChangeDamage(ent, ent.Comp.DamageToSelf); + } +} diff --git a/Content.Shared/_CP14/Trading/Systems/CP14SharedTradingPlatformSystem.cs b/Content.Shared/_CP14/Trading/Systems/CP14SharedTradingPlatformSystem.cs index fce4231bfc..0ca015b968 100644 --- a/Content.Shared/_CP14/Trading/Systems/CP14SharedTradingPlatformSystem.cs +++ b/Content.Shared/_CP14/Trading/Systems/CP14SharedTradingPlatformSystem.cs @@ -54,7 +54,7 @@ public abstract partial class CP14SharedTradingPlatformSystem : EntitySystem var repComp = EnsureComp(args.User); repComp.Reputation.TryAdd(ent.Comp.Faction, 0); _audio.PlayLocal(new SoundCollectionSpecifier("CP14CoinImpact"), args.User, args.User); - _popup.PopupPredicted(Loc.GetString("cp14-trading-contract-use", ("name", Loc.GetString(indexedFaction.Name))), args.User, args.User); + _popup.PopupClient(Loc.GetString("cp14-trading-contract-use", ("name", Loc.GetString(indexedFaction.Name))), args.User, args.User); if (_net.IsServer) QueueDel(ent); diff --git a/Content.Shared/_CP14/Vampire/Components/CP14VampireClanHeartComponent.cs b/Content.Shared/_CP14/Vampire/Components/CP14VampireClanHeartComponent.cs index d5838daf6d..469dbbc693 100644 --- a/Content.Shared/_CP14/Vampire/Components/CP14VampireClanHeartComponent.cs +++ b/Content.Shared/_CP14/Vampire/Components/CP14VampireClanHeartComponent.cs @@ -32,7 +32,7 @@ public sealed partial class CP14VampireClanHeartComponent : Component public FixedPoint2 Level4 = 21f; [DataField] - public FixedPoint2 EssenceRegenPerLevel = 0.1f; + public FixedPoint2 EssenceRegen = 0.2f; [DataField] public TimeSpan RegenFrequency = TimeSpan.FromMinutes(1); diff --git a/Resources/Audio/_CP14/Effects/attributions.yml b/Resources/Audio/_CP14/Effects/attributions.yml index 22dd5ef25e..8c9d42dfed 100644 --- a/Resources/Audio/_CP14/Effects/attributions.yml +++ b/Resources/Audio/_CP14/Effects/attributions.yml @@ -132,3 +132,13 @@ license: "CC0-1.0" copyright: 'Created by qubodup on Freesound.org' source: "https://freesound.org/people/qubodup/sounds/814055/" + +- files: ["critical.ogg"] + license: "CC-BY-3.0" + copyright: 'Created by CpawsMusic on Freesound.org' + source: "https://freesound.org/people/CpawsMusic/sounds/437113/" + +- files: ["critical_sword.ogg"] + license: "CC-BY-3.0" + copyright: 'Created by Merrick079 on Freesound.org' + source: "https://freesound.org/people/Merrick079/sounds/568170/" diff --git a/Resources/Audio/_CP14/Effects/critical.ogg b/Resources/Audio/_CP14/Effects/critical.ogg new file mode 100644 index 0000000000..f3864d09f3 Binary files /dev/null and b/Resources/Audio/_CP14/Effects/critical.ogg differ diff --git a/Resources/Audio/_CP14/Effects/critical_sword.ogg b/Resources/Audio/_CP14/Effects/critical_sword.ogg new file mode 100644 index 0000000000..c85b4f1502 Binary files /dev/null and b/Resources/Audio/_CP14/Effects/critical_sword.ogg differ diff --git a/Resources/Changelog/CP14_Changelog.yml b/Resources/Changelog/CP14_Changelog.yml index 7383e3d7ac..98b325d3aa 100644 --- a/Resources/Changelog/CP14_Changelog.yml +++ b/Resources/Changelog/CP14_Changelog.yml @@ -1904,3 +1904,109 @@ id: 8239 time: '2025-09-02T08:52:37.0000000+00:00' url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1662 +- author: TheShuEd + changes: + - message: Blacksmith removed (temporarily) + type: Remove + - message: All equipment modularity has been removed. Including weapons, tools, + armor, and arrows. + type: Remove + - message: All weapon martial skills have been removed (temporarily) + type: Remove + - message: The entire arsenal of weapons has been reintroduced into the game. Each + weapon type now has its own characteristics and gameplay. + type: Add + - message: Added 3 types of shields. A buckler that can be used to parry, a regular + shield, and a large tower shield that can be used to stun. + type: Add + - message: Pinok no longer picks up objects from people's hands. + type: Tweak + - message: All weapons, shields, and arrows can now be purchased in the store. + type: Add + id: 8240 + time: '2025-09-05T21:59:59.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1711 +- author: Viator-MV + changes: + - message: Added red and blue magical robes an hats! + type: Add + id: 8241 + time: '2025-09-05T22:05:11.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1725 +- author: TheShuEd + changes: + - message: Reverted adding red and blue magical robes an hats + type: Remove + id: 8242 + time: '2025-09-06T11:17:42.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1737 +- author: TheShuEd + changes: + - message: Innkeepers now have starting seeds, hoes, and hatchets, while alchemists + have roundstart sickles. + type: Add + - message: If you try to remember the name of a person wearing a mask, a warning + will appear stating that you cannot remember the name of a person who is hiding + their face. + type: Fix + - message: Admins can now also see vampire notifications about clan heart progression. + type: Add + - message: Lurkers can no longer pull items and mobs. + type: Remove + - message: The teleport spell to the vampire glyph no longer has a random 1-tile + shift, which caused people to get stuck in walls. + type: Fix + - message: The spell to search for enemy vampire clans is now T2 instead of T3, + and also now points to enemy hearts. + type: Tweak + - message: 'Changed the main goal of the vampire clan: Now the clan must upgrade + its heart to level 3 and prevent other clans from doing so.' + type: Tweak + - message: The suffocation healing spell now heals suffocation much more effectively. + type: Fix + id: 8243 + time: '2025-09-07T11:22:30.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1741 +- author: TheShuEd + changes: + - message: Guildmaster returns (Comoss only) + type: Add + - message: 'New job added: Guild Worker (Comoss only)' + type: Add + - message: New building for the Adventurers' Guild, with quest boards (Comoss only) + type: Add + - message: Guildmasters and guild workers receive salaries, just like guards. + type: Tweak + id: 8244 + time: '2025-09-07T16:15:29.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1745 +- author: KittyCat432 + changes: + - message: Changed lurker now has a very slight health regen. + type: Tweak + - message: Changed mosquitos description now tell how to kill them + type: Tweak + - message: Changed dash consumes 20 stamina instead of 40. + type: Tweak + - message: Changed spear now swings at 0.5 speed instead of 1 + type: Tweak + - message: Fixed merchants start off with the weapon contract. + type: Fix + id: 8245 + time: '2025-09-07T22:37:54.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1749 +- author: omsoyk + changes: + - message: Resprite satchels + type: Tweak + id: 8246 + time: '2025-09-07T22:38:18.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1748 +- author: KittyCat432 + changes: + - message: Changed alchemy target solutions guidebook entry has been reworked into + categories. + type: Tweak + id: 8247 + time: '2025-09-07T23:45:11.0000000+00:00' + url: https://github.com/crystallpunk-14/crystall-punk-14/pull/1717 diff --git a/Resources/ConfigPresets/_CP14/Dev.toml b/Resources/ConfigPresets/_CP14/Dev.toml index 0d4e462793..d4b4edcd2f 100644 --- a/Resources/ConfigPresets/_CP14/Dev.toml +++ b/Resources/ConfigPresets/_CP14/Dev.toml @@ -75,3 +75,6 @@ mob_pushing = true discord_auth_enabled = true closet_beta_test = true sponsor_enabled = true + +[viewport] +maximum_width = 29 \ No newline at end of file diff --git a/Resources/Locale/en-US/_CP14/identity/identity_recognition.ftl b/Resources/Locale/en-US/_CP14/identity/identity_recognition.ftl index 6aea55ce4b..8cbce75a16 100644 --- a/Resources/Locale/en-US/_CP14/identity/identity_recognition.ftl +++ b/Resources/Locale/en-US/_CP14/identity/identity_recognition.ftl @@ -2,4 +2,5 @@ cp14-remember-name-verb = Remember name cp14-remember-name-name = Name -cp14-remember-name-examine = You remember this character as [color=yellow]{$name}[/color] \ No newline at end of file +cp14-remember-name-examine = You remember this character as [color=yellow]{$name}[/color] +cp14-remember-fail-mask = You cannot remember those who hide their faces. \ No newline at end of file diff --git a/Resources/Locale/en-US/_CP14/job/job.ftl b/Resources/Locale/en-US/_CP14/job/job.ftl index 5154245068..80b2ae946a 100644 --- a/Resources/Locale/en-US/_CP14/job/job.ftl +++ b/Resources/Locale/en-US/_CP14/job/job.ftl @@ -20,7 +20,10 @@ cp14-job-desc-merchant = You have the ability to buy and sell almost anything in # Mercenary cp14-job-name-guildmaster = Guildmaster -cp14-job-desc-guildmaster = Protect the lives of your adventurers, provide them with everything they need, and make sure they do their job. +cp14-job-desc-guildmaster = Establish a connection between the needs of the city and the desires of adventurers to earn money. Organize the delivery of resources and provide adventurers with everything they need for their work. + +cp14-job-name-guildworker = Guild Worker +cp14-job-desc-guildworker = Working under the guidance of the guildmaster, issue and accept quests, organize parties of lone adventurers, and train newbies so they don't die from the first fly. cp14-job-name-adventurer = Adventurer cp14-job-desc-adventurer = A hunter for thrills, riches and fame, constantly risking his life. Fulfill the most dangerous orders, earning a living by mining resources or killing monsters. diff --git a/Resources/Locale/en-US/_CP14/lockKey/locks-types.ftl b/Resources/Locale/en-US/_CP14/lockKey/locks-types.ftl index 490019ce80..be4c5da20e 100644 --- a/Resources/Locale/en-US/_CP14/lockKey/locks-types.ftl +++ b/Resources/Locale/en-US/_CP14/lockKey/locks-types.ftl @@ -41,4 +41,5 @@ cp14-lock-shaper-guard-barracks = barracks cp14-lock-shaper-guard-commander = guard commander house cp14-lock-shape-guildmaster = guildmaster -cp14-lock-shape-demiplane-crystal = demiplane crystal \ No newline at end of file +cp14-lock-shape-demiplane-crystal = demiplane crystal +cp14-lock-shape-adventure-guild = Adventure guild \ No newline at end of file diff --git a/Resources/Locale/en-US/_CP14/objectives/condition/vampire.ftl b/Resources/Locale/en-US/_CP14/objectives/condition/vampire.ftl index 9372cbfdad..53085657f9 100644 --- a/Resources/Locale/en-US/_CP14/objectives/condition/vampire.ftl +++ b/Resources/Locale/en-US/_CP14/objectives/condition/vampire.ftl @@ -1,7 +1,7 @@ cp14-objective-issuer-vampire = [color="#c20034"]Vampire clan[/color] -cp14-objective-vampire-pure-bood-title = Expel foreign vampire clans -cp14-objective-vampire-pure-bood-desc = Intruders from other vampire clans are hiding among the residents. Eliminate them so that the settlement belongs only to you. +cp14-objective-vampire-pure-blood-title = Expel foreign vampire clans +cp14-objective-vampire-pure-blood-desc = Build your clan's heart to at least level 3, and don't let other clans do it. Only your clan's heart should exist! cp14-objective-vampire-defence-settlement-title = Keep your property cp14-objective-vampire-defence-settlement-desc = The inhabitants of this city are your property and your food. Don't let them die. At least {$count}% of the inhabitants must survive. \ No newline at end of file diff --git a/Resources/Locale/en-US/_CP14/trading/factions.ftl b/Resources/Locale/en-US/_CP14/trading/factions.ftl index f2098794a9..2082ec92d6 100644 --- a/Resources/Locale/en-US/_CP14/trading/factions.ftl +++ b/Resources/Locale/en-US/_CP14/trading/factions.ftl @@ -9,4 +9,5 @@ cp14-trade-faction-butchers = Master Butchers Union cp14-trade-faction-dairy = Golden Udder Dairy cp14-trade-faction-tailors = Silk & Needle Tailors Guild cp14-trade-faction-guard = Imperial Guard -cp14-trade-faction-vampire-market = Vampire's lair \ No newline at end of file +cp14-trade-faction-vampire-market = Vampire's lair +cp14-trade-faction-helmir-child = Helmir's childs \ No newline at end of file diff --git a/Resources/Locale/en-US/_CP14/vampire/vampire.ftl b/Resources/Locale/en-US/_CP14/vampire/vampire.ftl index e5be138987..24718ff26f 100644 --- a/Resources/Locale/en-US/_CP14/vampire/vampire.ftl +++ b/Resources/Locale/en-US/_CP14/vampire/vampire.ftl @@ -25,6 +25,7 @@ cp14-vampire-gather-essence-no-left = Здесь больше нет эссен cp14-vampire-sender = Vampire instinct +cp14-vampire-tree-created = The heart of the “{$name}” clan has been created! cp14-vampire-tree-growing = "{$name}" clan heart grows to level {$level}! cp14-vampire-tree-growing-self = Your clan heart grows to level {$level}! cp14-vampire-tree-damaged = Your clan's heart has been attacked! diff --git a/Resources/Locale/ru-RU/_CP14/identity/identity_recognition.ftl b/Resources/Locale/ru-RU/_CP14/identity/identity_recognition.ftl index 05304de6af..72537049bd 100644 --- a/Resources/Locale/ru-RU/_CP14/identity/identity_recognition.ftl +++ b/Resources/Locale/ru-RU/_CP14/identity/identity_recognition.ftl @@ -2,4 +2,5 @@ cp14-remember-name-verb = Запомнить имя cp14-remember-name-name = Имя -cp14-remember-name-examine = Вы помните этого персонажа как [color=yellow]{$name}[/color] \ No newline at end of file +cp14-remember-name-examine = Вы помните этого персонажа как [color=yellow]{$name}[/color] +cp14-remember-fail-mask = Вы не можете запомнить тех, кто скрывает свое лицо. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_CP14/job/job.ftl b/Resources/Locale/ru-RU/_CP14/job/job.ftl index de84be09fc..93f49e419c 100644 --- a/Resources/Locale/ru-RU/_CP14/job/job.ftl +++ b/Resources/Locale/ru-RU/_CP14/job/job.ftl @@ -20,7 +20,10 @@ cp14-job-desc-merchant = В ваших руках возможность пок # Mercenary cp14-job-name-guildmaster = Гильдмастер -cp14-job-desc-guildmaster = Оберегайте жизни ваших авантюристов, обеспечивайте их всем необходимым, и контролируйте чтобы они выполняли свою работу. +cp14-job-desc-guildmaster = Наладьте связь между потребностями города и желаниями авантюристов заработать. Организуйте поставки ресурсов и обеспечьте авантюристов всем необходимым для их работы. + +cp14-job-name-guildworker = Работник гильдии +cp14-job-desc-guildworker = Работая под руководством гильдмастера, выдавайте и принимайте квесты, организуйте партии из авантюристов одиночек, и обучайте новичков, чтобы они не померли от первой мухи. cp14-job-name-adventurer = Авантюрист cp14-job-desc-adventurer = Охотник за острыми эмоциями, богатствами и славой, постоянно рискующий своей жизнью. Выполняйте самые опасные заказы, зарабатывая на жизнь добычей ресурсов или убийством монстров. diff --git a/Resources/Locale/ru-RU/_CP14/lockKey/locks-types.ftl b/Resources/Locale/ru-RU/_CP14/lockKey/locks-types.ftl index 268bd53ce0..6014880195 100644 --- a/Resources/Locale/ru-RU/_CP14/lockKey/locks-types.ftl +++ b/Resources/Locale/ru-RU/_CP14/lockKey/locks-types.ftl @@ -41,4 +41,5 @@ cp14-lock-shaper-guard-barracks = казармы cp14-lock-shaper-guard-commander = дом главы стражи cp14-lock-shape-guildmaster = гильдмастер -cp14-lock-shape-demiplane-crystal = кристалл демиплана \ No newline at end of file +cp14-lock-shape-demiplane-crystal = кристалл демиплана +cp14-lock-shape-adventure-guild = Гильдия авантюристов \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_CP14/objectives/condition/vampire.ftl b/Resources/Locale/ru-RU/_CP14/objectives/condition/vampire.ftl index 5fcb653e09..e70d233934 100644 --- a/Resources/Locale/ru-RU/_CP14/objectives/condition/vampire.ftl +++ b/Resources/Locale/ru-RU/_CP14/objectives/condition/vampire.ftl @@ -1,7 +1,7 @@ cp14-objective-issuer-vampire = [color="#c20034"]Клан вампиров[/color] -cp14-objective-vampire-pure-bood-title = Изгнать чужие вампирские кланы -cp14-objective-vampire-pure-bood-desc = Чужаки из других вампирских кланов скрываются среди жителей. Уничтожьте их, чтобы поселение принадлежало только вам. +cp14-objective-vampire-pure-blood-title = Стать правителем этих земель +cp14-objective-vampire-pure-blood-desc = Постройте сердце своего клана минимум 3 уровня, и не позвольте это сделать другим кланам. Только сердце вашего клана должно существовать! cp14-objective-vampire-defence-settlement-title = Сохранить своё имущество cp14-objective-vampire-defence-settlement-desc = Жители этого города - ваше имущество и ваша еда. Не позвольте им умереть. Как минимум {$count}% жителей должны выжить. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_CP14/trading/factions.ftl b/Resources/Locale/ru-RU/_CP14/trading/factions.ftl index ea25bed796..0e457ffd64 100644 --- a/Resources/Locale/ru-RU/_CP14/trading/factions.ftl +++ b/Resources/Locale/ru-RU/_CP14/trading/factions.ftl @@ -9,4 +9,5 @@ cp14-trade-faction-butchers = Союз мастеровых мясников cp14-trade-faction-dairy = Молочная ферма 'Златовымя' cp14-trade-faction-tailors = Гильдия портных 'Шелк и игла' cp14-trade-faction-guard = Имперская стража -cp14-trade-faction-vampire-market = Вампирское логово \ No newline at end of file +cp14-trade-faction-vampire-market = Вампирское логово +cp14-trade-faction-helmir-child = Хельмировы потомки \ No newline at end of file diff --git a/Resources/Locale/ru-RU/_CP14/vampire/vampire.ftl b/Resources/Locale/ru-RU/_CP14/vampire/vampire.ftl index 87d0b085a8..c9cf3c1dd5 100644 --- a/Resources/Locale/ru-RU/_CP14/vampire/vampire.ftl +++ b/Resources/Locale/ru-RU/_CP14/vampire/vampire.ftl @@ -25,6 +25,7 @@ cp14-vampire-gather-essence-no-left = There is no more essence here! cp14-vampire-sender = Вампирское чутье +cp14-vampire-tree-created = Создано сердце клана "{$name}"! cp14-vampire-tree-growing = Сердце клана "{$name}" вырастает до {$level} уровня! cp14-vampire-tree-growing-self = Ваше сердце клана вырастает до {$level} уровня! cp14-vampire-tree-damaged = Ваше сердце клана атаковано! diff --git a/Resources/Maps/_CP14/comoss.yml b/Resources/Maps/_CP14/comoss.yml index 65a970ffe7..94a339b5c5 100644 --- a/Resources/Maps/_CP14/comoss.yml +++ b/Resources/Maps/_CP14/comoss.yml @@ -4,8 +4,8 @@ meta: engineVersion: 265.0.0 forkId: "" forkVersion: "" - time: 08/11/2025 09:31:36 - entityCount: 4726 + time: 09/07/2025 13:44:51 + entityCount: 5598 maps: - 1 grids: @@ -88,87 +88,87 @@ entities: chunks: 0,0: ind: 0,0 - tiles: IQAAAAACACEAAAAAAQAhAAAAAAEAAgAAAAAEAAIAAAAAAwAGAAAAAAMABgAAAAABAAQAAAAAAQAGAAAAAAMABgAAAAAAAAIAAAAABQAGAAAAAAIABwAAAAAAAAcAAAAAAAAFAAAAAAAABgAAAAACACEAAAAAAAAeAAAAAAIAHgAAAAAEAAIAAAAACgACAAAAAAMABgAAAAABAAUAAAAAAAAFAAAAAAMABQAAAAAAAAYAAAAAAAAeAAAAAAMABgAAAAACAAUAAAAAAQAFAAAAAAAABQAAAAABAAUAAAAAAwAhAAAAAAEAHgAAAAAAAAYAAAAAAgAGAAAAAAMABQAAAAABAAQAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAwAEAAAAAAAAHgAAAAAAAAYAAAAAAAAHAAAAAAMABQAAAAAAAAUAAAAAAQAHAAAAAAIAIQAAAAACAB4AAAAAAQAGAAAAAAAABAAAAAAHAAQAAAAADAAEAAAAAAYABAAAAAAEAAUAAAAAAAAFAAAAAAEABAAAAAAFAB4AAAAAAQAGAAAAAAMABgAAAAAAAAYAAAAAAAAFAAAAAAMABgAAAAACACEAAAAABAAeAAAAAAEABAAAAAAEAAUAAAAAAgAEAAAAAAoABAAAAAACAAQAAAAACQAEAAAAAAMABAAAAAAHAAQAAAAADAAeAAAAAAEABgAAAAAAAAcAAAAAAgAGAAAAAAMABwAAAAACAAUAAAAAAwAhAAAAAAIAHgAAAAADAAQAAAAACQAFAAAAAAIABQAAAAABAAQAAAAADAAEAAAAAAkABAAAAAAMAAUAAAAAAAAGAAAAAAIAHgAAAAAAAAYAAAAAAgAHAAAAAAAABwAAAAACAAUAAAAAAgAFAAAAAAMAIQAAAAAEAB0AAAAABAAGAAAAAAEABgAAAAADAAYAAAAAAgAEAAAAAAEABAAAAAAMAAUAAAAAAwAGAAAAAAMABAAAAAANAB4AAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAgAGAAAAAAAABgAAAAADACEAAAAAAQAeAAAAAAEAHgAAAAABAAIAAAAADgACAAAAAAwAAgAAAAACAAIAAAAABwAdAAAAAAQAHgAAAAABAB4AAAAABAAeAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAQAHgAAAAAEAAIAAAAAAwAhAAAAAAQAIQAAAAAEACEAAAAAAwAhAAAAAAAAIQAAAAAEACEAAAAAAgAhAAAAAAEAIQAAAAAAACEAAAAAAQAhAAAAAAAAIQAAAAAEACEAAAAAAwAhAAAAAAMAIQAAAAAEACEAAAAAAQAhAAAAAAQAIQAAAAADACEAAAAAAgAhAAAAAAQAIQAAAAADACEAAAAABAAhAAAAAAMAIQAAAAAEACEAAAAAAAAhAAAAAAIAIQAAAAAEACEAAAAAAQAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAQAIQAAAAACAAYAAAAAAwAdAAAAAAIAHgAAAAABAB4AAAAABAAcAAAAAAQAHQAAAAADAAIAAAAACwACAAAAAA0AAgAAAAAGAAIAAAAACQAeAAAAAAEAHgAAAAACAAIAAAAACwAGAAAAAAIAAgAAAAAIAB4AAAAAAAAHAAAAAAIABwAAAAACAAcAAAAAAwAHAAAAAAIABwAAAAACAAcAAAAAAgAHAAAAAAMAAgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAMABQAAAAACAAYAAAAAAAAGAAAAAAAABQAAAAABAAUAAAAAAgAFAAAAAAEABQAAAAABAAcAAAAAAwAHAAAAAAMABwAAAAACAB4AAAAAAwAGAAAAAAMABgAAAAAAAAYAAAAAAwAFAAAAAAMABQAAAAADAAcAAAAAAgAHAAAAAAAABgAAAAADAAUAAAAAAQAFAAAAAAIABQAAAAABAAUAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAQAdAAAAAAMABgAAAAACAAYAAAAAAwAFAAAAAAAABQAAAAADAAYAAAAAAQAHAAAAAAEABwAAAAAAAAYAAAAAAAAFAAAAAAAABgAAAAAAAAUAAAAAAgAHAAAAAAIABwAAAAABAAcAAAAAAQAHAAAAAAMAHgAAAAACAAYAAAAAAQAFAAAAAAMABwAAAAADAAUAAAAAAgAFAAAAAAEABQAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAADAAUAAAAAAwAFAAAAAAAABwAAAAAAAAcAAAAAAwAHAAAAAAEABwAAAAADAB4AAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAwAGAAAAAAIABgAAAAABAA== + tiles: IQAAAAAEACEAAAAAAwAhAAAAAAEAAgAAAAAAAAIAAAAADAAGAAAAAAIABgAAAAAAAAQAAAAACQAGAAAAAAMABgAAAAACAAIAAAAAAwAGAAAAAAAABwAAAAAAAAcAAAAAAAAFAAAAAAIABgAAAAAAACEAAAAABAAeAAAAAAIAHgAAAAABAAIAAAAADwACAAAAAA8ABgAAAAACAAUAAAAAAwAFAAAAAAIABQAAAAABAAYAAAAAAwAeAAAAAAIABgAAAAAAAAUAAAAAAQAFAAAAAAMABQAAAAABAAUAAAAAAwAhAAAAAAQAHgAAAAAEAAYAAAAAAwAGAAAAAAIABQAAAAAAAAQAAAAACwAFAAAAAAIABQAAAAACAAUAAAAAAwAEAAAAAAUAHgAAAAADAAYAAAAAAwAHAAAAAAEABQAAAAABAAUAAAAAAwAHAAAAAAMAIQAAAAAEAB4AAAAAAAAGAAAAAAMABAAAAAAMAAQAAAAABAAEAAAAAAUABAAAAAAGAAUAAAAAAQAFAAAAAAEABAAAAAAIAB4AAAAAAwAGAAAAAAEABgAAAAACAAYAAAAAAgAFAAAAAAAABgAAAAACACEAAAAAAAAeAAAAAAQABAAAAAAEAAUAAAAAAQAEAAAAAAEABAAAAAABAAQAAAAACgAEAAAAAAcABAAAAAAMAAQAAAAABAAeAAAAAAEABgAAAAACAAcAAAAAAAAGAAAAAAIABwAAAAACAAUAAAAAAAAhAAAAAAMAHgAAAAAAAAQAAAAADAAFAAAAAAMABQAAAAADAAQAAAAABwAEAAAAAAoABAAAAAADAAUAAAAAAwAGAAAAAAEAHgAAAAAFAAYAAAAAAAAHAAAAAAAABwAAAAADAAUAAAAAAgAFAAAAAAMAIQAAAAADAB0AAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAgAEAAAAAAQABAAAAAAKAAUAAAAAAQAGAAAAAAEABAAAAAADAB4AAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAwAGAAAAAAAABgAAAAADACEAAAAAAwAeAAAAAAEAHgAAAAAAAAIAAAAACAACAAAAAAkAAgAAAAACAAIAAAAABQAdAAAAAAMAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAABAAeAAAAAAAAHgAAAAABAAIAAAAACgAhAAAAAAQAIQAAAAAEACEAAAAAAgAhAAAAAAMAIQAAAAACACEAAAAAAQAhAAAAAAQAIQAAAAADACEAAAAAAQAhAAAAAAIAIQAAAAABACEAAAAABAAhAAAAAAQAIQAAAAAAACEAAAAABAAhAAAAAAQAIQAAAAADACEAAAAABAAhAAAAAAAAIQAAAAADACEAAAAAAwAhAAAAAAIAIQAAAAABACEAAAAAAQAhAAAAAAAAIQAAAAAAACEAAAAABAAhAAAAAAEAIQAAAAADACEAAAAAAgAhAAAAAAAAIQAAAAAEAAYAAAAAAQAdAAAAAAIAHgAAAAAAAB4AAAAAAwAcAAAAAAIAHQAAAAACAAIAAAAADAACAAAAAAUAAgAAAAAGAAIAAAAABgAeAAAAAAMAHgAAAAADAAIAAAAABAAGAAAAAAIAAgAAAAAPAB4AAAAAAgAHAAAAAAIABwAAAAABAAcAAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAQAHAAAAAAIAAgAAAAAHAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAQAGAAAAAAAABQAAAAACAAYAAAAAAwAGAAAAAAEABQAAAAACAAUAAAAAAAAFAAAAAAIABQAAAAACAAcAAAAAAgAHAAAAAAEABwAAAAABAB4AAAAAAgAGAAAAAAMABgAAAAACAAYAAAAAAQAFAAAAAAIABQAAAAABAAcAAAAAAAAHAAAAAAEABgAAAAABAAUAAAAAAwAFAAAAAAEABQAAAAAAAAUAAAAAAAAHAAAAAAMABwAAAAADAAcAAAAAAwAdAAAAAAEABgAAAAAAAAYAAAAAAAAFAAAAAAEABQAAAAACAAYAAAAAAgAHAAAAAAMABwAAAAADAAYAAAAAAgAFAAAAAAIABgAAAAADAAUAAAAAAwAHAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAMAHgAAAAADAAYAAAAAAQAFAAAAAAAABwAAAAAAAAUAAAAAAAAFAAAAAAEABQAAAAABAAYAAAAAAQAGAAAAAAMABgAAAAABAAUAAAAAAgAFAAAAAAAABwAAAAADAAcAAAAAAAAHAAAAAAMABwAAAAAAAB4AAAAAAwAGAAAAAAMABgAAAAAAAAYAAAAAAwAFAAAAAAIABQAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAACAA== version: 7 0,-1: ind: 0,-1 - tiles: AgAAAAAGABAAAAAAAQAiAAAAAAIAIgAAAAADACIAAAAAAwAQAAAAAAEAHgAAAAAFACEAAAAAAQAhAAAAAAIAHgAAAAACAAMAAAAAAAAQAAAAAAMAEAAAAAAAABAAAAAAAgADAAAAAAIAEAAAAAACAB4AAAAAAgAQAAAAAAEAEAAAAAAAACIAAAAAAgAQAAAAAAIAEAAAAAADAB4AAAAAAwAhAAAAAAIAIQAAAAABAB4AAAAAAQADAAAAAAYAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAADAAMAAAAAAgAeAAAAAAIAEAAAAAACABAAAAAAAwAQAAAAAAMAEAAAAAACABAAAAAAAgAeAAAAAAQAIQAAAAAAACEAAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAABAAeAAAAAAQAHgAAAAAAAB4AAAAABQAeAAAAAAEAHgAAAAAFAAIAAAAABwACAAAAAAoAAgAAAAADAAIAAAAABgAeAAAAAAEAHgAAAAAAACEAAAAAAAAhAAAAAAIAHgAAAAACAB4AAAAAAQAeAAAAAAQAHgAAAAACAB4AAAAABAAeAAAAAAQAAgAAAAAIACEAAAAAAwAhAAAAAAEAIQAAAAAAAAIAAAAACAACAAAAAAcAAgAAAAAJAAIAAAAABwAhAAAAAAIAIQAAAAABACEAAAAABAAhAAAAAAAAIQAAAAAEACEAAAAAAgACAAAAAAgAAgAAAAAPAAIAAAAACwAhAAAAAAAAIQAAAAABACEAAAAAAwAhAAAAAAEAIQAAAAAAACEAAAAAAwAhAAAAAAAAAgAAAAAPAAIAAAAABgACAAAAAAIAAgAAAAAEACEAAAAAAAAhAAAAAAQAIQAAAAABACEAAAAAAwAhAAAAAAQAIQAAAAAAAAIAAAAABgACAAAAAAIAHgAAAAADAB4AAAAABAAGAAAAAAAABgAAAAAAAAYAAAAAAgAeAAAAAAQAAgAAAAAJAAIAAAAADwACAAAAAAYAHgAAAAACAB0AAAAABAACAAAAAAoAHgAAAAAAACEAAAAAAAACAAAAAAUABgAAAAADAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAAABgAAAAABAAYAAAAAAgAFAAAAAAIABQAAAAACAAUAAAAAAwAeAAAAAAEAAgAAAAAJAB4AAAAAAgAhAAAAAAMAHgAAAAADAAYAAAAAAQAFAAAAAAMABQAAAAAAAAYAAAAAAgAGAAAAAAMABQAAAAACAAYAAAAAAAAFAAAAAAEABQAAAAACAAYAAAAAAwAFAAAAAAIAAgAAAAAHAAIAAAAABAACAAAAAAoAIQAAAAAAAB4AAAAAAgAGAAAAAAIABgAAAAABAAUAAAAAAAAGAAAAAAEABgAAAAAAAAcAAAAAAgAGAAAAAAMABgAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAACAAIAAAAACgACAAAAAAAAAgAAAAADACEAAAAAAQAdAAAAAAMABQAAAAADAAYAAAAAAgAFAAAAAAIABwAAAAACAAUAAAAAAwAHAAAAAAMABwAAAAACAAYAAAAAAgAFAAAAAAIABQAAAAAAAAUAAAAAAQACAAAAAAYAAgAAAAANAAIAAAAADQAhAAAAAAMAHgAAAAAFAAYAAAAAAAAGAAAAAAEABgAAAAACAAYAAAAAAAAFAAAAAAMABwAAAAADAAUAAAAAAQAGAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAIAAgAAAAAEAAIAAAAAAgACAAAAAAkAIQAAAAABAB4AAAAAAwAeAAAAAAQAHgAAAAABAB4AAAAAAAAGAAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAIAAAAABgACAAAAAAcAAgAAAAANAAIAAAAAAwACAAAAAA4AAgAAAAAGACEAAAAAAQAhAAAAAAMAIQAAAAAEAB4AAAAAAwAeAAAAAAAABgAAAAACAAUAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAgACAAAAAAkAAgAAAAAKAAIAAAAAAgACAAAAAAUAAgAAAAAKAAIAAAAABQAhAAAAAAQAIQAAAAAAACEAAAAAAwAhAAAAAAIAHgAAAAABAAYAAAAAAwAGAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAMAAgAAAAAPAAIAAAAAAgACAAAAAA4AAgAAAAALAAIAAAAAAAACAAAAAAwAIQAAAAABACEAAAAABAAhAAAAAAIAIQAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAAEAB4AAAAABAAeAAAAAAUAAgAAAAAGAAIAAAAAAQAGAAAAAAMABwAAAAABAAYAAAAAAwAGAAAAAAAABgAAAAADAA== + tiles: AgAAAAAEAB0AAAAAAgAcAAAAAAAAHAAAAAABAB0AAAAAAgAdAAAAAAEAHgAAAAABACEAAAAAAQAhAAAAAAEAHgAAAAACAAMAAAAABwAQAAAAAAEAEAAAAAABABAAAAAAAwADAAAAAAIAEAAAAAACABwAAAAAAwAdAAAAAAAAHAAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAADAB4AAAAABAAhAAAAAAAAIQAAAAABAB4AAAAAAQADAAAAAAgAAwAAAAAHAAMAAAAACAADAAAAAAUAAwAAAAAHAAMAAAAABQAcAAAAAAIAHQAAAAACABwAAAAAAgAdAAAAAAUAHQAAAAAEAB0AAAAAAgAeAAAAAAUAIQAAAAAAACEAAAAAAwAeAAAAAAMAHgAAAAAEAB4AAAAABAAeAAAAAAAAHgAAAAABAB4AAAAABQAeAAAAAAIAHgAAAAAEAAIAAAAACAACAAAAAAUAAgAAAAAPAAIAAAAABQAeAAAAAAAAHgAAAAAEACEAAAAAAgAhAAAAAAMAHgAAAAAEAB4AAAAAAwAeAAAAAAQAHgAAAAACAB4AAAAAAAAeAAAAAAUAAgAAAAAGACEAAAAAAwAhAAAAAAMAIQAAAAAAAAIAAAAAAgACAAAAAA8AAgAAAAAKAAIAAAAADwAhAAAAAAEAIQAAAAABACEAAAAAAgAhAAAAAAQAIQAAAAADACEAAAAAAAACAAAAAAQAAgAAAAAJAAIAAAAACwACAAAAAA4AIQAAAAABACEAAAAAAwAhAAAAAAQAIQAAAAADACEAAAAAAAAhAAAAAAEAAgAAAAADAAIAAAAABAACAAAAAAQAAgAAAAANACEAAAAAAAAhAAAAAAIAIQAAAAAEACEAAAAAAQAhAAAAAAEAIQAAAAABAAIAAAAADAACAAAAAAcAHgAAAAAAAB4AAAAAAQAGAAAAAAIABgAAAAACAAYAAAAAAAAeAAAAAAEAAgAAAAAKAAIAAAAAAgACAAAAAA4AHgAAAAAAAB0AAAAABQACAAAAAAkAHgAAAAACACEAAAAAAgACAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAeAAAAAAMAAgAAAAAOAB4AAAAAAwAhAAAAAAIAHgAAAAAEAAYAAAAAAwAFAAAAAAAABQAAAAADAAYAAAAAAwAGAAAAAAMABQAAAAAAAAYAAAAAAAAFAAAAAAAABQAAAAABAAYAAAAAAQAFAAAAAAMAAgAAAAAEAAIAAAAAAgACAAAAAA8AIQAAAAADAB4AAAAABQAGAAAAAAAABgAAAAAAAAUAAAAAAgAGAAAAAAEABgAAAAADAAcAAAAAAwAGAAAAAAEABgAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAACAAIAAAAACgACAAAAAAgAAgAAAAALACEAAAAAAAAdAAAAAAEABQAAAAACAAYAAAAAAgAFAAAAAAEABwAAAAAAAAUAAAAAAwAHAAAAAAMABwAAAAACAAYAAAAAAgAFAAAAAAAABQAAAAABAAUAAAAAAAACAAAAAAkAAgAAAAAPAAIAAAAABAAhAAAAAAMAHgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAADAAYAAAAAAgAFAAAAAAEABwAAAAAAAAUAAAAAAAAGAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAEAAgAAAAAOAAIAAAAADgACAAAAAAwAIQAAAAADAB4AAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAABQAGAAAAAAEABQAAAAADAAUAAAAAAAAFAAAAAAAABgAAAAAAAAIAAAAAAQACAAAAAAAAAgAAAAAKAAIAAAAABAACAAAAAAYAAgAAAAAHACEAAAAAAAAhAAAAAAEAIQAAAAACAB4AAAAAAwAeAAAAAAUABgAAAAACAAUAAAAAAQAGAAAAAAIABgAAAAABAAYAAAAAAQACAAAAAAwAAgAAAAADAAIAAAAADgACAAAAAAAAAgAAAAANAAIAAAAABAAhAAAAAAMAIQAAAAACACEAAAAAAwAhAAAAAAEAHgAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAABAAYAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAADgACAAAAAA4AAgAAAAAJAAIAAAAACwACAAAAAAUAIQAAAAACACEAAAAABAAhAAAAAAEAIQAAAAAEAB4AAAAAAQAeAAAAAAEAHgAAAAAEAB4AAAAAAAAeAAAAAAEAAgAAAAAHAAIAAAAAAwAGAAAAAAEABwAAAAACAAYAAAAAAQAGAAAAAAIABgAAAAABAA== version: 7 -1,-1: ind: -1,-1 - tiles: BQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAgAGgAAAAACABsAAAAAAAAbAAAAAAAAGgAAAAACABsAAAAAAwAbAAAAAAEAAwAAAAAHAAUAAAAAAwAFAAAAAAIABQAAAAAAAAUAAAAAAAAGAAAAAAAAHgAAAAAEABwAAAAAAAAcAAAAAAQAAwAAAAAFABoAAAAAAwAaAAAAAAEAGgAAAAAAABoAAAAAAwAaAAAAAAEAGgAAAAADAAMAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAQAGAAAAAAAABgAAAAAAAB4AAAAAAQAcAAAAAAEAHAAAAAABAAMAAAAACAADAAAAAAMAAwAAAAAGAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAABQADAAAAAAQABgAAAAABAB0AAAAAAgAdAAAAAAIAHAAAAAAFABwAAAAAAwAcAAAAAAEAAgAAAAAGAAIAAAAACAAaAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAEAGgAAAAABAAQAAAAADQAeAAAAAAIAHgAAAAAFAB4AAAAAAQAdAAAAAAIAAgAAAAAFAAIAAAAADwACAAAAAAEAAgAAAAAOAAIAAAAACAACAAAAAAUAAwAAAAABABoAAAAAAAAaAAAAAAAAGgAAAAADABoAAAAAAAAEAAAAAA0AHgAAAAACACEAAAAAAgAeAAAAAAMAHQAAAAACABwAAAAAAAACAAAAAAkAAgAAAAAKAAIAAAAADAAeAAAAAAUAHgAAAAABAAMAAAAABAADAAAAAAgAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAB4AAAAAAwAhAAAAAAQAHgAAAAAEAB4AAAAABAAdAAAAAAQAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAAAAB4AAAAAAQAeAAAAAAUAHgAAAAABAB4AAAAAAgAeAAAAAAIAHgAAAAACAB4AAAAABAAeAAAAAAMAIQAAAAABAB4AAAAAAQAeAAAAAAIAHQAAAAAFAB4AAAAAAgAeAAAAAAAAHgAAAAACAAYAAAAAAQAGAAAAAAAABgAAAAAAAAYAAAAAAwAGAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAIAHgAAAAAEACEAAAAAAgAEAAAAAAwABAAAAAAKAAQAAAAADAAEAAAAAAsABgAAAAADAB4AAAAAAgAGAAAAAAAABgAAAAABAAcAAAAAAAAGAAAAAAIABwAAAAADAAUAAAAAAgAFAAAAAAIABgAAAAAAAB4AAAAABQAhAAAAAAQABQAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAABAAYAAAAAAwAeAAAAAAEABgAAAAABAAUAAAAAAQAGAAAAAAEABwAAAAAAAAYAAAAAAgAGAAAAAAAABwAAAAADAAYAAAAAAQAeAAAAAAEAIQAAAAABAAUAAAAAAwAFAAAAAAIABQAAAAABAAUAAAAAAQAGAAAAAAIAHgAAAAADAAYAAAAAAQAFAAAAAAEABwAAAAACAAYAAAAAAwAHAAAAAAMABwAAAAAAAAYAAAAAAQAGAAAAAAAAHgAAAAABACEAAAAAAwAEAAAAAAMABAAAAAACAAUAAAAAAwAGAAAAAAAABgAAAAADAB4AAAAABQAGAAAAAAIABgAAAAAAAAcAAAAAAAAFAAAAAAAABAAAAAACAAQAAAAACQAEAAAAAA0ABgAAAAACAB4AAAAAAQAhAAAAAAAABAAAAAAEAAUAAAAAAAAFAAAAAAMABQAAAAAAAB4AAAAABAAeAAAAAAUABgAAAAADAAcAAAAAAQAGAAAAAAAABQAAAAACAAUAAAAAAgAGAAAAAAAAHgAAAAABAB4AAAAAAgAeAAAAAAEAIQAAAAABAAYAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAQAeAAAAAAIAHgAAAAACAAYAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAAAHgAAAAABAAIAAAAAAAAhAAAAAAMAIQAAAAADACEAAAAAAAAeAAAAAAQAHgAAAAAFAB4AAAAABQAeAAAAAAQAHgAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAAEAB4AAAAAAgAeAAAAAAEAHgAAAAACAAIAAAAAAAAhAAAAAAEAIQAAAAADACEAAAAAAQAhAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAEAHgAAAAAEAB4AAAAAAAAeAAAAAAUABAAAAAANAAQAAAAADAAEAAAAAAEABAAAAAAKAAIAAAAACgACAAAAAAwAIQAAAAABACEAAAAABAAhAAAAAAAAIQAAAAABAA== + tiles: BQAAAAADAAUAAAAAAQAFAAAAAAMABQAAAAADAAYAAAAAAwAFAAAAAAIABQAAAAAAAAUAAAAAAQAHAAAAAAEABwAAAAADAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAAAdAAAAAAQAHQAAAAAFAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAwAGAAAAAAAABgAAAAABAAUAAAAAAwAFAAAAAAAABwAAAAACAAcAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAgAGAAAAAAAAHQAAAAAAAB0AAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAACAAUAAAAAAgAFAAAAAAIABQAAAAADAAUAAAAAAAAFAAAAAAEABQAAAAAAAB0AAAAABAACAAAAAAYAHQAAAAACAB0AAAAABQAcAAAAAAIABgAAAAADAB0AAAAABQAdAAAAAAUAHAAAAAAAABwAAAAABQACAAAAAAIAAgAAAAALAAIAAAAAAQACAAAAAAMAHQAAAAAFAB0AAAAAAAAdAAAAAAAAAgAAAAALAAIAAAAACwACAAAAAAQAHAAAAAAFAB4AAAAAAQAdAAAAAAAAAgAAAAADAB4AAAAABQAeAAAAAAAAHQAAAAAEAAIAAAAABQACAAAAAAEAAgAAAAADAAIAAAAACgACAAAAAAkAAgAAAAAKAAIAAAAABgACAAAAAA0AAgAAAAAKAAIAAAAAAwAeAAAAAAQAHQAAAAACABwAAAAAAgACAAAAAAUAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHAAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAEAB0AAAAAAQAdAAAAAAUAHAAAAAAEABwAAAAAAgACAAAAAAsAHgAAAAAAAB4AAAAAAgAdAAAAAAAAHgAAAAAAAB4AAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAAEAB4AAAAAAAAeAAAAAAAAHgAAAAAEAB4AAAAAAAAeAAAAAAQAIQAAAAAAAB4AAAAAAgAeAAAAAAUAHQAAAAAEAB4AAAAAAQAeAAAAAAMAHgAAAAABAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAIAHgAAAAADACEAAAAAAQAEAAAAAAQABAAAAAADAAQAAAAAAQAEAAAAAAkABgAAAAACAB4AAAAAAgAGAAAAAAAABgAAAAAAAAcAAAAAAQAGAAAAAAMABwAAAAABAAUAAAAAAgAFAAAAAAIABgAAAAABAB4AAAAAAQAhAAAAAAIABQAAAAADAAUAAAAAAgAFAAAAAAIABQAAAAAAAAYAAAAAAQAeAAAAAAAABgAAAAAAAAUAAAAAAwAGAAAAAAAABwAAAAABAAYAAAAAAQAGAAAAAAMABwAAAAABAAYAAAAAAgAeAAAAAAEAIQAAAAABAAUAAAAAAgAFAAAAAAAABQAAAAACAAUAAAAAAQAGAAAAAAEAHgAAAAACAAYAAAAAAgAFAAAAAAAABwAAAAADAAYAAAAAAAAHAAAAAAAABwAAAAACAAYAAAAAAgAGAAAAAAEAHgAAAAACACEAAAAAAQAEAAAAAAIABAAAAAAMAAUAAAAAAwAGAAAAAAMABgAAAAAAAB4AAAAAAgAGAAAAAAIABgAAAAABAAcAAAAAAQAFAAAAAAEABAAAAAAEAAQAAAAABgAEAAAAAAoABgAAAAADAB4AAAAABAAhAAAAAAEABAAAAAAGAAUAAAAAAAAFAAAAAAMABQAAAAAAAB4AAAAAAwAeAAAAAAEABgAAAAACAAcAAAAAAgAGAAAAAAIABQAAAAAAAAUAAAAAAgAGAAAAAAMAHgAAAAAFAB4AAAAABAAeAAAAAAAAIQAAAAACAAYAAAAAAwAGAAAAAAAABgAAAAACAAYAAAAAAAAeAAAAAAMAHgAAAAACAAYAAAAAAgAGAAAAAAMABgAAAAABAAYAAAAAAQAGAAAAAAAAHgAAAAABAAIAAAAACgAhAAAAAAIAIQAAAAAEACEAAAAAAgAeAAAAAAMAHgAAAAAEAB4AAAAAAgAeAAAAAAAAHgAAAAAFAB4AAAAABAAeAAAAAAAAHgAAAAABAB4AAAAAAQAeAAAAAAQAHgAAAAAFAAIAAAAADAAhAAAAAAEAIQAAAAACACEAAAAAAwAhAAAAAAMAHgAAAAAAAB4AAAAAAAAeAAAAAAUAHgAAAAABAB4AAAAABAAeAAAAAAIABAAAAAAHAAQAAAAABwAEAAAAAA0ABAAAAAANAAIAAAAACAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAMAIQAAAAADAA== version: 7 -1,0: ind: -1,0 - tiles: BgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAABAAYAAAAAAQAeAAAAAAQABAAAAAAEAAYAAAAAAAAGAAAAAAAABgAAAAACAAIAAAAAAgACAAAAAAQAAgAAAAAJACEAAAAAAgAhAAAAAAMAIQAAAAADAAcAAAAAAQAFAAAAAAEABwAAAAAAAAcAAAAAAwAGAAAAAAIAHgAAAAABAAQAAAAACgAGAAAAAAIABgAAAAAAAAYAAAAAAwAGAAAAAAAABgAAAAABAAIAAAAADgACAAAAAAgAAgAAAAAHACEAAAAAAgAFAAAAAAIABAAAAAABAAQAAAAABgAEAAAAAAgABgAAAAABAB4AAAAAAwAEAAAAAAoABgAAAAACAAYAAAAAAQAEAAAAAAEABAAAAAAGAAYAAAAAAAAEAAAAAAMABAAAAAAIAAIAAAAAAQAhAAAAAAQABQAAAAABAAYAAAAAAQAGAAAAAAMABQAAAAABAAYAAAAAAQAdAAAAAAMABAAAAAAEAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAAABgAAAAACAAQAAAAACAACAAAAAA4AIQAAAAAEAAcAAAAAAAAGAAAAAAIABgAAAAACAAUAAAAAAQAGAAAAAAIAHgAAAAAAAAQAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAQAGAAAAAAEABgAAAAAAAAYAAAAAAwAEAAAAAA0AHgAAAAAAACEAAAAAAwAFAAAAAAEABQAAAAACAAcAAAAAAgAHAAAAAAMABgAAAAAAAB4AAAAAAgAEAAAAAAoABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAIABAAAAAADAB0AAAAAAgAhAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAQAeAAAAAAAABAAAAAANAAQAAAAADAAEAAAAAAkABAAAAAAAAAQAAAAAAwAEAAAAAA0ABAAAAAABAAQAAAAAAQAeAAAAAAIAIQAAAAACAAYAAAAAAwAeAAAAAAUAHgAAAAABAB4AAAAABQAeAAAAAAEAHgAAAAABAB4AAAAAAgAdAAAAAAUAHQAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAABQAeAAAAAAQAHgAAAAAAACEAAAAABAAhAAAAAAMAIQAAAAADACEAAAAABAAhAAAAAAIAIQAAAAAAACEAAAAAAwAhAAAAAAMAIQAAAAADACEAAAAAAAAhAAAAAAIAIQAAAAAAACEAAAAAAAAhAAAAAAEAIQAAAAABACEAAAAAAQAhAAAAAAQAIQAAAAAEACEAAAAAAwAhAAAAAAQAIQAAAAABACEAAAAAAAAhAAAAAAAAIQAAAAADACEAAAAAAQAhAAAAAAQAIQAAAAAAACEAAAAAAwAhAAAAAAIAIQAAAAABACEAAAAAAgAhAAAAAAQAIQAAAAADAAIAAAAAAwAcAAAAAAAAHAAAAAADAB0AAAAABAAcAAAAAAQAHgAAAAACAB4AAAAABQAeAAAAAAQAHgAAAAAEAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAMAHAAAAAAFAAYAAAAAAQAcAAAAAAEAHAAAAAAEABwAAAAAAAAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAIABQAAAAADABwAAAAAAwAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAAABwAAAAACAAcAAAAAAAAHAAAAAAIAHAAAAAAEABwAAAAAAgAcAAAAAAMABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAdAAAAAAMABgAAAAABAAYAAAAAAgAFAAAAAAIABQAAAAAAAAUAAAAAAAAGAAAAAAAABwAAAAABABwAAAAAAwAcAAAAAAUAHAAAAAAEAAUAAAAAAAAFAAAAAAEABQAAAAABAAUAAAAAAAAFAAAAAAMAHQAAAAABAAYAAAAAAQAGAAAAAAIABQAAAAABAAUAAAAAAwAFAAAAAAIABwAAAAADAAcAAAAAAgAcAAAAAAIAHAAAAAAAABwAAAAAAgAFAAAAAAMABQAAAAACAAUAAAAAAgAFAAAAAAAABQAAAAACAB0AAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAIABwAAAAACAAUAAAAAAgAFAAAAAAMAHAAAAAAEABwAAAAABQAcAAAAAAUAHAAAAAAEAAUAAAAAAAAFAAAAAAEABQAAAAAAABwAAAAAAAAdAAAAAAAABgAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAADAAcAAAAAAgAHAAAAAAMABgAAAAACAA== + tiles: BgAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAABAAYAAAAAAQAeAAAAAAEABAAAAAAEAAYAAAAAAgAGAAAAAAAABgAAAAAAAAIAAAAADQACAAAAAA8AAgAAAAADACEAAAAAAwAhAAAAAAIAIQAAAAACAAcAAAAAAQAFAAAAAAAABwAAAAABAAcAAAAAAQAGAAAAAAEAHgAAAAABAAQAAAAADQAGAAAAAAIABgAAAAACAAYAAAAAAwAGAAAAAAMABgAAAAACAAIAAAAADwACAAAAAAQAAgAAAAAEACEAAAAAAQAFAAAAAAEABAAAAAACAAQAAAAACAAEAAAAAAAABgAAAAACAB4AAAAAAwAEAAAAAAUABgAAAAADAAYAAAAAAQAEAAAAAAEABAAAAAABAAYAAAAAAwAEAAAAAAwABAAAAAAGAAIAAAAABAAhAAAAAAQABQAAAAAAAAYAAAAAAgAGAAAAAAAABQAAAAACAAYAAAAAAwAdAAAAAAQABAAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAADAAQAAAAACgACAAAAAAUAIQAAAAAEAAcAAAAAAAAGAAAAAAIABgAAAAAAAAUAAAAAAgAGAAAAAAMAHgAAAAAEAAQAAAAABAAGAAAAAAAABgAAAAABAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAgAEAAAAAAsAHgAAAAADACEAAAAAAwAFAAAAAAAABQAAAAACAAcAAAAAAgAHAAAAAAAABgAAAAABAB4AAAAAAAAEAAAAAAoABgAAAAADAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAEABAAAAAAAAB0AAAAABAAhAAAAAAQABgAAAAADAAYAAAAAAQAGAAAAAAMABgAAAAADAAYAAAAAAAAeAAAAAAEABAAAAAAFAAQAAAAACAAEAAAAAAoABAAAAAAEAAQAAAAAAwAEAAAAAAMABAAAAAAAAAQAAAAACwAeAAAAAAAAIQAAAAABAAYAAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAABAAeAAAAAAQAHgAAAAAAAB4AAAAABQAdAAAAAAAAHQAAAAAAAB4AAAAABAAeAAAAAAUAHgAAAAAAAB4AAAAABQAeAAAAAAUAHgAAAAAAACEAAAAAAwAhAAAAAAAAIQAAAAAEACEAAAAAAwAhAAAAAAAAIQAAAAAEACEAAAAABAAhAAAAAAQAIQAAAAAAACEAAAAAAgAhAAAAAAAAIQAAAAABACEAAAAAAgAhAAAAAAIAIQAAAAAAACEAAAAAAgAhAAAAAAMAIQAAAAABACEAAAAAAAAhAAAAAAQAIQAAAAABACEAAAAAAwAhAAAAAAQAIQAAAAAEACEAAAAABAAhAAAAAAIAIQAAAAADACEAAAAABAAhAAAAAAQAIQAAAAAAACEAAAAAAQAhAAAAAAIAIQAAAAADAAIAAAAABAAcAAAAAAQAHAAAAAADAB0AAAAAAQAcAAAAAAIAHgAAAAABAB4AAAAAAQAeAAAAAAQAHgAAAAAFAB4AAAAAAwAeAAAAAAUAHgAAAAAFAB4AAAAAAgAeAAAAAAEAHAAAAAACAAYAAAAAAQAcAAAAAAMAHAAAAAADABwAAAAAAAAFAAAAAAIABQAAAAACAAUAAAAAAQAFAAAAAAMABQAAAAAAABwAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAIABwAAAAAAAAcAAAAAAwAHAAAAAAIAHAAAAAAFABwAAAAAAgAcAAAAAAUABQAAAAABAAUAAAAAAgAFAAAAAAAABQAAAAACAAUAAAAAAAAdAAAAAAIABgAAAAAAAAYAAAAAAwAFAAAAAAEABQAAAAACAAUAAAAAAQAGAAAAAAMABwAAAAABABwAAAAABAAcAAAAAAAAHAAAAAAAAAUAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAwAFAAAAAAIAHQAAAAADAAYAAAAAAAAGAAAAAAMABQAAAAACAAUAAAAAAgAFAAAAAAAABwAAAAAAAAcAAAAAAQAcAAAAAAAAHAAAAAACABwAAAAAAAAFAAAAAAIABQAAAAACAAUAAAAAAwAFAAAAAAMABQAAAAACAB0AAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAgAGAAAAAAEABwAAAAAAAAUAAAAAAAAFAAAAAAMAHAAAAAADABwAAAAABQAcAAAAAAAAHAAAAAACAAUAAAAAAgAFAAAAAAEABQAAAAABABwAAAAAAgAdAAAAAAUABgAAAAABAAUAAAAAAAAFAAAAAAIABQAAAAABAAcAAAAAAQAHAAAAAAAABgAAAAABAA== version: 7 -1,-2: ind: -1,-2 - tiles: BwAAAAABAAcAAAAAAAACAAAAAAkACQAAAAAFAAkAAAAADAAJAAAAAAwABgAAAAABAAUAAAAAAwAGAAAAAAMABQAAAAABAAYAAAAAAAAHAAAAAAMABgAAAAAAAAYAAAAAAAAeAAAAAAEAAgAAAAAGAAUAAAAAAAAHAAAAAAMABwAAAAABAAcAAAAAAAAHAAAAAAIACQAAAAABAAYAAAAAAwAGAAAAAAEABQAAAAACAAUAAAAAAQAEAAAAAAQABgAAAAABAAcAAAAAAQAGAAAAAAAAHgAAAAAEACEAAAAAAgAHAAAAAAAABwAAAAABAAUAAAAAAgAFAAAAAAEABwAAAAADAAkAAAAABgAGAAAAAAEABgAAAAACAAYAAAAAAgAGAAAAAAAABgAAAAAAAAUAAAAAAwAGAAAAAAAABgAAAAACAB4AAAAAAgAhAAAAAAEABQAAAAACAAYAAAAAAgAGAAAAAAEABQAAAAABAAcAAAAAAgAeAAAAAAUAHgAAAAAEAB4AAAAABAAeAAAAAAMAHgAAAAAAAAIAAAAABwAGAAAAAAEAAgAAAAAMABwAAAAAAgAeAAAAAAEAIQAAAAAAAAcAAAAAAAAGAAAAAAMABgAAAAACAAUAAAAAAQAHAAAAAAEABgAAAAAAACEAAAAAAwACAAAAAAUAAgAAAAABAAIAAAAABQACAAAAAAcAAgAAAAAPAAIAAAAACwAhAAAAAAMAIQAAAAADACEAAAAABAAHAAAAAAEABwAAAAABAAcAAAAAAAAHAAAAAAMABwAAAAACAAIAAAAAAQAhAAAAAAQAIQAAAAADAAIAAAAABgACAAAAAA4AAgAAAAAGACEAAAAABAAhAAAAAAQAIQAAAAADACEAAAAABAAhAAAAAAQAHgAAAAACAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAAAeAAAAAAQAHgAAAAAEAB0AAAAAAQAcAAAAAAUAHgAAAAACABwAAAAAAgAeAAAAAAMAHgAAAAAFAAIAAAAAAQACAAAAAAAAHgAAAAAFAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAIABgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAABAAYAAAAAAwAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAAABAAAAAALAAUAAAAAAgAFAAAAAAEABgAAAAAAAAYAAAAAAwAGAAAAAAMABQAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAACAAUAAAAAAQAGAAAAAAIABQAAAAADAAUAAAAAAwAFAAAAAAIABgAAAAAAAAYAAAAAAwAGAAAAAAMABQAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAAAAAUAAAAAAQAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAgAFAAAAAAIABQAAAAADAAYAAAAAAgAGAAAAAAIABgAAAAABAAUAAAAAAgAFAAAAAAEABQAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAMABgAAAAADAAYAAAAAAAAFAAAAAAMABQAAAAABAAUAAAAAAQAFAAAAAAAABwAAAAADAAUAAAAAAwAHAAAAAAMABwAAAAADAAUAAAAAAQAHAAAAAAMABwAAAAACAAcAAAAAAQAHAAAAAAAABQAAAAADAAUAAAAAAwAGAAAAAAEABQAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAIABwAAAAAAAAcAAAAAAgAFAAAAAAAABwAAAAACAAcAAAAAAQAHAAAAAAAABwAAAAABAAUAAAAAAgAFAAAAAAMABgAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAAAwAAAAAGAAMAAAAAAwADAAAAAAMABQAAAAAAAAQAAAAABwANAAAAAAAADQAAAAAAAAQAAAAACgANAAAAAAAABAAAAAAIAAMAAAAAAwAGAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAUAAAAAAgAaAAAAAAMAGgAAAAADABoAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAwADAAAAAAIABQAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAAAAAYAAAAAAAADAAAAAAYAAwAAAAADAAMAAAAAAQADAAAAAAEAGgAAAAADABsAAAAAAAAbAAAAAAMAGgAAAAAAABsAAAAAAQAbAAAAAAIAAwAAAAAGAA== + tiles: BwAAAAAAAAcAAAAAAQACAAAAAA8ACQAAAAACAAkAAAAAAQAJAAAAAAgABgAAAAAAAAUAAAAAAAAGAAAAAAEABQAAAAADAAYAAAAAAgAHAAAAAAIABgAAAAABAAYAAAAAAgAeAAAAAAUAAgAAAAALAAUAAAAAAAAHAAAAAAMABwAAAAACAAcAAAAAAgAHAAAAAAMACQAAAAADAAYAAAAAAAAGAAAAAAAABQAAAAACAAUAAAAAAgAEAAAAAAwABgAAAAABAAcAAAAAAgAGAAAAAAEAHgAAAAACACEAAAAAAQAHAAAAAAIABwAAAAADAAUAAAAAAgAFAAAAAAAABwAAAAACAAkAAAAACAAGAAAAAAAABgAAAAABAAYAAAAAAAAGAAAAAAAABgAAAAACAAUAAAAAAQAGAAAAAAMABgAAAAADAB4AAAAABAAhAAAAAAAABQAAAAABAAYAAAAAAgAGAAAAAAMABQAAAAACAAcAAAAAAwAeAAAAAAEAHgAAAAABAB4AAAAABQAeAAAAAAQAHgAAAAAFAAIAAAAADQAGAAAAAAIAAgAAAAAHABwAAAAAAgAeAAAAAAIAIQAAAAADAAcAAAAAAwAGAAAAAAMABgAAAAAAAAUAAAAAAAAHAAAAAAEABgAAAAACACEAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAABQACAAAAAAcAAgAAAAAIAAIAAAAABgAhAAAAAAIAIQAAAAADACEAAAAAAwAHAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAIABwAAAAADAAIAAAAAAQAhAAAAAAIAIQAAAAABAAIAAAAAAgACAAAAAAkAAgAAAAADACEAAAAAAwAhAAAAAAIAIQAAAAABACEAAAAAAwAhAAAAAAAAHgAAAAACAB4AAAAAAAAeAAAAAAQAHgAAAAAFAB4AAAAABAAeAAAAAAUAHgAAAAAAAB0AAAAABAAcAAAAAAAAHgAAAAADABwAAAAABAAeAAAAAAEAHgAAAAAFAAIAAAAAAgACAAAAAAwAHgAAAAAEAAYAAAAAAwAGAAAAAAMABgAAAAABAAYAAAAAAQAGAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAIABAAAAAAGAAUAAAAAAQAFAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAIABQAAAAACAAYAAAAAAQAGAAAAAAAABgAAAAABAAUAAAAAAAAGAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAIABgAAAAADAAYAAAAAAQAGAAAAAAIABQAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAACAAUAAAAAAgAGAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAMABgAAAAABAAUAAAAAAwAFAAAAAAAABQAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAUAAAAAAwAFAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAEABQAAAAAAAAUAAAAAAQAFAAAAAAIABgAAAAACAAYAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAAAFAAAAAAEABwAAAAADAAUAAAAAAgAHAAAAAAEABwAAAAADAAUAAAAAAwAHAAAAAAIABwAAAAAAAAcAAAAAAgAHAAAAAAIABQAAAAADAAUAAAAAAQAGAAAAAAIABQAAAAABAAUAAAAAAQAFAAAAAAEABQAAAAACAAUAAAAAAAAFAAAAAAEABQAAAAABAAUAAAAAAwAFAAAAAAAABQAAAAABAAUAAAAAAgAHAAAAAAMABwAAAAACAAUAAAAAAgAFAAAAAAMABgAAAAADAAUAAAAAAwAFAAAAAAIABQAAAAAAAAUAAAAAAQAGAAAAAAIABQAAAAABAAcAAAAAAwAFAAAAAAIABQAAAAABAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAgAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAAABgAAAAACAAYAAAAAAwAGAAAAAAEABgAAAAADAAcAAAAAAgAHAAAAAAMABgAAAAABAAYAAAAAAgAFAAAAAAIABgAAAAABAAYAAAAAAQAGAAAAAAIABgAAAAADAAYAAAAAAAAGAAAAAAAABQAAAAABAAUAAAAAAQAFAAAAAAIABQAAAAABAAYAAAAAAQAHAAAAAAAABQAAAAADAAYAAAAAAAAGAAAAAAEABQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAADAAYAAAAAAQAGAAAAAAAABgAAAAADAA== version: 7 0,-2: ind: 0,-2 - tiles: IQAAAAACAAIAAAAAAwAdAAAAAAMAHAAAAAABAAMAAAAAAQADAAAAAAUAAwAAAAABAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAgAdAAAAAAUAHQAAAAACAB4AAAAAAgAeAAAAAAAADQAAAAAAACEAAAAAAQAcAAAAAAUAHQAAAAABABwAAAAAAgADAAAAAAcAAwAAAAADAB0AAAAAAAAQAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAMAHQAAAAADAB0AAAAABAAeAAAAAAAAHgAAAAACAA0AAAAAAAACAAAAAAMAAgAAAAAKABwAAAAABAAcAAAAAAUAHAAAAAADABwAAAAAAAAcAAAAAAMAHgAAAAAFABwAAAAAAwAcAAAAAAUAHAAAAAADABwAAAAAAAAcAAAAAAIAHAAAAAAAAB4AAAAABQANAAAAAAAAIQAAAAABAAIAAAAABQACAAAAAAMAAgAAAAAGAAIAAAAADgAcAAAAAAAAHAAAAAADABwAAAAAAQAcAAAAAAMAAgAAAAABAAIAAAAACwAhAAAAAAAAAgAAAAADAAIAAAAABQACAAAAAA4AAgAAAAACAAIAAAAACAACAAAAAA8AIQAAAAAEACEAAAAAAwACAAAAAAwAAgAAAAAMACEAAAAABAAhAAAAAAMAAgAAAAACAAIAAAAADQACAAAAAAUAAgAAAAAMACEAAAAAAQAhAAAAAAQAIQAAAAAAAAIAAAAADQAhAAAAAAEAIQAAAAADAAIAAAAABQACAAAAAAUAAgAAAAACACEAAAAAAQAhAAAAAAQAIQAAAAAEACEAAAAAAwAhAAAAAAMAAgAAAAAIAAIAAAAADAACAAAAAAcAIQAAAAADAAIAAAAAAwACAAAAAA8AHgAAAAAFABwAAAAAAwACAAAAAAMAHgAAAAAEAB4AAAAAAwACAAAAAAMAAgAAAAADACEAAAAAAwACAAAAAAYAHAAAAAADABwAAAAAAQAdAAAAAAMAAgAAAAADACEAAAAAAgAdAAAAAAUAHgAAAAADAB4AAAAAAAAeAAAAAAMAAgAAAAAIAB4AAAAABAAeAAAAAAUAHgAAAAAFAB4AAAAAAwACAAAAAA8AAgAAAAAHAB0AAAAABAAdAAAAAAEAAwAAAAAFAAMAAAAABAADAAAAAAgAAwAAAAAAAAMAAAAAAQAeAAAAAAMAAgAAAAAKAAIAAAAACgACAAAAAAoAHgAAAAAFAB4AAAAAAwAeAAAAAAAAAgAAAAAIACEAAAAAAwAcAAAAAAMAHQAAAAABAAMAAAAABwADAAAAAAcAAwAAAAABAAMAAAAABgADAAAAAAcABgAAAAAAACEAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAADAAhAAAAAAMAAgAAAAADACEAAAAABAAhAAAAAAEAHgAAAAAAAB4AAAAAAwADAAAAAAYAAwAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAABAAYAAAAAAQAhAAAAAAEAAgAAAAAHAAIAAAAADQAhAAAAAAQAAgAAAAAFAAIAAAAAAgAhAAAAAAMAIQAAAAABAB4AAAAAAAADAAAAAAYAAwAAAAAHAAMAAAAAAwADAAAAAAcAAwAAAAAAAAMAAAAAAQAeAAAAAAMAHgAAAAAAAAIAAAAACAACAAAAAAoAAgAAAAAHABwAAAAAAQAdAAAAAAQAIQAAAAABAAIAAAAACwAeAAAAAAUAAwAAAAAEAAMAAAAAAgADAAAAAAIAEAAAAAAAABAAAAAAAwADAAAAAAIAHgAAAAACAAIAAAAACQADAAAAAAAAAwAAAAACAAMAAAAACAAeAAAAAAMAHAAAAAACACEAAAAAAgAhAAAAAAIAHgAAAAAEAAMAAAAAAAADAAAAAAMAAwAAAAADABAAAAAAAgAQAAAAAAIAEAAAAAADAB4AAAAABQACAAAAAAMAEAAAAAAAABAAAAAAAAAQAAAAAAMAHgAAAAABAB0AAAAAAQACAAAAAAIAIQAAAAABAB4AAAAAAQADAAAAAAYAEAAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAQACAAAAAA4AEAAAAAABABAAAAAAAgAQAAAAAAEAEAAAAAADABAAAAAAAAAeAAAAAAMAAgAAAAAHACEAAAAAAQAeAAAAAAAAAwAAAAABABAAAAAAAAADAAAAAAgAAwAAAAAFABAAAAAAAQAQAAAAAAMAHgAAAAAAABAAAAAAAwAQAAAAAAIAIgAAAAAAABAAAAAAAgAQAAAAAAAAHgAAAAAFACEAAAAABAAhAAAAAAIAHgAAAAAEAAMAAAAABAAQAAAAAAEAAwAAAAAEAAMAAAAABgAQAAAAAAMAEAAAAAACAA== + tiles: IQAAAAAAAAIAAAAACQAdAAAAAAEABgAAAAACAAUAAAAAAgAFAAAAAAIABgAAAAADAAMAAAAABAADAAAAAAUAAwAAAAAIAAMAAAAAAAADAAAAAAEAAwAAAAAGAAMAAAAAAQAGAAAAAAEABgAAAAAAACEAAAAABAAcAAAAAAUAHQAAAAADACEAAAAAAgAhAAAAAAMAIQAAAAAEABwAAAAAAgAcAAAAAAIAHAAAAAAAABwAAAAAAwAcAAAAAAEAHQAAAAABAB0AAAAABQAdAAAAAAUABgAAAAABAAYAAAAAAgACAAAAAAYAAgAAAAANABwAAAAABQAcAAAAAAMAIQAAAAACAAIAAAAAAwAcAAAAAAUAHgAAAAACABwAAAAAAAAcAAAAAAQAHAAAAAAAABwAAAAAAQAcAAAAAAAAHAAAAAABAAYAAAAAAgAGAAAAAAIAIQAAAAACAAIAAAAABQACAAAAAAgAAgAAAAAJAAIAAAAACgACAAAAAAgAHAAAAAADABwAAAAAAgAcAAAAAAEAAgAAAAABAAIAAAAADgAhAAAAAAIAIQAAAAADACEAAAAAAAAGAAAAAAEABwAAAAACAAIAAAAABAACAAAAAAUAIQAAAAAEACEAAAAAAQACAAAAAAwAAgAAAAACACEAAAAAAAAhAAAAAAIAAgAAAAAIAAIAAAAAAQACAAAAAAAAAgAAAAAAACEAAAAABAAhAAAAAAAABgAAAAAAAAYAAAAAAgAhAAAAAAMAIQAAAAAEAAIAAAAABwACAAAAAAQAAgAAAAANACEAAAAABAAhAAAAAAIAIQAAAAADACEAAAAAAwAhAAAAAAAAAgAAAAAHAAIAAAAADQACAAAAAA8AIQAAAAAEAB0AAAAAAwAGAAAAAAEAHgAAAAAFABwAAAAABAACAAAAAAkAHgAAAAAEAB4AAAAAAwACAAAAAAgAAgAAAAALACEAAAAAAQACAAAAAAgAHAAAAAABABwAAAAABAAdAAAAAAIAAgAAAAALACEAAAAAAgAdAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAUAAgAAAAAEAB4AAAAABQAeAAAAAAMAHgAAAAAFAB4AAAAAAgACAAAAAAAAAgAAAAAHAB0AAAAAAwAdAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAAIAAMAAAAABgAeAAAAAAEAAgAAAAABAAIAAAAABAACAAAAAAsAHgAAAAABAB4AAAAAAgAeAAAAAAEAAgAAAAABACEAAAAABAAcAAAAAAEAHQAAAAAEAAMAAAAABQADAAAAAAAAAwAAAAAHAAMAAAAABgADAAAAAAYABgAAAAACACEAAAAABAACAAAAAA8AAgAAAAAFAAIAAAAAAQAhAAAAAAIAAgAAAAAOACEAAAAAAgAhAAAAAAAAHgAAAAACAB4AAAAABAADAAAAAAIAAwAAAAADAAMAAAAABQADAAAAAAgAAwAAAAADAAYAAAAAAwAhAAAAAAAAAgAAAAAEAAIAAAAAAwAhAAAAAAIAAgAAAAANAAIAAAAACAAhAAAAAAMAIQAAAAADAB4AAAAAAgADAAAAAAQAAwAAAAAIAAMAAAAACAADAAAAAAcAAwAAAAACAAMAAAAAAAAeAAAAAAIAHgAAAAAAAAIAAAAADAAeAAAAAAIAHgAAAAAFABwAAAAABAAdAAAAAAQAIQAAAAAEAAIAAAAAAQAeAAAAAAQAAwAAAAAHAAMAAAAABgADAAAAAAMAEAAAAAABABAAAAAAAAADAAAAAAQAHgAAAAAEAB4AAAAABAAeAAAAAAQAHgAAAAACAB4AAAAABQAeAAAAAAMAHAAAAAAEACEAAAAAAAAhAAAAAAAAHgAAAAAAAAMAAAAAAQADAAAAAAcAAwAAAAAAABAAAAAAAQAQAAAAAAAAEAAAAAADAB4AAAAAAAAdAAAAAAMAHgAAAAABAB0AAAAABAAdAAAAAAQAHQAAAAACAB0AAAAAAAACAAAAAAMAIQAAAAACAB4AAAAAAQADAAAAAAQAEAAAAAADABAAAAAAAwAQAAAAAAMAEAAAAAAAABAAAAAAAAAeAAAAAAIAHgAAAAACAB0AAAAAAAAdAAAAAAIAHAAAAAAAAB0AAAAAAAAeAAAAAAIAAgAAAAADACEAAAAABAAeAAAAAAUAAwAAAAAGABAAAAAAAwADAAAAAAEAAwAAAAADABAAAAAAAgAQAAAAAAIAHgAAAAAAAB0AAAAABAAdAAAAAAUAHAAAAAACABwAAAAABQAdAAAAAAIAHgAAAAAFACEAAAAABAAhAAAAAAMAHgAAAAAEAAMAAAAABwAQAAAAAAEAAwAAAAAHAAMAAAAAAAAQAAAAAAEAEAAAAAADAA== version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHgAAAAAAAB0AAAAABAAdAAAAAAEAAgAAAAAMAAIAAAAACwAJAAAAAA0AAgAAAAAEAAcAAAAAAwAFAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAAAdAAAAAAQAHQAAAAAFAAIAAAAADwAJAAAAAAQACQAAAAAGABwAAAAABAAHAAAAAAEABQAAAAADAAYAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAHAAAAAABAAIAAAAADAAJAAAAAAgACQAAAAACAAkAAAAADAAdAAAAAAAABwAAAAABAAUAAAAAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHAAAAAAAAAIAAAAAAAAJAAAAAAoACQAAAAABAAkAAAAABgAdAAAAAAUAHQAAAAADAAcAAAAAAQAHAAAAAAEABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAAAwACAAAAAAkACQAAAAAIAAkAAAAABgAdAAAAAAAAHQAAAAAEAB4AAAAABQAHAAAAAAIABwAAAAAAAAcAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIACQAAAAAJAAkAAAAACAAdAAAAAAMAHQAAAAACAAkAAAAAAgAeAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAADAB0AAAAABQACAAAAAAcAAgAAAAACAB4AAAAAAgAeAAAAAAAAHgAAAAADAB4AAAAAAgAeAAAAAAUAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAABQAdAAAAAAQAAgAAAAAJAAIAAAAAAQACAAAAAAUAHgAAAAADAB4AAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAsAAgAAAAANAB4AAAAAAwACAAAAAAAAHgAAAAAAAB4AAAAAAQAeAAAAAAMABQAAAAACAAUAAAAAAgAFAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAKACAAAAAAAAAgAAAAAAAAHgAAAAAFAAIAAAAACQACAAAAAAkAIQAAAAACAAYAAAAAAAAFAAAAAAEABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACQAgAAAAAAAAIAAAAAABAB4AAAAAAwACAAAAAA4AAgAAAAAMACEAAAAAAwAGAAAAAAMABQAAAAACAAUAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAQAIAAAAAABACAAAAAAAAACAAAAAAgAAgAAAAAAACEAAAAAAgAhAAAAAAAABgAAAAAAAAUAAAAAAgAFAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAACwACAAAAAAEAAgAAAAAIAAIAAAAACgAhAAAAAAQAIQAAAAABAAYAAAAAAAAFAAAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACAAgAAAAAAAAIAAAAAABAAIAAAAAAwACAAAAAAoAAgAAAAACAB4AAAAAAgAGAAAAAAEABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAMAIAAAAAABACAAAAAAAQACAAAAAAEAAgAAAAALAAIAAAAABQAeAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAABAAIAAAAADgACAAAAAAQAAgAAAAAOAAIAAAAADQACAAAAAAQAHgAAAAAAAAYAAAAAAgAFAAAAAAMABQAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHgAAAAADAB0AAAAABQAdAAAAAAMAAgAAAAAPAAIAAAAADQAJAAAAAAAAAgAAAAANAAcAAAAAAwAFAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAABQAdAAAAAAQAHQAAAAAEAAIAAAAADAAJAAAAAAcACQAAAAAIABwAAAAAAAAHAAAAAAEABQAAAAACAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAMAHAAAAAAFAAIAAAAADwAJAAAAAAwACQAAAAAHAAkAAAAABwAdAAAAAAMABwAAAAABAAUAAAAAAgAFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHAAAAAADAAIAAAAACQAJAAAAAAMACQAAAAAMAAkAAAAACwAdAAAAAAIAHQAAAAAEAAcAAAAAAQAHAAAAAAIABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAADAACAAAAAAAACQAAAAAKAAkAAAAADAAdAAAAAAIAHQAAAAAFAB4AAAAAAwAHAAAAAAMABwAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAEACQAAAAANAAkAAAAAAwAdAAAAAAIAHQAAAAADAAkAAAAADQAeAAAAAAUABwAAAAABAAcAAAAAAQAHAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAABAB0AAAAAAgACAAAAAAcAAgAAAAABAB4AAAAAAQAeAAAAAAUAHgAAAAADAB4AAAAAAwAeAAAAAAMAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAQAdAAAAAAMAAgAAAAAEAAIAAAAADgACAAAAAAsAHgAAAAADAB4AAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAwAAgAAAAAGAB4AAAAAAQACAAAAAAwAHgAAAAAEAB4AAAAAAAAeAAAAAAQABQAAAAADAAUAAAAAAQAFAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAALACAAAAAAAAAgAAAAAAAAHgAAAAACAAIAAAAACwACAAAAAA0AIQAAAAAEAAYAAAAAAgAFAAAAAAMABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAADgAgAAAAAAAAIAAAAAABAB4AAAAABAACAAAAAA8AAgAAAAAJACEAAAAAAwAGAAAAAAMABQAAAAADAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAQAIAAAAAAAACAAAAAAAAACAAAAAAAAAgAAAAANACEAAAAAAgAhAAAAAAQABgAAAAABAAUAAAAAAgAFAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAOAAIAAAAABQACAAAAAA4AAgAAAAAIAAIAAAAACgAhAAAAAAQAIQAAAAAEAAYAAAAAAgAFAAAAAAEABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACQAgAAAAAAAAIAAAAAAAAAIAAAAADwACAAAAAAQAAgAAAAAHAB4AAAAAAQAGAAAAAAIABQAAAAAAAAUAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAUAIAAAAAABACAAAAAAAQACAAAAAAIAAgAAAAAOAAIAAAAADgAeAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAADAAIAAAAACQACAAAAAAwAAgAAAAAMAAIAAAAABAACAAAAAAwAHgAAAAAAAAYAAAAAAwAFAAAAAAMABQAAAAAAAA== version: 7 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAADAAIAAAAABwACAAAAAAwAAgAAAAAOAB4AAAAABAAeAAAAAAMAHgAAAAACAAYAAAAAAwAFAAAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAwACAAAAAAQAAgAAAAAGAAIAAAAADAACAAAAAAAAAgAAAAADAAIAAAAAAAAGAAAAAAIABQAAAAABAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAAAAgAAAAADAAIAAAAABgACAAAAAAkAAgAAAAAMAAIAAAAACwAeAAAAAAIABgAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAACAB0AAAAAAgACAAAAAAIAAgAAAAAOAAIAAAAABgACAAAAAAUAAgAAAAAMAAYAAAAAAwAGAAAAAAMABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAwAdAAAAAAUAAgAAAAABAAIAAAAAAQACAAAAAAkAAgAAAAADAAIAAAAAAQAeAAAAAAIAHgAAAAABAB4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAEAAgAAAAADABwAAAAABAACAAAAAA0AAgAAAAAFAB0AAAAAAgACAAAAAAIAHgAAAAADAB4AAAAABAAeAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAABAAIAAAAABQAhAAAAAAMAIQAAAAACAAIAAAAADQAdAAAAAAQAHAAAAAAEAB4AAAAAAAAeAAAAAAUAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABwAAAAABAACAAAAAAEAAgAAAAALAAIAAAAABwACAAAAAA0AHAAAAAADABwAAAAABQAeAAAAAAMAHgAAAAACAB4AAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAgAAgAAAAAHAAIAAAAAAgAcAAAAAAIAAgAAAAAPAAIAAAAADgAcAAAAAAAABgAAAAACAAQAAAAACQAEAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAALAAIAAAAADwACAAAAAAoAHQAAAAABAAIAAAAABwACAAAAAA0AHgAAAAADAAYAAAAAAwAFAAAAAAEABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAABgACAAAAAAAAAgAAAAAOAB0AAAAAAAACAAAAAAIAAgAAAAAJAB4AAAAAAgAGAAAAAAIABQAAAAAAAAUAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAcAAgAAAAANAAIAAAAABgAdAAAAAAMAHgAAAAAAAAIAAAAAAAAGAAAAAAMABgAAAAABAAUAAAAAAwAFAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAALAAIAAAAAAwACAAAAAAwAHgAAAAADAB4AAAAAAwACAAAAAAkABgAAAAACAAYAAAAAAgAFAAAAAAEABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAABwAeAAAAAAIAAgAAAAAFAB4AAAAAAwACAAAAAAYAAgAAAAAPAAYAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAoAAgAAAAAPAAIAAAAADAAeAAAAAAUAAgAAAAAIAAIAAAAABgAcAAAAAAQAHgAAAAAAAB4AAAAAAwAeAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAPAB0AAAAAAQACAAAAAAEAHQAAAAAEAAIAAAAABQAeAAAAAAIAHgAAAAAEAB4AAAAAAQAeAAAAAAQAHgAAAAAEAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAACAAIAAAAADAACAAAAAAAAAgAAAAAJAB4AAAAAAwAeAAAAAAAAHgAAAAADAAYAAAAAAAAFAAAAAAIABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAABAACAAAAAAUAAgAAAAAPAAIAAAAAAwACAAAAAAoAAgAAAAANAAIAAAAAAwAGAAAAAAMABQAAAAADAAUAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAAgAAAAAOAAIAAAAADgACAAAAAAAAAgAAAAACAAIAAAAADwAeAAAAAAIABgAAAAACAAUAAAAAAwAFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAAEAB0AAAAAAAACAAAAAAcAAgAAAAAGAAIAAAAABgACAAAAAAsAAgAAAAACAAYAAAAAAAAGAAAAAAMABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAABQAdAAAAAAAAAgAAAAALAAIAAAAAAgACAAAAAAMAAgAAAAAGAAIAAAAADgAeAAAAAAAAHgAAAAACAB4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAgAAgAAAAAHABwAAAAAAQACAAAAAAUAAgAAAAACAB0AAAAAAwACAAAAAA0AHgAAAAAEAB4AAAAAAQAeAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAIAAIAAAAABQAhAAAAAAQAIQAAAAAAAAIAAAAACAAdAAAAAAEAHAAAAAACAB4AAAAAAwAeAAAAAAIAHgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABwAAAAABAACAAAAAAgAAgAAAAAMAAIAAAAACgACAAAAAA8AHAAAAAAEABwAAAAAAwAeAAAAAAUAHgAAAAADAB4AAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAAgAAAAAHAAIAAAAACQAcAAAAAAAAAgAAAAAAAAIAAAAAAwAcAAAAAAIABgAAAAADAAQAAAAAAwAEAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAALAAIAAAAADgACAAAAAAsAHQAAAAABAAIAAAAAAgACAAAAAAMAHgAAAAACAAYAAAAAAAAFAAAAAAEABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAAAAACAAAAAAoAAgAAAAAHAB0AAAAABAACAAAAAAMAAgAAAAANAB4AAAAABAAGAAAAAAMABQAAAAADAAUAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAoAAgAAAAACAAIAAAAADgAdAAAAAAMAHgAAAAAAAAIAAAAACwAGAAAAAAIABgAAAAADAAUAAAAAAQAFAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAANAAIAAAAABQACAAAAAAwAHgAAAAADAB4AAAAABQACAAAAAAYABgAAAAABAAYAAAAAAQAFAAAAAAEABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAAAgAeAAAAAAUAAgAAAAALAB4AAAAAAwACAAAAAAsAAgAAAAAKAAYAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAAgAAAAAGAAIAAAAACwAeAAAAAAQAAgAAAAAEAAIAAAAAAQAcAAAAAAUAHgAAAAAFAB4AAAAABAAeAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAALAB0AAAAABQACAAAAAAEAHQAAAAAEAAIAAAAADwAeAAAAAAQAHgAAAAACAB4AAAAAAQAeAAAAAAMAHgAAAAAFAA== version: 7 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAPAB0AAAAAAwAdAAAAAAIAHQAAAAABACEAAAAAAwAeAAAAAAAAHgAAAAAFAAYAAAAAAwAGAAAAAAEABgAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACgAeAAAAAAMAAgAAAAAEAAIAAAAACAACAAAAAA0AAgAAAAAAAB4AAAAABAAGAAAAAAEABgAAAAADAAYAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAkAAgAAAAAOAB0AAAAAAwACAAAAAAkAAgAAAAACAB0AAAAABQAdAAAAAAQABgAAAAADAAYAAAAAAQAGAAAAAAMAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAABAAIAAAAADgACAAAAAA8AIQAAAAADAAIAAAAACAAeAAAAAAEAHQAAAAABAAYAAAAAAwAHAAAAAAMABQAAAAACAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB4AAAAAAQAdAAAAAAAAHQAAAAACACEAAAAAAAACAAAAAAEAAgAAAAAHAB0AAAAABQAGAAAAAAAABQAAAAADAAUAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAUAHgAAAAAAAB0AAAAABAACAAAAAAYAIQAAAAADAAIAAAAADQAcAAAAAAAABgAAAAADAAYAAAAAAAAFAAAAAAIAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAACAB4AAAAAAAAdAAAAAAIAAgAAAAAFAAIAAAAABwACAAAAAAsAHAAAAAAFAAYAAAAAAwAGAAAAAAIABgAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAABAACAAAAAA8AAgAAAAAKAAIAAAAADwACAAAAAAYAHAAAAAAAAB4AAAAAAAAeAAAAAAQABgAAAAACAAYAAAAAAAAhAAAAAAMAIQAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAhAAAAAAMAIQAAAAAAACEAAAAAAAAhAAAAAAIAIQAAAAAEACEAAAAAAwAhAAAAAAMAIQAAAAABACEAAAAAAAAhAAAAAAQAIQAAAAACACEAAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAIQAAAAABACEAAAAAAQAhAAAAAAMAIQAAAAAEACEAAAAABAAhAAAAAAEAIQAAAAABACEAAAAAAQAhAAAAAAAAIQAAAAADAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAwACAAAAAAQAHgAAAAADAAIAAAAABgAcAAAAAAEAAgAAAAAMAAIAAAAABAACAAAAAAsAAgAAAAAKAAIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAAgAAAAAGABwAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAUAHAAAAAACABwAAAAAAgAcAAAAAAIAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAOAAIAAAAAAgAcAAAAAAUAHAAAAAACABwAAAAABQAcAAAAAAUAHAAAAAAFABwAAAAAAwAcAAAAAAIAHAAAAAAEAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACwACAAAAAAkAHAAAAAAFABwAAAAAAwAcAAAAAAEAHAAAAAAAABwAAAAAAAAcAAAAAAEAHAAAAAABABwAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAEAAgAAAAANABwAAAAAAAAcAAAAAAIAHAAAAAAFABwAAAAAAwAcAAAAAAAAHAAAAAAEABwAAAAAAgAcAAAAAAMAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAABQAcAAAAAAAAHAAAAAAEABwAAAAAAQAcAAAAAAIAHAAAAAACABwAAAAABQAcAAAAAAEAHAAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAHQAAAAADACEAAAAAAAAeAAAAAAEAHgAAAAAFAAYAAAAAAQAGAAAAAAIABgAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAHAAIAAAAABwACAAAAAAcAAgAAAAAHAB4AAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAQACAAAAAAgAAgAAAAAFAB0AAAAABQAdAAAAAAIABgAAAAABAAYAAAAAAQAGAAAAAAIAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAQAIQAAAAAAAAIAAAAABwAeAAAAAAMAHQAAAAACAAYAAAAAAgAHAAAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAAEACEAAAAAAAACAAAAAAUAAgAAAAAJAB0AAAAAAgAGAAAAAAIABQAAAAABAAUAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAwACAAAAAA8AIQAAAAABAAIAAAAAAQAcAAAAAAMABgAAAAADAAYAAAAAAwAFAAAAAAMAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAACAB4AAAAAAQAdAAAAAAMAAgAAAAAEAAIAAAAACAACAAAAAAIAHAAAAAAEAAYAAAAAAAAGAAAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACQACAAAAAA0AAgAAAAAAAAIAAAAAAAACAAAAAAoAHAAAAAAEAB4AAAAAAQAeAAAAAAAABgAAAAADAAYAAAAAAgAhAAAAAAMAIQAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAhAAAAAAAAIQAAAAADACEAAAAABAAhAAAAAAEAIQAAAAACACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAwAhAAAAAAEAIQAAAAAAACEAAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAIQAAAAADACEAAAAAAwAhAAAAAAIAIQAAAAADACEAAAAAAwAhAAAAAAMAIQAAAAACACEAAAAAAwAhAAAAAAMAIQAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAAACAAAAAAgAHgAAAAACAAIAAAAADgAcAAAAAAEAAgAAAAALAAIAAAAACAACAAAAAAkAAgAAAAAEAAIAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAUAAgAAAAAAABwAAAAABQAcAAAAAAAAHAAAAAABABwAAAAABQAcAAAAAAAAHAAAAAADABwAAAAAAwAcAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAJAAIAAAAADgAcAAAAAAMAHAAAAAAEABwAAAAAAgAcAAAAAAEAHAAAAAAEABwAAAAAAgAcAAAAAAAAHAAAAAAFAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACAACAAAAAAsAHAAAAAAAABwAAAAAAgAcAAAAAAQAHAAAAAADABwAAAAAAAAcAAAAAAUAHAAAAAAEABwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAAgAAAAAAABwAAAAABAAcAAAAAAUAHAAAAAAAABwAAAAABQAcAAAAAAMAHAAAAAAEABwAAAAAAQAcAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAFAAIAAAAADwAcAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAUAHAAAAAABABwAAAAAAgAcAAAAAAAAHAAAAAACAA== version: 7 1,0: ind: 1,0 - tiles: BQAAAAADAAcAAAAAAAAGAAAAAAEAAgAAAAANAAIAAAAABwAhAAAAAAIAHgAAAAAFAAMAAAAAAAAFAAAAAAEADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAEABwAAAAAAwAcAAAAAAEAHAAAAAAFAAUAAAAAAwAFAAAAAAMABgAAAAABAAIAAAAADgACAAAAAAcAIQAAAAAAAB4AAAAAAgADAAAAAAIADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAABQADAAAAAAAAAwAAAAADAAMAAAAABAAHAAAAAAEABgAAAAADAAYAAAAAAgACAAAAAAAAIQAAAAADACEAAAAAAQAdAAAAAAQAAwAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAgABwAAAAACAAUAAAAAAwAGAAAAAAMAAgAAAAAKACEAAAAAAwACAAAAAAQAAgAAAAAKAAMAAAAABwADAAAAAAAAAwAAAAACAAUAAAAAAgANAAAAAAAADQAAAAAAAAMAAAAAAQADAAAAAAAAAwAAAAAHAAYAAAAAAgAGAAAAAAEABgAAAAACAB4AAAAABAAhAAAAAAAAAgAAAAAHAAIAAAAACAADAAAAAAAAAwAAAAACAAMAAAAAAwAFAAAAAAMADQAAAAAAAA0AAAAAAAADAAAAAAIAAwAAAAAGAAMAAAAABAAGAAAAAAIABgAAAAABAAYAAAAAAwAeAAAAAAMAIQAAAAAEAAIAAAAADgACAAAAAAkAAwAAAAAEAAMAAAAAAgADAAAAAAIAAwAAAAAGAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAMABQAAAAAAAAYAAAAAAwAGAAAAAAEAHgAAAAACACEAAAAAAwAhAAAAAAEAHQAAAAAFAAMAAAAAAAADAAAAAAgAAwAAAAAGAAMAAAAABgADAAAAAAMAAwAAAAAFAAMAAAAABwADAAAAAAEAAwAAAAAAAAYAAAAAAQACAAAAAAIAAgAAAAAMAAIAAAAABQAhAAAAAAEAIQAAAAACAB0AAAAAAwACAAAAAAcAAgAAAAAAAAMAAAAAAQACAAAAAA8AAgAAAAADAB4AAAAABQAeAAAAAAMAAgAAAAACAAIAAAAABAAhAAAAAAIAIQAAAAABACEAAAAAAgAhAAAAAAMAIQAAAAADACEAAAAAAgAhAAAAAAAAIQAAAAABACEAAAAAAgAhAAAAAAEAIQAAAAACACEAAAAAAQAhAAAAAAQAIQAAAAAEACEAAAAAAwACAAAAAA4AIQAAAAACACEAAAAAAQAhAAAAAAEAIQAAAAAAACEAAAAAAQAhAAAAAAMAIQAAAAAEACEAAAAABAACAAAAAAQAIQAAAAAAACEAAAAAAQAhAAAAAAQAIQAAAAABACEAAAAABAAhAAAAAAAAIQAAAAADAB0AAAAAAgACAAAAAAwABgAAAAACAAIAAAAAAQAeAAAAAAMAAgAAAAANAAIAAAAADwACAAAAAAMAHgAAAAADAB0AAAAABAAeAAAAAAEAHgAAAAAFAAIAAAAAAAACAAAAAA4AAgAAAAAIAB4AAAAABQAeAAAAAAEABgAAAAACAAcAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAAAGAAAAAAAABgAAAAACAB4AAAAAAwADAAAAAAUAAwAAAAABAAMAAAAABgADAAAAAAQAAwAAAAAFAAMAAAAABAADAAAAAAgAHgAAAAAEAAYAAAAAAgAHAAAAAAAABgAAAAACAAUAAAAAAQAGAAAAAAIABwAAAAACAAUAAAAAAgAdAAAAAAIAAwAAAAAHAA0AAAAAAAANAAAAAAAAAwAAAAAGAAMAAAAAAgADAAAAAAEAAwAAAAADAB0AAAAAAgAGAAAAAAIABQAAAAABAAUAAAAAAwAGAAAAAAMABwAAAAAAAAcAAAAAAgAFAAAAAAAAHQAAAAAAAAMAAAAABgANAAAAAAAADQAAAAAAAAMAAAAABQADAAAAAAUAAwAAAAAEAAMAAAAABgAdAAAAAAAABgAAAAADAAYAAAAAAAAGAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAABwAAAAABAADAAAAAAgADQAAAAAAAA0AAAAAAAADAAAAAAEAAwAAAAAFAAMAAAAAAwADAAAAAAUAHQAAAAAFAAYAAAAAAQAGAAAAAAIABgAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAADAAYAAAAAAwAcAAAAAAAAAwAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA== + tiles: BQAAAAAAAAcAAAAAAQAGAAAAAAMAAgAAAAANAAIAAAAACAAhAAAAAAMAHgAAAAACAAMAAAAABwAFAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAADABwAAAAABAAcAAAAAAMAHAAAAAADAAUAAAAAAQAFAAAAAAAABgAAAAACAAIAAAAABAACAAAAAAoAIQAAAAACAB4AAAAAAgADAAAAAAYADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAAFAAMAAAAABgAHAAAAAAMABgAAAAACAAYAAAAAAAACAAAAAAgAIQAAAAABACEAAAAAAQAdAAAAAAEAAwAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAADAAMAAAAABgADAAAAAAIABwAAAAADAAUAAAAAAwAGAAAAAAAAAgAAAAALACEAAAAAAAACAAAAAA4AAgAAAAAIAAMAAAAAAgADAAAAAAQAAwAAAAADAAUAAAAAAwANAAAAAAAADQAAAAAAAAMAAAAAAwADAAAAAAYAAwAAAAACAAYAAAAAAAAGAAAAAAEABgAAAAAAAB4AAAAAAQAhAAAAAAMAAgAAAAAIAAIAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAACAAFAAAAAAEADQAAAAAAAA0AAAAAAAADAAAAAAgAAwAAAAAAAAMAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAQAeAAAAAAUAIQAAAAAAAAIAAAAAAgACAAAAAAQAAwAAAAAHAAMAAAAAAgADAAAAAAEAAwAAAAAHAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAEABQAAAAABAAYAAAAAAAAGAAAAAAIAHgAAAAAEACEAAAAABAAhAAAAAAIAHQAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAACAAMAAAAACAADAAAAAAUAAwAAAAAGAAMAAAAAAwADAAAAAAIAAwAAAAAHAAYAAAAAAgACAAAAAAsAAgAAAAAAAAIAAAAAAQAhAAAAAAAAIQAAAAAEAB0AAAAABAACAAAAAAIAAgAAAAAJAAMAAAAABQACAAAAAAMAAgAAAAALAB4AAAAABQAeAAAAAAQAAgAAAAAMAAIAAAAADwAhAAAAAAEAIQAAAAAAACEAAAAAAAAhAAAAAAIAIQAAAAAEACEAAAAABAAhAAAAAAIAIQAAAAAAACEAAAAAAQAhAAAAAAMAIQAAAAAAACEAAAAAAgAhAAAAAAMAIQAAAAACACEAAAAAAgACAAAAAAcAIQAAAAABACEAAAAAAQAhAAAAAAMAIQAAAAAEACEAAAAABAAhAAAAAAEAIQAAAAAEACEAAAAAAQACAAAAAAUAIQAAAAAEACEAAAAAAQAhAAAAAAIAIQAAAAADACEAAAAABAAhAAAAAAIAIQAAAAABAB0AAAAAAgACAAAAAAMABgAAAAADAAIAAAAACwAeAAAAAAQAAgAAAAACAAIAAAAABgACAAAAAAYAHgAAAAAFAB0AAAAAAgAeAAAAAAAAHgAAAAADAAIAAAAADgACAAAAAAkAAgAAAAAJAB4AAAAAAAAeAAAAAAAABgAAAAADAAcAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAACAB4AAAAABQADAAAAAAMAAwAAAAAGAAMAAAAACAADAAAAAAMAAwAAAAAEAAMAAAAABQADAAAAAAcAHgAAAAACAAYAAAAAAwAHAAAAAAAABgAAAAAAAAUAAAAAAgAGAAAAAAAABwAAAAABAAUAAAAAAQAdAAAAAAAAAwAAAAAEAA0AAAAAAAANAAAAAAAAAwAAAAAFAAMAAAAAAgADAAAAAAcAAwAAAAAIAB0AAAAAAgAGAAAAAAIABQAAAAADAAUAAAAAAwAGAAAAAAMABwAAAAACAAcAAAAAAAAFAAAAAAMAHQAAAAAFAAMAAAAABAANAAAAAAAADQAAAAAAAAMAAAAAAwADAAAAAAgAAwAAAAABAAMAAAAABQAdAAAAAAUABgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAADAAcAAAAAAgAHAAAAAAIABgAAAAAAABwAAAAAAwADAAAAAAcADQAAAAAAAA0AAAAAAAADAAAAAAgAAwAAAAAEAAMAAAAAAAADAAAAAAUAHQAAAAAFAAYAAAAAAAAGAAAAAAIABgAAAAACAAUAAAAAAAAFAAAAAAAABQAAAAACAAYAAAAAAQAcAAAAAAIAAwAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA== version: 7 1,-1: ind: 1,-1 - tiles: EAAAAAAAABAAAAAAAQADAAAAAAUAAwAAAAADAB4AAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAAADAAAAAAgAAwAAAAABAAMAAAAABAAeAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAeAAAAAAEAHgAAAAADAB4AAAAAAgAeAAAAAAUAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAADAAIAAAAADAACAAAAAAoAAgAAAAAHACEAAAAABAAhAAAAAAMAAgAAAAAOAB4AAAAAAAAeAAAAAAIAHgAAAAAFAB4AAAAABAAeAAAAAAUAHgAAAAAFAB4AAAAAAgANAAAAAAAADQAAAAAAAAIAAAAAAQACAAAAAAkAIQAAAAADACEAAAAAAgAhAAAAAAEAIQAAAAAEAB4AAAAAAgAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwAeAAAAAAAADQAAAAAAAA0AAAAAAAAhAAAAAAAAIQAAAAACACEAAAAAAQAhAAAAAAMAIQAAAAADAAIAAAAACgAeAAAAAAEABgAAAAAAAAUAAAAAAgAGAAAAAAMABgAAAAACAAUAAAAAAQAGAAAAAAIAHgAAAAAFAA0AAAAAAAANAAAAAAAAHgAAAAAFAB4AAAAAAgAeAAAAAAEAHgAAAAACACEAAAAAAwACAAAAAAYABgAAAAACAAYAAAAAAAAFAAAAAAEABgAAAAADAAYAAAAAAAAHAAAAAAMABgAAAAACAB4AAAAABQANAAAAAAAADQAAAAAAAAIAAAAAAwACAAAAAA8AHgAAAAAFAB4AAAAAAwAhAAAAAAIAAgAAAAANAAYAAAAAAgAGAAAAAAAABQAAAAAAAAUAAAAAAwAHAAAAAAIABwAAAAADAAYAAAAAAgAeAAAAAAEADQAAAAAAAA0AAAAAAAACAAAAAAYAHgAAAAAAAAIAAAAADwAeAAAAAAAAIQAAAAACAAIAAAAABwACAAAAAAEABgAAAAADAAUAAAAAAwAFAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAEAHgAAAAAEAA0AAAAAAAANAAAAAAAAAgAAAAAMAAIAAAAACwACAAAAAAEAHgAAAAAEACEAAAAAAAAhAAAAAAMAHgAAAAACAAcAAAAAAAAGAAAAAAIABQAAAAABAAYAAAAAAAADAAAAAAEAAwAAAAABAB4AAAAAAgANAAAAAAAADQAAAAAAAAIAAAAABAACAAAAAA0AHgAAAAAAAB4AAAAAAAAhAAAAAAEAIQAAAAACAB0AAAAAAwAHAAAAAAAABwAAAAABAAcAAAAAAwAGAAAAAAAAHgAAAAABABwAAAAABAAeAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAA4AAgAAAAAFAAIAAAAAAgAeAAAAAAAAIQAAAAAAACEAAAAAAAAeAAAAAAQABgAAAAADAAcAAAAAAQAHAAAAAAMABgAAAAAAAAYAAAAAAQAeAAAAAAMAHAAAAAAFAA0AAAAAAAANAAAAAAAAAgAAAAAIAAIAAAAADQACAAAAAAIAAgAAAAAJAAIAAAAACQAhAAAAAAAAHgAAAAABAAYAAAAAAgAGAAAAAAIABgAAAAABAAYAAAAAAAAeAAAAAAUAHgAAAAADAB4AAAAAAQANAAAAAAAADQAAAAAAAAIAAAAAAAACAAAAAAkAAgAAAAAPAB4AAAAAAAACAAAAAAUAIQAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAADAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAABQAeAAAAAAAAHAAAAAAAABwAAAAAAAACAAAAAAEAAgAAAAAPAB4AAAAAAQAeAAAAAAEAAgAAAAADACEAAAAAAAAeAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAAGAA0AAAAAAAADAAAAAAEAHgAAAAAFABwAAAAABQAcAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAEAAgAAAAABACEAAAAAAwAhAAAAAAAAHgAAAAAEAAMAAAAABwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAIAB4AAAAAAwAcAAAAAAAAHAAAAAABAA== + tiles: EAAAAAADABAAAAAAAgADAAAAAAQAAwAAAAAFAB4AAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAABAADAAAAAAUAAwAAAAADAAMAAAAACAAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAeAAAAAAMAHgAAAAAEAB4AAAAABQAeAAAAAAAAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAHAAIAAAAADQACAAAAAAAAAgAAAAAPACEAAAAAAAAhAAAAAAMAAgAAAAANAB4AAAAAAgAeAAAAAAMAHgAAAAACAB4AAAAABAAeAAAAAAAAHgAAAAABAB4AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACQACAAAAAAkAIQAAAAABACEAAAAAAAAhAAAAAAIAIQAAAAAAAB4AAAAAAQAGAAAAAAEABgAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAgAeAAAAAAIADQAAAAAAAA0AAAAAAAAhAAAAAAAAIQAAAAACACEAAAAAAgAhAAAAAAIAIQAAAAAAAAIAAAAACAAeAAAAAAUABgAAAAABAAUAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAwAGAAAAAAIAHgAAAAAAAA0AAAAAAAANAAAAAAAAHgAAAAAEAB4AAAAABQAeAAAAAAQAHgAAAAAFACEAAAAAAgACAAAAAAMABgAAAAACAAYAAAAAAgAFAAAAAAAABgAAAAACAAYAAAAAAQAHAAAAAAEABgAAAAADAB4AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAAAAACAAAAAAYAHgAAAAADAB4AAAAAAQAhAAAAAAEAAgAAAAABAAYAAAAAAwAGAAAAAAAABQAAAAADAAUAAAAAAAAHAAAAAAEABwAAAAABAAYAAAAAAgAeAAAAAAMADQAAAAAAAA0AAAAAAAACAAAAAAMAHgAAAAAEAAIAAAAABAAeAAAAAAEAIQAAAAABAAIAAAAADgACAAAAAAoABgAAAAACAAUAAAAAAAAFAAAAAAAABgAAAAADAAYAAAAAAAAGAAAAAAEAHgAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAOAAIAAAAAAAACAAAAAA0AHgAAAAABACEAAAAAAgAhAAAAAAEAHgAAAAAAAAcAAAAAAQAGAAAAAAMABQAAAAAAAAYAAAAAAwADAAAAAAAAAwAAAAACAB4AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAADQACAAAAAA4AHgAAAAAEAB4AAAAABQAhAAAAAAEAIQAAAAACAB0AAAAABQAHAAAAAAIABwAAAAADAAcAAAAAAwAGAAAAAAAAHgAAAAAFABwAAAAAAgAeAAAAAAIADQAAAAAAAA0AAAAAAAACAAAAAAUAAgAAAAAPAAIAAAAAAQAeAAAAAAMAIQAAAAABACEAAAAAAgAeAAAAAAIABgAAAAAAAAcAAAAAAwAHAAAAAAMABgAAAAABAAYAAAAAAgAeAAAAAAUAHAAAAAADAA0AAAAAAAANAAAAAAAAAgAAAAAMAAIAAAAABgACAAAAAAsAAgAAAAALAAIAAAAACgAhAAAAAAQAHgAAAAAEAAYAAAAAAgAGAAAAAAAABgAAAAACAAYAAAAAAwAeAAAAAAMAHgAAAAAAAB4AAAAABQANAAAAAAAADQAAAAAAAAIAAAAAAgACAAAAAAsAAgAAAAAMAB4AAAAAAAACAAAAAAYAIQAAAAAEAB4AAAAABAAeAAAAAAUAHgAAAAADAB4AAAAAAwAeAAAAAAQAHgAAAAAEAB4AAAAAAQAeAAAAAAAAHAAAAAAFABwAAAAABQACAAAAAA0AAgAAAAACAB4AAAAAAQAeAAAAAAMAAgAAAAAAACEAAAAABAAeAAAAAAEAAwAAAAABAAMAAAAABQADAAAAAAIAAwAAAAAGAA0AAAAAAAADAAAAAAMAHgAAAAAEABwAAAAAAwAcAAAAAAQABgAAAAACAAYAAAAAAwAGAAAAAAAAAgAAAAANACEAAAAAAgAhAAAAAAQAHgAAAAACAAMAAAAABgANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAAB4AAAAABAAcAAAAAAUAHAAAAAADAA== version: 7 1,-2: ind: 1,-2 - tiles: AwAAAAAEABEAAAAAAAADAAAAAAMADQAAAAAAAB4AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAABwADAAAAAAgAAwAAAAAAAA0AAAAAAAAeAAAAAAUADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAABACEAAAAABAAhAAAAAAIAHgAAAAAFAB4AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAABAACAAAAAA0AIQAAAAAAAAIAAAAAAAAeAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAUAAgAAAAAGAAIAAAAAAQACAAAAAAkAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAEAB4AAAAABAAeAAAAAAQAHgAAAAAEAB4AAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAABQADAAAAAAEAAwAAAAACAAMAAAAACAAeAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAABQADAAAAAAYAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAFAAMAAAAABgADAAAAAAQAAwAAAAAIAB4AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAQADAAAAAAUAAwAAAAAGAAMAAAAABwAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAAADAAAAAAcAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAABwAQAAAAAAMAAwAAAAABAB4AAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAABAADAAAAAAMAAwAAAAAIAAMAAAAACAAeAAAAAAUADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAIAAwAAAAADAAMAAAAABQADAAAAAAAAHgAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAADABAAAAAAAQAQAAAAAAAAAwAAAAACAB4AAAAABAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAAAAAJAAAAAAkACQAAAAACAAkAAAAAAAANAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAQAGAAAAAAAABgAAAAABAB4AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAgAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAwAGAAAAAAEAHgAAAAACAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAMABgAAAAADAB4AAAAABQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAACAAYAAAAAAwAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAHgAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADAB4AAAAABQAeAAAAAAIAHgAAAAADAB4AAAAABQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAABAADAAAAAAcAAwAAAAAAAAMAAAAABQAeAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAMAAwAAAAAEAAMAAAAABQADAAAAAAAAHgAAAAACAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAAMAAAAABgADAAAAAAIAAwAAAAABAB4AAAAABAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAABwADAAAAAAIAAwAAAAADAAMAAAAABQAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAwADAAAAAAEAHgAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAAMAAAAAAAAQAAAAAAEAAwAAAAACAB4AAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAACAADAAAAAAQAAwAAAAABAAMAAAAAAwAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAAwAAAAAHAAMAAAAABAADAAAAAAAAHgAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAABABAAAAAAAwAQAAAAAAIAAwAAAAADAB4AAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAAAQAJAAAAAAcACQAAAAAEAAkAAAAAAAANAAAAAAAAAAAAAAAAAA== version: 7 1,1: ind: 1,1 - tiles: HQAAAAABAAYAAAAAAwAGAAAAAAAABgAAAAACAAcAAAAAAQAFAAAAAAAABQAAAAABAAYAAAAAAwAcAAAAAAUAAwAAAAACAAMAAAAABAADAAAAAAQAAwAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAB4AAAAAAgAGAAAAAAMABwAAAAAAAAcAAAAAAwAHAAAAAAMABQAAAAADAAYAAAAAAAAGAAAAAAEAHAAAAAAFAAMAAAAAAQADAAAAAAcAAwAAAAACAAMAAAAABQADAAAAAAQAAwAAAAAGAAMAAAAABQAcAAAAAAUABgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAACAAYAAAAAAgAGAAAAAAIABgAAAAABABwAAAAABQADAAAAAAQAAwAAAAAFAAMAAAAABQADAAAAAAYAAwAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAAAAAYAAAAAAgAHAAAAAAMABwAAAAABAAcAAAAAAQAHAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAEADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB4AAAAABAAGAAAAAAAABgAAAAABAAYAAAAAAwAGAAAAAAAABgAAAAADAB4AAAAAAAAeAAAAAAUACQAAAAAKAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAAAHgAAAAABAB4AAAAAAwACAAAAAAsAAgAAAAAKAB4AAAAABAAeAAAAAAMAHgAAAAADAAkAAAAABAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAAFAB0AAAAAAwACAAAAAAsAAgAAAAALAAIAAAAABAACAAAAAA4AHgAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAACAAAAAAAAAAAJAAAAAAEACQAAAAAIAB0AAAAAAwACAAAAAAwAAgAAAAADAAIAAAAACAACAAAAAAoAAgAAAAADAB4AAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAADAAYAAAAAAwAGAAAAAAIABgAAAAABAAcAAAAAAwAFAAAAAAMABQAAAAADAAYAAAAAAgAcAAAAAAAAAwAAAAADAAMAAAAACAADAAAAAAAAAwAAAAAEAA0AAAAAAAANAAAAAAAADQAAAAAAAB4AAAAAAAAGAAAAAAMABwAAAAADAAcAAAAAAwAHAAAAAAIABQAAAAACAAYAAAAAAwAGAAAAAAMAHAAAAAAAAAMAAAAABQADAAAAAAEAAwAAAAADAAMAAAAACAADAAAAAAQAAwAAAAAIAAMAAAAAAQAcAAAAAAMABgAAAAADAAcAAAAAAwAHAAAAAAMABwAAAAACAAYAAAAAAAAGAAAAAAIABgAAAAADABwAAAAABQADAAAAAAEAAwAAAAAIAAMAAAAAAAADAAAAAAMAAwAAAAAAAB4AAAAAAwAeAAAAAAUAHgAAAAACAAYAAAAAAAAHAAAAAAMABwAAAAADAAcAAAAAAgAHAAAAAAMAHgAAAAAAAB4AAAAABAAeAAAAAAUADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB4AAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAADAB4AAAAAAgAeAAAAAAEACQAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAHgAAAAAFAB4AAAAAAAACAAAAAAQAAgAAAAAAAB4AAAAABQAeAAAAAAMAHgAAAAAEAAkAAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHQAAAAAFAB0AAAAAAAACAAAAAA8AAgAAAAAOAAIAAAAACAACAAAAAAgAHgAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAAMAAAAAAAAAAAJAAAAAAcACQAAAAAFAB0AAAAABQACAAAAAAoAAgAAAAAIAAIAAAAACwACAAAAAA4AAgAAAAADAB4AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: BgAAAAABAAcAAAAAAwAFAAAAAAIABQAAAAADAAUAAAAAAwAFAAAAAAMABQAAAAABAB4AAAAAAwAGAAAAAAMABwAAAAABAAcAAAAAAwAHAAAAAAIABwAAAAACAAUAAAAAAQAGAAAAAAAAHQAAAAADAAcAAAAAAgAHAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAEABQAAAAADAAUAAAAAAQAeAAAAAAQABgAAAAABAAYAAAAAAgAGAAAAAAIABwAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAABAB0AAAAAAgAHAAAAAAMABwAAAAABAAcAAAAAAQAFAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAEAHgAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAABQAdAAAAAAUAHgAAAAADAB4AAAAAAwAFAAAAAAMABQAAAAACAAUAAAAAAwAFAAAAAAAABQAAAAACABwAAAAAAwAeAAAAAAQAHgAAAAAAAB4AAAAABAAeAAAAAAMAHgAAAAAEAB0AAAAAAQAeAAAAAAUAHgAAAAAEAB4AAAAABAAeAAAAAAAABQAAAAACAAUAAAAAAgAFAAAAAAMABQAAAAADAAUAAAAAAgAdAAAAAAUABgAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAYAAAAAAAALAAAAAAAABAAAAAAFAAYAAAAAAAAcAAAAAAMAHAAAAAAFAAUAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAQAFAAAAAAAAHQAAAAACAAYAAAAAAgALAAAAAAAACwAAAAAAAAwAAAAAAAALAAAAAAAABQAAAAACAAUAAAAAAwAGAAAAAAEAHAAAAAABABwAAAAAAAAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAEABQAAAAAAAB0AAAAABQAGAAAAAAIACwAAAAAAAAwAAAAAAAAMAAAAAAAABgAAAAACAAUAAAAAAgALAAAAAAAABgAAAAADABwAAAAAAgAcAAAAAAAAHAAAAAAFAB4AAAAAAgAdAAAAAAEAHgAAAAABAAkAAAAABAAJAAAAAAIABgAAAAACAAUAAAAAAwALAAAAAAAABgAAAAABAAUAAAAAAAALAAAAAAAACwAAAAAAAAYAAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADAAAAAAAAA0AAAAAAAANAAAAAAAACwAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BgAAAAABAAcAAAAAAgAFAAAAAAEABQAAAAABAAUAAAAAAAAFAAAAAAMABQAAAAAAAB4AAAAAAQAGAAAAAAMABwAAAAADAAcAAAAAAAAHAAAAAAIABwAAAAACAAUAAAAAAQAGAAAAAAIAHQAAAAADAAcAAAAAAQAHAAAAAAMABQAAAAADAAUAAAAAAQAFAAAAAAAABQAAAAABAAUAAAAAAAAeAAAAAAMABgAAAAAAAAYAAAAAAQAGAAAAAAEABwAAAAACAAYAAAAAAwAGAAAAAAAABgAAAAABAB0AAAAAAAAHAAAAAAEABwAAAAAAAAcAAAAAAgAFAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAAAHgAAAAABAB4AAAAABQAeAAAAAAEAHgAAAAAAAB0AAAAABQAdAAAAAAIAHQAAAAAEAB0AAAAAAAAdAAAAAAEAHgAAAAAFAB4AAAAAAwAFAAAAAAIABQAAAAABAAUAAAAAAwAFAAAAAAAABQAAAAAAABwAAAAABQAeAAAAAAIAHgAAAAADAB4AAAAAAwAeAAAAAAUAHgAAAAAFAB0AAAAAAwAeAAAAAAQAHgAAAAAAAB4AAAAAAAAeAAAAAAAABQAAAAABAAUAAAAAAwAFAAAAAAAABQAAAAABAAUAAAAAAgAdAAAAAAIABgAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAYAAAAAAAALAAAAAAAABAAAAAAJAAYAAAAAAwAcAAAAAAUAHAAAAAADAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAgAFAAAAAAEAHQAAAAAEAAYAAAAAAgALAAAAAAAACwAAAAAAAAwAAAAAAAALAAAAAAAABQAAAAAAAAUAAAAAAwAGAAAAAAEAHAAAAAABABwAAAAAAgAFAAAAAAMABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAABAB0AAAAAAgAGAAAAAAIACwAAAAAAAAwAAAAAAAAMAAAAAAAABgAAAAAAAAUAAAAAAQALAAAAAAAABgAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAABAB4AAAAABAAdAAAAAAEAHgAAAAAAAAkAAAAACQAJAAAAAAUABgAAAAACAAUAAAAAAQALAAAAAAAABgAAAAADAAUAAAAAAgALAAAAAAAACwAAAAAAAAYAAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADAAAAAAAAA0AAAAAAAANAAAAAAAACwAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,1: ind: -1,1 - tiles: HAAAAAADABwAAAAAAQAcAAAAAAIAHAAAAAAAAB0AAAAAAQAeAAAAAAUAHQAAAAADAB0AAAAAAgAcAAAAAAEABgAAAAADAAUAAAAAAwAFAAAAAAAABQAAAAABAAcAAAAAAQAFAAAAAAAABgAAAAAAABwAAAAAAgAcAAAAAAAAHAAAAAABABwAAAAAAgAcAAAAAAUAHgAAAAAFAB0AAAAABAAdAAAAAAUAHAAAAAAAAAYAAAAAAAAFAAAAAAIABQAAAAACAAUAAAAAAQAHAAAAAAIABQAAAAABAAUAAAAAAAAcAAAAAAMAHAAAAAADABwAAAAAAgAcAAAAAAAAHAAAAAAEAB0AAAAAAQAdAAAAAAMAHAAAAAADABwAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAgAGAAAAAAAABwAAAAADAAcAAAAAAgAHAAAAAAIAHAAAAAAAABwAAAAABAAcAAAAAAQAHAAAAAAFABwAAAAAAQAeAAAAAAUAHQAAAAAAABwAAAAAAQAcAAAAAAMABgAAAAACAAYAAAAAAgAFAAAAAAMABQAAAAABAAYAAAAAAAAeAAAAAAIAHgAAAAAAAAIAAAAACwAcAAAAAAAAHAAAAAACAAIAAAAADwACAAAAAA0AAgAAAAALABwAAAAAAQAcAAAAAAQAHAAAAAADAAYAAAAAAwAGAAAAAAMABQAAAAACAAUAAAAAAgAGAAAAAAEAHgAAAAAFAB4AAAAAAAACAAAAAAAAAgAAAAAOAAkAAAAACgACAAAAAAkAAgAAAAAMAAIAAAAAAQACAAAAAA0AHQAAAAACABwAAAAAAAAGAAAAAAEABgAAAAADAAUAAAAAAAAFAAAAAAAABgAAAAABAB4AAAAAAgAeAAAAAAEACQAAAAAIAAkAAAAABQAJAAAAAAkAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAANAAIAAAAADwAcAAAAAAIABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAADAAYAAAAAAwAeAAAAAAIAHAAAAAACAAkAAAAADAAJAAAAAAAACQAAAAALAAkAAAAACwAJAAAAAAYAAgAAAAADAAIAAAAADQACAAAAAAkAAgAAAAACAAIAAAAAAAAdAAAAAAEAAgAAAAANAAkAAAAAAAAeAAAAAAMAHgAAAAAFABwAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HAAAAAAEABwAAAAABQAcAAAAAAUAHAAAAAACAB0AAAAAAwAeAAAAAAUAHQAAAAAAAB0AAAAAAwAcAAAAAAIABgAAAAADAAUAAAAAAgAFAAAAAAIABQAAAAABAAcAAAAAAwAFAAAAAAMABgAAAAAAABwAAAAABAAcAAAAAAUAHAAAAAADABwAAAAABQAcAAAAAAEAHgAAAAADAB0AAAAAAgAdAAAAAAMAHAAAAAACAAYAAAAAAgAFAAAAAAAABQAAAAACAAUAAAAAAQAHAAAAAAEABQAAAAADAAUAAAAAAQAcAAAAAAEAHAAAAAAFABwAAAAAAAAcAAAAAAEAHAAAAAAAAB0AAAAAAQAdAAAAAAMAHAAAAAABABwAAAAAAQAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAIABwAAAAACAAcAAAAAAQAHAAAAAAIAHAAAAAAAABwAAAAABAAcAAAAAAIAHAAAAAAAABwAAAAAAgAeAAAAAAQAHQAAAAACABwAAAAAAwAcAAAAAAEABgAAAAABAAYAAAAAAAAFAAAAAAIABQAAAAADAAYAAAAAAQAeAAAAAAIAHgAAAAAAAAIAAAAABAAcAAAAAAAAHAAAAAAEAAIAAAAAAAACAAAAAAAAAgAAAAACABwAAAAAAQAcAAAAAAQAHAAAAAADAAYAAAAAAQAGAAAAAAMABQAAAAAAAAUAAAAAAAAGAAAAAAAAHgAAAAADAB4AAAAAAAACAAAAAAgAAgAAAAANAAkAAAAACwACAAAAAA4AAgAAAAALAAIAAAAAAgACAAAAAAEAHQAAAAABABwAAAAAAAAGAAAAAAAABgAAAAADAAUAAAAAAgAFAAAAAAIABgAAAAAAAB4AAAAABQAeAAAAAAEACQAAAAAKAAkAAAAAAAAJAAAAAA0AAgAAAAAKAAIAAAAAAwACAAAAAAsAAgAAAAAJAAIAAAAABAAcAAAAAAMABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAwAeAAAAAAEAHAAAAAAAAAkAAAAAAwAJAAAAAAwACQAAAAADAAkAAAAABAAJAAAAAAcAAgAAAAADAAIAAAAADwACAAAAAAEAAgAAAAAGAAIAAAAACQAdAAAAAAQAAgAAAAAFAAkAAAAAAgAeAAAAAAAAHgAAAAAAABwAAAAABQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAADAAIAAAAABwAcAAAAAAMAHAAAAAADABwAAAAABQAcAAAAAAQAHAAAAAADABwAAAAABAAcAAAAAAUAHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAAAwAdAAAAAAEAHAAAAAACABwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAwAcAAAAAAMAHAAAAAACABwAAAAAAwAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAA4AAgAAAAAIABwAAAAABQAcAAAAAAQAHAAAAAACABwAAAAAAAAcAAAAAAEAHAAAAAABABwAAAAABQAcAAAAAAUAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAALAAIAAAAACgAcAAAAAAMAHAAAAAABABwAAAAAAAAcAAAAAAMAHAAAAAADABwAAAAAAwAcAAAAAAUAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAABQAJAAAAAAkAHAAAAAAEABwAAAAAAwAcAAAAAAAAHAAAAAAFAAIAAAAAAAACAAAAAAgAAgAAAAAMAAIAAAAADAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAJAAAAAA0ACQAAAAANAAkAAAAADAAJAAAAAAsACQAAAAAEAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAABQACAAAAAAwAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAAKAAkAAAAADAAJAAAAAAoACQAAAAAIAAkAAAAABAAJAAAAAAQACQAAAAACAAkAAAAACwAJAAAAAA0ACQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAABgAJAAAAAAcACQAAAAAMAAkAAAAABwAJAAAAAAwACQAAAAALAAkAAAAADQAJAAAAAAcACQAAAAAAAAkAAAAADAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAKAAIAAAAADQAcAAAAAAEAHAAAAAADABwAAAAAAAAcAAAAAAUAHAAAAAACABwAAAAABAAcAAAAAAMAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAAAgAdAAAAAAIAHAAAAAADABwAAAAAAAAcAAAAAAUAHAAAAAAAABwAAAAABAAcAAAAAAIAHAAAAAAAABwAAAAAAQAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAgAAgAAAAACABwAAAAABAAcAAAAAAUAHAAAAAAFABwAAAAABAAcAAAAAAUAHAAAAAAAABwAAAAAAQAcAAAAAAEAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAMAAIAAAAACwAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAEAHAAAAAACABwAAAAAAwAcAAAAAAUAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAABAAJAAAAAAEAHAAAAAABABwAAAAAAgAcAAAAAAEAHAAAAAABAAIAAAAABQACAAAAAAcAAgAAAAADAAIAAAAACgAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAJAAAAAAoACQAAAAAJAAkAAAAAAgAJAAAAAA0ACQAAAAACAAIAAAAADgACAAAAAAYAAgAAAAALAAIAAAAABwACAAAAAAIAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAANAAkAAAAAAAAJAAAAAAMACQAAAAANAAkAAAAACwAJAAAAAAQACQAAAAANAAkAAAAABgAJAAAAAA0ACQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAABAAJAAAAAAsACQAAAAANAAkAAAAABQAJAAAAAAUACQAAAAAKAAkAAAAACQAJAAAAAA0ACQAAAAAAAAkAAAAACQAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB4AAAAABQAeAAAAAAQAHgAAAAAFAB0AAAAAAwAdAAAAAAMAAgAAAAAIAAIAAAAACAAJAAAAAAkAHgAAAAABAB4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAeAAAAAAUAHgAAAAABAB0AAAAAAQAdAAAAAAQAHQAAAAADAAIAAAAAAQACAAAAAAsABwAAAAACAAcAAAAAAAAHAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHgAAAAADABwAAAAABQAdAAAAAAEAAgAAAAAGAAIAAAAADwAJAAAAAAMAAgAAAAAEAAcAAAAAAwAGAAAAAAMABgAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB4AAAAABQAeAAAAAAAAHgAAAAACAB0AAAAABAAdAAAAAAQAAgAAAAANAAIAAAAADAAJAAAAAAgAHgAAAAAEAB4AAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAeAAAAAAIAHgAAAAAEAB0AAAAAAQAdAAAAAAIAHQAAAAABAAIAAAAAAgACAAAAAA0ABwAAAAADAAcAAAAAAgAHAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHgAAAAABABwAAAAABQAdAAAAAAMAAgAAAAAIAAIAAAAABgAJAAAAAAQAAgAAAAAJAAcAAAAAAwAGAAAAAAIABgAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: DQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAwAIQAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAHAAMAAAAAAgANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAgAQAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAABwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAUAAwAAAAAHAA0AAAAAAAANAAAAAAAAAgAAAAAJAAIAAAAABgAdAAAAAAIAHgAAAAAAAAIAAAAAAAACAAAAAAgAAgAAAAALAAIAAAAADgACAAAAAAkAAgAAAAAEAAIAAAAABAACAAAAAAsAAgAAAAAKAAIAAAAAAQANAAAAAAAADQAAAAAAAAIAAAAAAQACAAAAAAYAHQAAAAADAB4AAAAAAAAcAAAAAAIAHAAAAAAAABwAAAAAAQACAAAAAAcAAgAAAAAMAAIAAAAADQACAAAAAAgAAgAAAAABAAIAAAAAAQACAAAAAAQADQAAAAAAAA0AAAAAAAAAAAAAAAAAAgAAAAABAB0AAAAABAAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAUAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAABQACAAAAAAUAAgAAAAANAA0AAAAAAAANAAAAAAAAAgAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAFAB0AAAAAAQAdAAAAAAAAHgAAAAAAAB4AAAAABAAeAAAAAAIAHgAAAAAEAB0AAAAAAwAdAAAAAAEAHAAAAAADACEAAAAAAAANAAAAAAAADQAAAAAAAAIAAAAAAwAeAAAAAAAAHgAAAAAFAB0AAAAAAwAdAAAAAAQAHQAAAAAAAB4AAAAAAwAeAAAAAAUAHgAAAAAEAB4AAAAAAwAcAAAAAAAAHQAAAAAEABwAAAAAAAAhAAAAAAIADQAAAAAAAA0AAAAAAAACAAAAAA0AHgAAAAAFAAIAAAAAAAACAAAAAAgAHQAAAAAEAB0AAAAABQAdAAAAAAUAHgAAAAAEAB4AAAAABAAeAAAAAAEAHQAAAAABAB0AAAAAAgAcAAAAAAIAIQAAAAABAA0AAAAAAAANAAAAAAAAAgAAAAAIAAIAAAAAAgACAAAAAAUAAgAAAAAAAAIAAAAADQAdAAAAAAUAHQAAAAAAAB0AAAAAAwAdAAAAAAQAHQAAAAAEAB0AAAAAAgAdAAAAAAAAHgAAAAAAACEAAAAAAAANAAAAAAAADQAAAAAAAAIAAAAADgACAAAAAAQAAgAAAAAAAAIAAAAABgACAAAAAA8AHQAAAAAAAB0AAAAABAAeAAAAAAMAHgAAAAAFAB4AAAAABQAeAAAAAAUAHAAAAAAEAB4AAAAAAwAhAAAAAAEADQAAAAAAAA0AAAAAAAACAAAAAAwAAgAAAAAGAAYAAAAAAwAGAAAAAAAABgAAAAABAAYAAAAAAQAGAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAgAeAAAAAAIAIQAAAAAEAB4AAAAAAgAeAAAAAAQACQAAAAAEAAIAAAAAAwAFAAAAAAMABQAAAAAAAAUAAAAAAQAGAAAAAAAABgAAAAAAAAUAAAAAAwAFAAAAAAEABgAAAAACAAUAAAAAAQAGAAAAAAIAHgAAAAABACEAAAAABAAHAAAAAAAABwAAAAACAAIAAAAACQACAAAAAAwABgAAAAAAAAUAAAAAAAAFAAAAAAIABgAAAAAAAAYAAAAAAwAFAAAAAAAABgAAAAABAAUAAAAAAwAFAAAAAAMABgAAAAADAB4AAAAAAgAhAAAAAAEABgAAAAABAAUAAAAAAgACAAAAAAsAAgAAAAADAAYAAAAAAAAGAAAAAAAABgAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAADAAQAAAAABAAGAAAAAAAABwAAAAAAAAYAAAAAAAAeAAAAAAIAIQAAAAAEAA== + tiles: DQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAwAIQAAAAAEAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAFAAMAAAAACAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAQAQAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAAAAwAAAAAFAA0AAAAAAAANAAAAAAAAAgAAAAAOAAIAAAAACAAdAAAAAAEAHgAAAAADAAIAAAAACgANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAABQANAAAAAAAADQAAAAAAAAIAAAAADwACAAAAAAMAHQAAAAACAB4AAAAAAAAcAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAIAAAAACQACAAAAAAQADQAAAAAAAA0AAAAAAAAAAAAAAAAAAgAAAAANAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAEAHQAAAAAEAB0AAAAAAQACAAAAAAcAAgAAAAABAA0AAAAAAAANAAAAAAAAAgAAAAAEAB0AAAAAAQAdAAAAAAQAHQAAAAACAB0AAAAABQAdAAAAAAEAHgAAAAABAB4AAAAABAAeAAAAAAMAHgAAAAACAB0AAAAABQAdAAAAAAQAHAAAAAAEACEAAAAAAAANAAAAAAAADQAAAAAAAAIAAAAABwAeAAAAAAQAHgAAAAABAB0AAAAABQAdAAAAAAIAHQAAAAABAB4AAAAAAgAeAAAAAAEAHgAAAAAFAB4AAAAAAAAcAAAAAAQAHQAAAAAAABwAAAAAAAAhAAAAAAEADQAAAAAAAA0AAAAAAAACAAAAAAIAHgAAAAABAAIAAAAACQACAAAAAA8AHQAAAAAAAB0AAAAAAwAdAAAAAAIAHgAAAAAFAB4AAAAAAQAeAAAAAAEAHQAAAAAAAB0AAAAABQAcAAAAAAQAIQAAAAACAA0AAAAAAAANAAAAAAAAAgAAAAAKAAIAAAAACwACAAAAAAwAAgAAAAAMAAIAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAHgAAAAAEACEAAAAAAQANAAAAAAAADQAAAAAAAAIAAAAADAACAAAAAAgAAgAAAAAMAAIAAAAAAwACAAAAAAEAHQAAAAAEAB0AAAAAAwAeAAAAAAEAHgAAAAAAAB4AAAAAAgAeAAAAAAQAHAAAAAAEAB4AAAAABQAhAAAAAAEADQAAAAAAAA0AAAAAAAACAAAAAAQAAgAAAAAGAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAQAGAAAAAAIABgAAAAABAAYAAAAAAQAGAAAAAAAABgAAAAABAAYAAAAAAAAeAAAAAAQAIQAAAAAAAB4AAAAAAgAeAAAAAAAACQAAAAAGAAIAAAAABAAFAAAAAAIABQAAAAADAAUAAAAAAAAGAAAAAAIABgAAAAAAAAUAAAAAAQAFAAAAAAAABgAAAAACAAUAAAAAAAAGAAAAAAAAHgAAAAABACEAAAAAAgAHAAAAAAAABwAAAAACAAIAAAAACwACAAAAAAcABgAAAAADAAUAAAAAAwAFAAAAAAEABgAAAAABAAYAAAAAAwAFAAAAAAIABgAAAAACAAUAAAAAAwAFAAAAAAMABgAAAAACAB4AAAAAAAAhAAAAAAIABgAAAAADAAUAAAAAAwACAAAAAA8AAgAAAAAHAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAAAFAAAAAAIABQAAAAABAAQAAAAABwAGAAAAAAMABwAAAAABAAYAAAAAAwAeAAAAAAQAIQAAAAAEAA== version: 7 0,-3: ind: 0,-3 - tiles: IQAAAAABAAIAAAAABAANAAAAAAAADQAAAAAAAAIAAAAACwANAAAAAAAADQAAAAAAAAIAAAAABwANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAMAAAAABQADAAAAAAcADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAEADQAAAAAAAA0AAAAAAAADAAAAAAIADQAAAAAAAA0AAAAAAAAQAAAAAAIAEAAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAHAAMAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAABgACAAAAAAgAAgAAAAAGAAIAAAAAAgANAAAAAAAADQAAAAAAACEAAAAAAAACAAAAAA4AHAAAAAAAABwAAAAAAwAcAAAAAAEAHAAAAAAFABwAAAAAAAAcAAAAAAQAHAAAAAAFAB4AAAAAAQAdAAAAAAEAHQAAAAAFAB0AAAAABAAdAAAAAAIAHgAAAAAAAB4AAAAAAQAhAAAAAAMAAgAAAAAPAB4AAAAAAwAcAAAAAAAAHAAAAAAEAB0AAAAAAgAdAAAAAAQAHQAAAAABAB0AAAAAAQAdAAAAAAIAHAAAAAACABwAAAAAAAAcAAAAAAQAHQAAAAAEAB4AAAAABQAeAAAAAAMAIQAAAAADABwAAAAABQAeAAAAAAUAHgAAAAAFAB0AAAAAAwAdAAAAAAQAHQAAAAADAB4AAAAAAwAdAAAAAAQAHQAAAAAEABwAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAEAHQAAAAABACEAAAAABAAcAAAAAAEAHAAAAAADAB4AAAAAAwAdAAAAAAIAHQAAAAAFAB4AAAAAAgAeAAAAAAQAHQAAAAABABwAAAAAAgAcAAAAAAUAHAAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB4AAAAABAAhAAAAAAIAHAAAAAACABwAAAAABQAcAAAAAAAAHgAAAAAAAB4AAAAAAQAcAAAAAAQAHQAAAAAEAB0AAAAAAwAcAAAAAAQAHQAAAAACAB0AAAAAAAAdAAAAAAIAHAAAAAABAB4AAAAAAQAeAAAAAAIAIQAAAAAAABwAAAAABQAdAAAAAAIAHAAAAAABAB4AAAAABAAdAAAAAAUAHQAAAAAAAB0AAAAABAAdAAAAAAQAHQAAAAABAB0AAAAAAQAdAAAAAAEAHgAAAAACABwAAAAAAQAeAAAAAAUAHgAAAAAEACEAAAAAAgAcAAAAAAUAHAAAAAACABwAAAAAAgAeAAAAAAUAHQAAAAAFAB4AAAAAAAAeAAAAAAIAHgAAAAACAB0AAAAAAgAcAAAAAAMAHAAAAAAAABwAAAAAAAAcAAAAAAUAHgAAAAAAAB0AAAAABAAhAAAAAAMAHAAAAAACABwAAAAABAAeAAAAAAAAAwAAAAAEAAMAAAAAAQAQAAAAAAMAHQAAAAAAAB0AAAAAAQADAAAAAAIAAwAAAAABABwAAAAAAgAcAAAAAAUAHgAAAAAAAB4AAAAABQAdAAAAAAEAHAAAAAABABwAAAAAAgAcAAAAAAMAHgAAAAADAAMAAAAABAADAAAAAAAAAwAAAAABAAMAAAAABAADAAAAAAIAAwAAAAABAAMAAAAABQAcAAAAAAAAHAAAAAAFAB4AAAAAAAAdAAAAAAMAHQAAAAABABwAAAAAAwAeAAAAAAIAHgAAAAABAB4AAAAAAAAQAAAAAAMAAwAAAAAEABAAAAAAAwAQAAAAAAAAAwAAAAAGAAMAAAAABAAcAAAAAAQAHAAAAAABAB0AAAAABAAeAAAAAAEAHQAAAAAAAB0AAAAABAACAAAAAAsAAgAAAAAIABwAAAAAAgAcAAAAAAMAHAAAAAAEAAMAAAAAAwAQAAAAAAAAEQAAAAAAAAMAAAAAAwADAAAAAAIAHAAAAAAFABwAAAAAAwAdAAAAAAMAHgAAAAAEAB4AAAAABQANAAAAAAAAAgAAAAAMAAIAAAAACQAdAAAAAAUAHAAAAAAFABwAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAABgAQAAAAAAIAAwAAAAABABAAAAAAAgAdAAAAAAQAHQAAAAAEAB4AAAAABAAeAAAAAAQADQAAAAAAAA== + tiles: IQAAAAAEAAIAAAAACgANAAAAAAAADQAAAAAAAAIAAAAABwANAAAAAAAADQAAAAAAAAIAAAAAAQANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAgADAAAAAAgADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAYADQAAAAAAAA0AAAAAAAADAAAAAAMADQAAAAAAAA0AAAAAAAAQAAAAAAEAEAAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAwAAAAAAAAMAAAAABAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAgACAAAAAAkAAgAAAAANAAIAAAAADgANAAAAAAAADQAAAAAAACEAAAAABAACAAAAAAcAHAAAAAAAABwAAAAABQAcAAAAAAUAHAAAAAADABwAAAAABAAcAAAAAAAAHAAAAAAFAB4AAAAAAgAdAAAAAAQAHQAAAAADAB0AAAAABAAdAAAAAAQAHgAAAAAEAB4AAAAAAwAhAAAAAAEAAgAAAAALAB4AAAAAAgAGAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAEABgAAAAACAAYAAAAAAAAGAAAAAAAAIQAAAAACABwAAAAABAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAEABgAAAAAAAAYAAAAAAwAGAAAAAAIABQAAAAAAAAUAAAAAAQAFAAAAAAIABQAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAAAACEAAAAAAQAcAAAAAAAABgAAAAABAAYAAAAAAQAGAAAAAAEABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAAAAAUAAAAAAwAGAAAAAAMABgAAAAACAAUAAAAAAwAGAAAAAAEABgAAAAAAAAYAAAAAAAAhAAAAAAQAHAAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAAAAAYAAAAAAwAQAAAAAAMAEAAAAAADABAAAAAAAwAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAMAIQAAAAAEABwAAAAABAAdAAAAAAEABgAAAAABAAYAAAAAAQAGAAAAAAEABgAAAAAAAAYAAAAAAgAGAAAAAAIAEAAAAAAAABEAAAAAAAAQAAAAAAEABgAAAAACAAYAAAAAAQAGAAAAAAEABgAAAAAAACEAAAAAAAAcAAAAAAUAHAAAAAACAAYAAAAAAgAFAAAAAAEABQAAAAACAAUAAAAAAAAGAAAAAAEABgAAAAACABAAAAAAAQAQAAAAAAAAEAAAAAABAAUAAAAAAwAGAAAAAAMABgAAAAACAAYAAAAAAAAhAAAAAAQAHAAAAAACABwAAAAAAwAGAAAAAAEABQAAAAAAAAcAAAAAAgAFAAAAAAMABwAAAAADAAUAAAAAAgAGAAAAAAEABgAAAAABAAYAAAAAAwAFAAAAAAIABgAAAAAAAAYAAAAAAAAGAAAAAAIAHAAAAAABABwAAAAAAwAcAAAAAAAABgAAAAAAAAYAAAAAAwAHAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAAAAAUAAAAAAwAFAAAAAAEABwAAAAABAAUAAAAAAAAHAAAAAAAABgAAAAAAABwAAAAABAAeAAAAAAQAHgAAAAABAAYAAAAAAAAHAAAAAAEABgAAAAABAAYAAAAAAwAQAAAAAAMAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAwAQAAAAAAAABwAAAAABAAYAAAAAAQACAAAAAAAAAgAAAAAIABwAAAAAAAAGAAAAAAMABQAAAAABAAUAAAAAAwAQAAAAAAMAEQAAAAAAAAMAAAAABQADAAAAAAcAAwAAAAAEAAMAAAAAAwADAAAAAAQAEQAAAAAAABAAAAAAAAAGAAAAAAIAAgAAAAAKAAIAAAAADgAdAAAAAAUABgAAAAADAAYAAAAAAAAGAAAAAAIAAwAAAAAFAAMAAAAABQADAAAAAAgAEQAAAAAAAAMAAAAABAARAAAAAAAAAwAAAAACAAMAAAAAAQADAAAAAAgABgAAAAACAA== version: 7 1,-3: ind: 1,-3 - tiles: AAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAABQAeAAAAAAQAHgAAAAAFAB4AAAAAAQAeAAAAAAUADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAQAHQAAAAAAAB0AAAAAAAAeAAAAAAQAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAFAB4AAAAAAwAdAAAAAAUAHgAAAAABAB4AAAAABQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAgAdAAAAAAAAHQAAAAAEAB4AAAAAAgAeAAAAAAEADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAABQAdAAAAAAQAHgAAAAACAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADABwAAAAAAQAdAAAAAAIAHQAAAAAAAB4AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAcAAAAAAMAHAAAAAADAB0AAAAAAwAdAAAAAAIADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAQAHAAAAAABABwAAAAABAAdAAAAAAMAHQAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEABwAAAAAAwAcAAAAAAEAHQAAAAACAB0AAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAcAAAAAAMAHAAAAAABAB0AAAAABAAdAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAHAAMAAAAABgADAAAAAAMADQAAAAAAAB4AAAAAAgADAAAAAAgADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAQAeAAAAAAQAHgAAAAABAB4AAAAABQAeAAAAAAIADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAMABgAAAAADAAYAAAAAAAAGAAAAAAEAHgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACAAYAAAAAAgAGAAAAAAEABgAAAAACAB4AAAAABQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAwAGAAAAAAMABgAAAAACAAYAAAAAAgAeAAAAAAIADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABQAAAAADAAUAAAAAAgAGAAAAAAAAHgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAgAHAAAAAAAABgAAAAACAB4AAAAAAwANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAAAAAYAAAAAAgAdAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAADAAYAAAAAAQAGAAAAAAAAHQAAAAAEAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABAAcAAAAAAwAHAAAAAAEABgAAAAABAB0AAAAABAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAQAHAAAAAAMABwAAAAAAAAYAAAAAAQAdAAAAAAEADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAIABgAAAAACAAYAAAAAAAAGAAAAAAAAHgAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAYAAAAAAQAGAAAAAAEABgAAAAABAB4AAAAAAAADAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAIAAIAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAEAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAEAAIAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAMAA== version: 7 2,-2: ind: 2,-2 @@ -176,27 +176,27 @@ entities: version: 7 2,-1: ind: 2,-1 - tiles: DQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAABgAJAAAAAAEACQAAAAAJAAkAAAAACgANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAgACQAAAAAFAAkAAAAADAAcAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABAAkAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: DQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAACQAJAAAAAAsACQAAAAALAAkAAAAACQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAIACQAAAAAFAAkAAAAAAgAcAAAAAAEADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAEAAkAAAAACAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,0: ind: 2,0 - tiles: CQAAAAAJAAkAAAAACQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAACgAJAAAAAAgADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAcACQAAAAAJAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGAAkAAAAADQANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAABgAJAAAAAAUAHAAAAAAFABwAAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAgAcAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAAHAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACABwAAAAAAQAcAAAAAAEAHAAAAAACAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAcAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAwACAAAAAAcAAgAAAAAEABwAAAAAAQADAAAAAAQAEAAAAAADAAMAAAAABQAeAAAAAAIAHAAAAAAAABwAAAAABQAcAAAAAAMAHAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAoAAgAAAAALAAIAAAAAAwACAAAAAAYAAwAAAAAFABAAAAAAAwADAAAAAAcAIQAAAAACACEAAAAAAwACAAAAAAUAAgAAAAAIAAIAAAAAAwACAAAAAAsAAgAAAAAOAAIAAAAAAQACAAAAAA0AIQAAAAABACEAAAAAAwAhAAAAAAIAAgAAAAAMAAMAAAAAAQAQAAAAAAAAAwAAAAAAAAIAAAAACgACAAAAAA8AAgAAAAAIAAIAAAAAAwACAAAAAAMAAgAAAAAMAAIAAAAAAgACAAAAAAcAAgAAAAAEAB4AAAAAAAAeAAAAAAQAHgAAAAAFAAIAAAAACQADAAAAAAgAEAAAAAACAAMAAAAABAAeAAAAAAIAHAAAAAACABwAAAAAAQAcAAAAAAUAHAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAQAAgAAAAAEAAIAAAAACQAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAGAAIAAAAACwACAAAAAAAAHgAAAAABAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAAHAB4AAAAAAQANAAAAAAAADQAAAAAAAA0AAAAAAAAJAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAMAAAAAAgAeAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAcAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CQAAAAAIAAkAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAgAJAAAAAAsADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAsACQAAAAALAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABAAkAAAAABgANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAADAAJAAAAAAkAHAAAAAABABwAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAADABwAAAAAAAAcAAAAAAMADQAAAAAAAA0AAAAAAAANAAAAAAAAHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAFABwAAAAAAgAcAAAAAAMAHAAAAAAFAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAcAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAADAACAAAAAA4AAgAAAAADABwAAAAABAADAAAAAAEAEAAAAAABAAMAAAAAAAAeAAAAAAEAHAAAAAAAABwAAAAABQAcAAAAAAEAHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAoAAgAAAAAKAAIAAAAADwACAAAAAA4AAwAAAAAHABAAAAAAAwADAAAAAAMAIQAAAAADACEAAAAAAQACAAAAAA8AAgAAAAAKAAIAAAAACAACAAAAAAMAAgAAAAAJAAIAAAAAAAACAAAAAAEAIQAAAAACACEAAAAAAAAhAAAAAAQAAgAAAAACAAMAAAAAAgAQAAAAAAAAAwAAAAAGAAIAAAAACwACAAAAAAIAAgAAAAAKAAIAAAAAAgACAAAAAA8AAgAAAAAJAAIAAAAAAgACAAAAAAEAAgAAAAAIAB4AAAAAAAAeAAAAAAMAHgAAAAAEAAIAAAAABwADAAAAAAQAEAAAAAABAAMAAAAABwAeAAAAAAIAHAAAAAAAABwAAAAAAAAcAAAAAAEAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAQAAgAAAAAKAAIAAAAADwAeAAAAAAQADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAJAAIAAAAABQACAAAAAAEAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAACAADAAAAAAgAAwAAAAACAB4AAAAAAgANAAAAAAAADQAAAAAAAA0AAAAAAAAJAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAAMAAAAABQAeAAAAAAUADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAADAAAAAAQAHgAAAAAEAA0AAAAAAAANAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAA0AAgAAAAADAAIAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAALAAIAAAAABgACAAAAAAwAAgAAAAAGAAIAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAkAAgAAAAABAAIAAAAAAQACAAAAAA4AAgAAAAAHAAIAAAAABwACAAAAAAMAAgAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAADAACAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAIAAgAAAAAJAAIAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAKAAIAAAAAAwACAAAAAAwAAgAAAAAEAAIAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAEAAgAAAAAIAAIAAAAAAwACAAAAAAUAAgAAAAANAAIAAAAABgACAAAAAAUAAgAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAJAAIAAAAADwACAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: DQAAAAAAAA0AAAAAAAADAAAAAAcAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAADAAAAAAUAAwAAAAAFAB4AAAAAAwANAAAAAAAADQAAAAAAAAkAAAAADQAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAACAB4AAAAABAAeAAAAAAMADQAAAAAAAA0AAAAAAAAJAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAACAAkAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAAAAAJAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAABwAJAAAAAA0AAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: DQAAAAAAAA0AAAAAAAADAAAAAAQAHgAAAAADAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAADAAAAAAUAAwAAAAAAAB4AAAAABQANAAAAAAAADQAAAAAAAAkAAAAACQAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAQAHgAAAAAAAB4AAAAAAAAeAAAAAAMADQAAAAAAAA0AAAAAAAAJAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAACQAAAAAJAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAAkAAAAAAAAJAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAwAJAAAAAAYAAAAAAAAAAA0AAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAEAAAAAAAAAAACAAAAAAYAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAAIAAAAABQACAAAAAAsAAgAAAAAAAAIAAAAABwACAAAAAA4AAgAAAAAHAAIAAAAABAACAAAAAAUAAgAAAAALAAIAAAAAAQAAAAAAAAAAAgAAAAAFAAIAAAAAAQAhAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAPAAIAAAAACQACAAAAAAMAAgAAAAANAAIAAAAABwAhAAAAAAQAIQAAAAAAACEAAAAAAAAhAAAAAAIAIQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAwAAgAAAAACAAIAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAEAAAAAAAAAAACAAAAAAcAAgAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAFAAIAAAAABwACAAAAAAYAAgAAAAADAAIAAAAABAACAAAAAAcAAgAAAAACAAIAAAAACwACAAAAAA4AAgAAAAAEAAIAAAAAAQAAAAAAAAAAAgAAAAALAAIAAAAACwAhAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAAIAAAAADgACAAAAAAMAAgAAAAADAAIAAAAABQAhAAAAAAQAIQAAAAADACEAAAAAAwAhAAAAAAQAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAUAAgAAAAAGAAIAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Physics bodyStatus: InAir @@ -282,20 +282,6 @@ entities: id: CP14BrickTileGrayScaleStoneLineW decals: 208: 29,3 - - node: - color: '#FFFFFFFF' - id: CP14BrickTileStoneLineN - decals: - 193: -11,-20 - 194: -8,-20 - 197: -7,-20 - 198: -6,-20 - 199: -5,-20 - 200: -4,-20 - 202: -2,-20 - 203: -3,-20 - 204: -10,-20 - 205: -9,-20 - type: GasTileOverlay - type: RadiationGridResistance - proto: CP14AlchemySolutionCleaner @@ -355,13 +341,6 @@ entities: - type: Transform pos: 18.374733,13.573778 parent: 1 -- proto: CP14BaseLightCrossbow - entities: - - uid: 36 - components: - - type: Transform - pos: -1.346062,-16.465773 - parent: 1 - proto: CP14BaseSharpeningStone entities: - uid: 8846 @@ -374,21 +353,6 @@ entities: - type: Transform pos: 5.6529894,12.80634 parent: 1 - - uid: 15355 - components: - - type: Transform - pos: 35.433823,1.7474552 - parent: 1 - - uid: 15356 - components: - - type: Transform - pos: 35.636284,1.6237668 - parent: 1 - - uid: 15357 - components: - - type: Transform - pos: 35.377583,1.4551013 - parent: 1 - proto: CP14BaseSharpeningStoneStructure entities: - uid: 60 @@ -403,19 +367,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 1 - - uid: 15352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 -- proto: CP14BaseShield - entities: - - uid: 62 - components: - - type: Transform - pos: -3.4060829,-11.330256 - parent: 1 - proto: CP14BaseTombstone entities: - uid: 69 @@ -485,11 +436,6 @@ entities: - type: Transform pos: -8.50448,1.1592681 parent: 1 - - uid: 14307 - components: - - type: Transform - pos: -4.993689,-18.36692 - parent: 1 - uid: 14311 components: - type: Transform @@ -1442,26 +1388,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-7.5 parent: 1 -- proto: CP14BowCombat - entities: - - uid: 7136 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7137 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7138 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - proto: CP14BowlWooden entities: - uid: 8733 @@ -1480,6 +1406,16 @@ entities: enabled: False - proto: CP14BowlWoodenRandom entities: + - uid: 968 + components: + - type: Transform + pos: -10.610914,-17.299307 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: -7.4536805,-16.963991 + parent: 1 - uid: 9055 components: - type: Transform @@ -1563,11 +1499,6 @@ entities: - type: Transform pos: -7.6333275,-23.65467 parent: 1 - - uid: 9685 - components: - - type: Transform - pos: -6.4670506,-17.461117 - parent: 1 - uid: 9687 components: - type: Transform @@ -1592,6 +1523,21 @@ entities: parent: 1 - proto: CP14CandleIgnited entities: + - uid: 1010 + components: + - type: Transform + pos: -6.8315883,-14.2745695 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: -10.262226,-15.387763 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: -7.688169,-17.285053 + parent: 1 - uid: 7134 components: - type: Transform @@ -1612,11 +1558,6 @@ entities: - type: Transform pos: -10.186622,-23.238628 parent: 1 - - uid: 9686 - components: - - type: Transform - pos: -5.268656,-14.371141 - parent: 1 - uid: 9688 components: - type: Transform @@ -1634,6 +1575,36 @@ entities: parent: 1 - proto: CP14CarpetBlue entities: + - uid: 1902 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 1 + - uid: 1903 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 1 + - uid: 1904 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 1 + - uid: 1905 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 1 + - uid: 1906 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 1 + - uid: 1907 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 1 - uid: 7182 components: - type: Transform @@ -1762,6 +1733,102 @@ entities: parent: 1 - proto: CP14CarpetCyan entities: + - uid: 1848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1 + - uid: 1849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 1 + - uid: 1850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-28.5 + parent: 1 + - uid: 1851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 1 + - uid: 1852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 1 + - uid: 1853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 1 + - uid: 1868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 1 + - uid: 1869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-39.5 + parent: 1 + - uid: 1870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 1 + - uid: 1871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 1 + - uid: 1872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-36.5 + parent: 1 + - uid: 1873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 1 + - uid: 1874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 1 + - uid: 1875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 1 + - uid: 1876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-37.5 + parent: 1 + - uid: 1877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-36.5 + parent: 1 - uid: 7432 components: - type: Transform @@ -1834,6 +1901,68 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,17.5 parent: 1 +- proto: CP14CarpetGreen + entities: + - uid: 1854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 1 + - uid: 1855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 1 + - uid: 1856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-38.5 + parent: 1 + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 1 + - uid: 1862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-36.5 + parent: 1 + - uid: 1863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 1 + - uid: 1864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 1 + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-38.5 + parent: 1 + - uid: 1866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 1 + - uid: 1867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-36.5 + parent: 1 - proto: CP14CarpetOrange entities: - uid: 31 @@ -2234,10 +2363,23 @@ entities: parent: 1 - proto: CP14CashConverter entities: - - uid: 7311 + - uid: 1970 components: - type: Transform - pos: -6.5,-14.5 + rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 1 + - uid: 1985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-40.5 + parent: 1 + - uid: 1986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 parent: 1 - uid: 7312 components: @@ -2253,6 +2395,57 @@ entities: parent: 1 - proto: CP14ChairWooden entities: + - uid: 776 + components: + - type: Transform + pos: -10.464689,-14.409502 + parent: 1 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.475938,-18.288813 + parent: 1 + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.428331,-17.169415 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: -10.475938,-16.478468 + parent: 1 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.427261,-18.293852 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: -7.5509877,-15.404047 + parent: 1 + - uid: 1585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.561316,-40.523415 + parent: 1 + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.617537,-38.510025 + parent: 1 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.595049,-36.47414 + parent: 1 - uid: 4469 components: - type: Transform @@ -2335,11 +2528,6 @@ entities: - type: Transform pos: -16.828373,-5.764228 parent: 1 - - uid: 7338 - components: - - type: Transform - pos: -5.3478475,-17.328669 - parent: 1 - uid: 7343 components: - type: Transform @@ -2503,76 +2691,101 @@ entities: - type: Transform pos: -17.41455,-27.582659 parent: 1 -- proto: CP14ClothingBeltQuiver +- proto: CP14ClothingBackBackpackCargo entities: - - uid: 7438 + - uid: 1965 components: - type: Transform - pos: -1.7395523,-16.53324 + pos: 15.639481,-30.05152 parent: 1 - - uid: 7439 + - uid: 1975 components: - type: Transform - pos: -1.5383277,-16.33084 + pos: 15.3470335,-29.92783 parent: 1 -- proto: CP14ClothingOuterClothingFish +- proto: CP14ClothingBackBackpackT1 entities: - - uid: 7468 + - uid: 1959 components: - type: Transform - parent: 7467 - - type: Physics - canCollide: False - - uid: 7469 + pos: 15.335785,-29.421833 + parent: 1 + - uid: 1961 components: - type: Transform - parent: 7467 - - type: Physics - canCollide: False - - uid: 7470 + pos: 15.684473,-29.612988 + parent: 1 +- proto: CP14ClothingHeadBowlerGolden + entities: + - uid: 1901 components: - type: Transform - parent: 7467 - - type: Physics - canCollide: False - - uid: 7471 - components: - - type: Transform - parent: 7467 - - type: Physics - canCollide: False - - uid: 7472 - components: - - type: Transform - parent: 7467 - - type: Physics - canCollide: False - - uid: 7473 - components: - - type: Transform - parent: 7467 - - type: Physics - canCollide: False - - uid: 7474 - components: - - type: Transform - parent: 7467 - - type: Physics - canCollide: False - - uid: 7475 - components: - - type: Transform - parent: 7467 + parent: 1900 - type: Physics canCollide: False + - type: InsideEntityStorage - proto: CP14CopperCoin1 entities: + - uid: 916 + components: + - type: Transform + pos: -27.718323,4.458851 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: -27.414627,4.616272 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: -27.68458,4.7624493 + parent: 1 - uid: 7630 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.240423,14.579448 parent: 1 + - uid: 8943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.294449,-16.128548 + parent: 1 + - uid: 8944 + components: + - type: Transform + pos: 26.266441,14.61865 + parent: 1 + - uid: 8945 + components: + - type: Transform + pos: 26.232697,14.528695 + parent: 1 + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.453182,1.9324975 + parent: 1 + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.58823,1.9156308 + parent: 1 + - uid: 8968 + components: + - type: Transform + pos: 26.378922,13.8540325 + parent: 1 + - uid: 8969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.76106,1.578301 + parent: 1 - proto: CP14CrateCoffin entities: - uid: 7487 @@ -2639,56 +2852,6 @@ entities: - type: Transform pos: 15.227463,0.65288126 parent: 1 -- proto: CP14CrossboltIron - entities: - - uid: 7502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.7061898,-15.397556 - parent: 1 - - uid: 7503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.728699,-15.599956 - parent: 1 - - uid: 7546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.751207,-15.22889 - parent: 1 - - uid: 7547 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.7061898,-15.465022 - parent: 1 - - uid: 7548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.773715,-15.127691 - parent: 1 - - uid: 7549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.7399523,-15.296357 - parent: 1 - - uid: 7550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.751207,-15.734887 - parent: 1 - - uid: 7551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.751207,-15.858576 - parent: 1 - proto: CP14CrystalQuartz entities: - uid: 7553 @@ -2718,6 +2881,13 @@ entities: - type: Transform pos: 10.65302,5.011636 parent: 1 +- proto: CP14CrystalShardQuartzAir + entities: + - uid: 1966 + components: + - type: Transform + pos: 15.33951,-30.602493 + parent: 1 - proto: CP14CurtainsBlue entities: - uid: 6219 @@ -2755,12 +2925,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 1 - - uid: 7589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 1 - uid: 7591 components: - type: Transform @@ -2807,12 +2971,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,2.5 parent: 1 - - uid: 7609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 1 - uid: 7610 components: - type: Transform @@ -2832,6 +2990,73 @@ entities: parent: 1 - proto: CP14CurtainsRedOpened entities: + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + - uid: 971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1 + - uid: 979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 1 - uid: 7611 components: - type: Transform @@ -3222,19 +3447,11 @@ entities: parent: 1 - proto: CP14DemiplaneLinkCrystal entities: - - uid: 9228 + - uid: 1825 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 1 -- proto: CP14DemiplaneRiftCore - entities: - - uid: 797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-33.5 + pos: 10.5,-38.5 parent: 1 - proto: CP14DirtBlock1 entities: @@ -3315,21 +3532,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,7.5 parent: 1 - - uid: 781 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 1 - - uid: 782 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 1 - - uid: 783 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 1 - uid: 7225 components: - type: Transform @@ -3342,137 +3544,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-15.5 parent: 1 - - uid: 7340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-30.5 - parent: 1 - - uid: 7452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-31.5 - parent: 1 - - uid: 7453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-32.5 - parent: 1 - - uid: 7457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-29.5 - parent: 1 - - uid: 7458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-29.5 - parent: 1 - - uid: 7525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-31.5 - parent: 1 - - uid: 7597 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 1 - - uid: 7599 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 1 - - uid: 7602 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 1 - - uid: 7604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 1 - - uid: 7700 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1 - - uid: 7786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 1 - - uid: 7788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-15.5 - parent: 1 - - uid: 7789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 1 - - uid: 7799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-17.5 - parent: 1 - - uid: 7800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-17.5 - parent: 1 - - uid: 7811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 1 - - uid: 7813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 1 - - uid: 8928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 - parent: 1 - - uid: 9140 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 1 - - uid: 9141 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 1 - - uid: 9142 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1 - - uid: 9549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 1 - uid: 11128 components: - type: Transform @@ -3486,6 +3557,11 @@ entities: parent: 1 - proto: CP14FenceBigWooden entities: + - uid: 1984 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 1 - uid: 7744 components: - type: Transform @@ -3679,25 +3755,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 1 -- proto: CP14FenceGateBigIronDemiplaneCrystal - entities: - - uid: 796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1 - - uid: 7693 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 1 - - uid: 7787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-17.5 - parent: 1 - proto: CP14FenceGateBigIronGuardBarracks entities: - uid: 4807 @@ -3705,12 +3762,6 @@ entities: - type: Transform pos: 12.5,-17.5 parent: 1 - - uid: 6492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-29.5 - parent: 1 - proto: CP14FenceGateBigWooden entities: - uid: 7754 @@ -3750,6 +3801,36 @@ entities: parent: 1 - proto: CP14FenceWindowIron entities: + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-36.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 1 - uid: 7728 components: - type: Transform @@ -3774,22 +3855,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-21.5 parent: 1 - - uid: 7732 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 1 - uid: 7733 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-22.5 parent: 1 - - uid: 7734 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 1 - uid: 7735 components: - type: Transform @@ -4055,12 +4126,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-39.5 parent: 1 - - uid: 7585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 1 - proto: CP14FloraTreeDead entities: - uid: 7209 @@ -4085,31 +4150,20 @@ entities: parent: 1 - proto: CP14FloraTreeGreen entities: - - uid: 7513 + - uid: 1507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-38.5 + pos: 6.5,-14.5 parent: 1 - - uid: 7514 + - uid: 1508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-39.5 + pos: 0.5,-15.5 parent: 1 -- proto: CP14FloraTreeGreenLarge - entities: - - uid: 7223 + - uid: 1509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-32.5 - parent: 1 - - uid: 7505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 + pos: 6.5,-19.5 parent: 1 - proto: CP14FluteInstrument entities: @@ -4121,16 +4175,23 @@ entities: parent: 1 - proto: CP14FoodApple entities: - - uid: 8723 + - uid: 1112 components: - type: Transform - pos: -1.3481102,-15.798591 + pos: -3.476521,-45.192905 parent: 1 - uid: 8724 components: - type: Transform pos: -17.664963,-19.691994 parent: 1 +- proto: CP14FoodAppleSlice + entities: + - uid: 1110 + components: + - type: Transform + pos: -4.016425,-45.372814 + parent: 1 - proto: CP14FoodBread entities: - uid: 8726 @@ -4266,6 +4327,13 @@ entities: - type: Transform pos: -17.282326,-21.007586 parent: 1 +- proto: CP14FoodPiePieceMeat + entities: + - uid: 1898 + components: + - type: Transform + pos: 5.347646,-39.295486 + parent: 1 - proto: CP14FoodPotatoHot entities: - uid: 7230 @@ -4285,6 +4353,11 @@ entities: parent: 1 - proto: CP14Fork entities: + - uid: 1899 + components: + - type: Transform + pos: 5.6742544,-39.405434 + parent: 1 - uid: 9669 components: - type: Transform @@ -4337,18 +4410,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-39.5 parent: 1 - - uid: 2103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 - parent: 1 - - uid: 8832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 1 - uid: 14569 components: - type: Transform @@ -4357,6 +4418,27 @@ entities: parent: 1 - proto: CP14GoldChest entities: + - uid: 1885 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 1 + - uid: 1900 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1901 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 9665 components: - type: Transform @@ -4379,13 +4461,30 @@ entities: - type: Transform pos: 3.6632075,-6.9220104 parent: 1 -- proto: CP14GuardBell +- proto: CP14GuardBell4 entities: - - uid: 7527 + - uid: 919 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: 34.5,1.5 + parent: 1 + - uid: 1072 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-31.5 + pos: -5.5,-44.5 + parent: 1 +- proto: CP14HandLabeler + entities: + - uid: 1999 + components: + - type: Transform + pos: 17.863838,-41.11547 parent: 1 - proto: CP14Inkwell entities: @@ -4396,6 +4495,34 @@ entities: parent: 1 - proto: CP14IronDoorGuardBarracks entities: + - uid: 903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,0.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: -25.5,5.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 1 - uid: 1263 components: - type: Transform @@ -4453,12 +4580,6 @@ entities: - type: Transform pos: 17.5,-21.5 parent: 1 - - uid: 11603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-44.5 - parent: 1 - uid: 13511 components: - type: Transform @@ -4467,28 +4588,17 @@ entities: parent: 1 - proto: CP14IronDoorGuardGuildmaster entities: - - uid: 8833 + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 1 + - uid: 1894 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 1 - - uid: 8834 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 1 - - uid: 8835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - - uid: 8836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-13.5 + pos: 3.5,-40.5 parent: 1 - proto: CP14IronDoorMirroredBlacksmith1 entities: @@ -4560,13 +4670,6 @@ entities: parent: 1 - type: CollisionWake enabled: False -- proto: CP14KeyTavernHall - entities: - - uid: 8849 - components: - - type: Transform - pos: -3.7526371,-11.30407 - parent: 1 - proto: CP14LaddersDownStoneAutoLink entities: - uid: 8850 @@ -4575,18 +4678,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-0.5 parent: 1 - - uid: 8855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 1 - - uid: 8856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 1 - uid: 9516 components: - type: Transform @@ -4679,6 +4770,16 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,10.5 parent: 1 + - uid: 899 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 1 - uid: 8879 components: - type: Transform @@ -4723,68 +4824,11 @@ entities: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 8893 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 1 - uid: 8900 components: - type: Transform pos: 25.5,10.5 parent: 1 - - uid: 9657 - components: - - type: Transform - pos: 18.5,-27.5 - parent: 1 -- proto: CP14LargeWoodenCrate - entities: - - uid: 7467 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 1 - - type: Storage - storedItems: - 7468: - position: 0,0 - _rotation: South - 7469: - position: 2,0 - _rotation: South - 7470: - position: 4,0 - _rotation: South - 7471: - position: 6,0 - _rotation: South - 7472: - position: 0,2 - _rotation: South - 7473: - position: 2,2 - _rotation: South - 7474: - position: 4,2 - _rotation: South - 7475: - position: 6,2 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 7468 - - 7469 - - 7470 - - 7471 - - 7472 - - 7473 - - 7474 - - 7475 - proto: CP14LargeWoodenCrateFilled entities: - uid: 13 @@ -4802,11 +4846,6 @@ entities: - type: Transform pos: 18.5,-20.5 parent: 1 - - uid: 8906 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 1 - uid: 8908 components: - type: Transform @@ -4866,297 +4905,14 @@ entities: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 11139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 1 - - uid: 15364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 1 -- proto: CP14LyraInstrument +- proto: CP14LuteInstrument entities: - - uid: 8936 + - uid: 962 components: - type: Transform - pos: -5.4172773,-18.427143 + pos: -1.6336449,-18.55562 parent: 1 -- proto: CP14ModularBladeIronShovel - entities: - - uid: 8943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.294449,-16.128548 - parent: 1 -- proto: CP14ModularGripWoodenLong - entities: - - uid: 8944 - components: - - type: Transform - pos: 26.266441,14.61865 - parent: 1 - - uid: 8945 - components: - - type: Transform - pos: 26.232697,14.528695 - parent: 1 - - uid: 8946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.453182,1.9324975 - parent: 1 - - uid: 8947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.58823,1.9156308 - parent: 1 -- proto: CP14ModularIronArrow - entities: - - uid: 7139 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7140 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7141 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7142 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7143 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7144 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7145 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7146 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7147 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7148 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7149 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 7150 - components: - - type: Transform - parent: 7135 - - type: Physics - canCollide: False - - uid: 8948 - components: - - type: Transform - pos: -0.8673811,-17.455278 - parent: 1 - - uid: 8949 - components: - - type: Transform - pos: -1.9140058,-15.633688 - parent: 1 -- proto: CP14ModularIronDagger - entities: - - uid: 8952 - components: - - type: Transform - parent: 8951 - - type: Physics - canCollide: False - - uid: 8953 - components: - - type: Transform - parent: 8951 - - type: Physics - canCollide: False - - uid: 8959 - components: - - type: Transform - pos: -17.417374,-19.433372 - parent: 1 - - uid: 8960 - components: - - type: Transform - pos: -17.57493,-19.55706 - parent: 1 -- proto: CP14ModularIronHammer - entities: - - uid: 8954 - components: - - type: Transform - parent: 8951 - - type: Physics - canCollide: False -- proto: CP14ModularIronHoe - entities: - - uid: 8963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.17605,-13.383461 - parent: 1 - - uid: 8964 - components: - - type: Transform - pos: -19.952974,-13.253024 - parent: 1 -- proto: CP14ModularIronMace - entities: - - uid: 8955 - components: - - type: Transform - parent: 8951 - - type: Physics - canCollide: False - - uid: 8968 - components: - - type: Transform - pos: 26.378922,13.8540325 - parent: 1 - - uid: 8969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.76106,1.578301 - parent: 1 -- proto: CP14ModularIronPickaxe - entities: - - uid: 8972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.761353,13.7191 - parent: 1 - - uid: 8974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.3688526,-17.002651 - parent: 1 - - uid: 8975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.2338047,-17.339983 - parent: 1 - - uid: 8976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.474083,1.898766 - parent: 1 -- proto: CP14ModularIronShovel - entities: - - uid: 8977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.9840145,-4.659054 - parent: 1 - - uid: 8980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.705112,13.2580805 - parent: 1 - - uid: 8982 - components: - - type: Transform - pos: 24.866365,1.8144326 - parent: 1 -- proto: CP14ModularIronSickle - entities: - - uid: 8956 - components: - - type: Transform - parent: 8951 - - type: Physics - canCollide: False -- proto: CP14ModularIronSpear - entities: - - uid: 8957 - components: - - type: Transform - parent: 8951 - - type: Physics - canCollide: False - - uid: 8958 - components: - - type: Transform - parent: 8951 - - type: Physics - canCollide: False - - uid: 8983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.697556,1.4096341 - parent: 1 - - uid: 8984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.849485,1.4433675 - parent: 1 - - uid: 8989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.795097,12.99946 - parent: 1 - - uid: 8990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.817593,12.830794 - parent: 1 -- proto: CP14ModularWoodMop +- proto: CP14Mop entities: - uid: 40 components: @@ -5192,8 +4948,144 @@ entities: - type: Transform pos: 18.484926,19.120111 parent: 1 +- proto: CP14OpenSign + entities: + - uid: 1843 + components: + - type: Transform + pos: 18.495426,-35.305073 + parent: 1 + - uid: 1968 + components: + - type: Transform + pos: 18.517923,-35.65365 + parent: 1 + - uid: 1972 + components: + - type: Transform + pos: 18.495426,-35.496227 + parent: 1 +- proto: CP14OrderBoard + entities: + - uid: 1960 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 1978 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 1979 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 1980 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 1 +- proto: CP14OrderBoardBlue + entities: + - uid: 883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-33.5 + parent: 1 +- proto: CP14OrderBoardGreen + entities: + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1 +- proto: CP14OrderBoardRed + entities: + - uid: 884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1 +- proto: CP14OrderBoardYellow + entities: + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-33.5 + parent: 1 - proto: CP14Paper entities: + - uid: 1991 + components: + - type: Transform + pos: 16.772781,-41.31787 + parent: 1 + - uid: 1992 + components: + - type: Transform + pos: 16.941502,-41.329113 + parent: 1 + - uid: 1993 + components: + - type: Transform + pos: 17.008991,-41.407825 + parent: 1 + - uid: 1994 + components: + - type: Transform + pos: 17.132717,-41.329113 + parent: 1 + - uid: 1995 + components: + - type: Transform + pos: 17.200207,-41.486534 + parent: 1 + - uid: 1996 + components: + - type: Transform + pos: 17.323933,-41.284138 + parent: 1 + - uid: 1997 + components: + - type: Transform + pos: 17.40267,-41.385334 + parent: 1 + - uid: 1998 + components: + - type: Transform + pos: 17.537645,-41.284138 + parent: 1 + - uid: 2008 + components: + - type: Transform + pos: 4.357375,-37.298004 + parent: 1 + - uid: 2009 + components: + - type: Transform + pos: 4.469855,-37.30925 + parent: 1 + - uid: 2010 + components: + - type: Transform + pos: 4.5935826,-37.30925 + parent: 1 + - uid: 2011 + components: + - type: Transform + pos: 4.638575,-37.30925 + parent: 1 + - uid: 2012 + components: + - type: Transform + pos: 4.739807,-37.30925 + parent: 1 - uid: 7914 components: - type: Transform @@ -5212,16 +5104,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.3223476,14.5076275 parent: 1 - - uid: 9001 - components: - - type: Transform - pos: -4.593895,-18.351065 - parent: 1 - - uid: 9002 - components: - - type: Transform - pos: -4.41383,-18.418531 - parent: 1 - uid: 9003 components: - type: Transform @@ -5308,6 +5190,36 @@ entities: parent: 1 - proto: CP14PaperFolderBlue entities: + - uid: 1969 + components: + - type: Transform + pos: 18.41603,-36.095425 + parent: 1 + - uid: 1971 + components: + - type: Transform + pos: 18.528511,-36.207867 + parent: 1 + - uid: 1974 + components: + - type: Transform + pos: 18.685982,-36.320312 + parent: 1 + - uid: 1976 + components: + - type: Transform + pos: 18.494766,-40.85685 + parent: 1 + - uid: 1977 + components: + - type: Transform + pos: 18.719727,-41.081738 + parent: 1 + - uid: 1981 + components: + - type: Transform + pos: 18.753471,-41.149204 + parent: 1 - uid: 9025 components: - type: Transform @@ -5326,23 +5238,31 @@ entities: parent: 1 - proto: CP14PaperFolderRed entities: - - uid: 9029 + - uid: 1987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4090066,-15.326327 + pos: 18.517262,-41.01427 + parent: 1 + - uid: 1988 + components: + - type: Transform + pos: 18.314798,-36.662697 + parent: 1 + - uid: 1989 + components: + - type: Transform + pos: 18.494766,-36.74141 + parent: 1 + - uid: 1990 + components: + - type: Transform + pos: 16.447632,-41.486534 parent: 1 - uid: 9031 components: - type: Transform pos: 5.649103,13.610365 parent: 1 - - uid: 9032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4990387,-15.450015 - parent: 1 - uid: 9033 components: - type: Transform @@ -5350,6 +5270,46 @@ entities: parent: 1 - proto: CP14PenFeather entities: + - uid: 2000 + components: + - type: Transform + pos: 15.3555355,-40.227165 + parent: 1 + - uid: 2001 + components: + - type: Transform + pos: 15.602991,-37.13496 + parent: 1 + - uid: 2002 + components: + - type: Transform + pos: 15.3555355,-36.190434 + parent: 1 + - uid: 2003 + components: + - type: Transform + pos: 18.021309,-41.419067 + parent: 1 + - uid: 2004 + components: + - type: Transform + pos: 18.651196,-35.864346 + parent: 1 + - uid: 2005 + components: + - type: Transform + pos: 18.74118,-36.167946 + parent: 1 + - uid: 2006 + components: + - type: Transform + pos: 6.3169537,-37.196804 + parent: 1 + - uid: 2007 + components: + - type: Transform + pos: 6.4969215,-37.20805 + parent: 1 - uid: 9035 components: - type: Transform @@ -5366,16 +5326,6 @@ entities: rot: 3.141592653589793 rad pos: -16.625248,-6.326728 parent: 1 - - uid: 9038 - components: - - type: Transform - pos: -1.5506823,-15.674903 - parent: 1 - - uid: 9039 - components: - - type: Transform - pos: -1.3414826,-15.674903 - parent: 1 - uid: 9042 components: - type: Transform @@ -5464,10 +5414,10 @@ entities: parent: 1 - proto: CP14PottedPlant1 entities: - - uid: 7455 + - uid: 949 components: - type: Transform - pos: -1.5,-19.5 + pos: -6.5,-14.5 parent: 1 - uid: 9654 components: @@ -5483,6 +5433,76 @@ entities: parent: 1 - proto: CP14RandomBushOffsetSpawner entities: + - uid: 1510 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 - uid: 6569 components: - type: Transform @@ -5972,6 +5992,111 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 36 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 62 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 194 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 203 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 212 + components: + - type: Transform + pos: 33.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 217 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 225 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 234 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 244 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 248 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 290 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 305 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 307 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 310 + components: + - type: Transform + pos: -28.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 374 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 500 components: - type: Transform @@ -5980,6 +6105,1784 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 577 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 586 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 588 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 589 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 610 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 769 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 770 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 771 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 772 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 773 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 774 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 782 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 783 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 784 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 785 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 786 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 787 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 788 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 789 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 790 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 791 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 792 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 875 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 877 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 879 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 887 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 890 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 892 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 895 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 896 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 897 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 898 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 901 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 904 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 905 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 906 + components: + - type: Transform + pos: -22.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 907 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 908 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 909 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 910 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 911 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 912 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 913 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 914 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 918 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 920 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 923 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 924 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 926 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 927 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 928 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 933 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 938 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 940 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1020 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1021 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1029 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1030 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1035 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1037 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1038 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1051 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1052 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1053 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1081 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1082 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1083 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1084 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1091 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1092 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1094 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1095 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1096 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1098 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1099 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1100 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1105 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1106 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1109 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1117 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1120 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1121 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1139 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1140 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1141 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1143 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1144 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1145 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1146 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1147 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1148 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1149 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1150 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1151 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1152 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1153 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1154 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1155 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1156 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1157 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1158 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1159 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1160 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1161 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1162 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1163 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1164 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1165 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1166 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1167 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1168 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1169 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1170 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1171 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1172 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1173 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1174 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1175 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1176 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1177 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1178 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1179 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1180 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1181 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1182 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1183 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1184 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1185 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1186 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1187 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1188 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1189 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1190 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1191 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1192 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1193 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1194 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1195 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1196 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1197 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1198 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1199 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1200 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1201 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1202 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1203 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1204 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1205 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1206 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1207 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1208 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1209 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1210 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1211 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1212 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1213 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1214 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1215 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1216 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1217 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1218 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1219 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1220 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1221 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1222 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1223 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1224 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1225 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1227 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1228 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1229 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1230 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1231 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1232 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1233 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1234 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1235 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1236 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1237 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1238 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1239 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1240 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1241 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1242 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1243 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1244 + components: + - type: Transform + pos: -28.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1245 + components: + - type: Transform + pos: -28.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1246 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1247 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1248 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1249 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1250 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1251 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1252 + components: + - type: Transform + pos: -28.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1253 + components: + - type: Transform + pos: -28.5,9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1254 + components: + - type: Transform + pos: -28.5,10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1255 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1256 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1257 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1258 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1259 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1260 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1261 + components: + - type: Transform + pos: -27.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1262 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1264 + components: + - type: Transform + pos: -27.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1265 + components: + - type: Transform + pos: -27.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1266 + components: + - type: Transform + pos: -27.5,9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1267 + components: + - type: Transform + pos: -27.5,10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1268 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1269 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1270 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1271 + components: + - type: Transform + pos: -26.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1272 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1273 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1274 + components: + - type: Transform + pos: -26.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1275 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1276 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1277 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1278 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1279 + components: + - type: Transform + pos: -26.5,10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1280 + components: + - type: Transform + pos: -28.5,11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1281 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1282 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1283 + components: + - type: Transform + pos: -28.5,14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1284 + components: + - type: Transform + pos: -28.5,15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1287 + components: + - type: Transform + pos: -28.5,16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1288 + components: + - type: Transform + pos: -28.5,17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1289 + components: + - type: Transform + pos: -28.5,18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1290 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1291 + components: + - type: Transform + pos: -28.5,20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1292 + components: + - type: Transform + pos: -28.5,21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1293 + components: + - type: Transform + pos: -28.5,22.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1294 + components: + - type: Transform + pos: -28.5,23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1295 + components: + - type: Transform + pos: -28.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1296 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1297 + components: + - type: Transform + pos: -27.5,12.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1298 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1299 + components: + - type: Transform + pos: -27.5,14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1300 + components: + - type: Transform + pos: -27.5,15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1301 + components: + - type: Transform + pos: -27.5,16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1302 + components: + - type: Transform + pos: -27.5,17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1303 + components: + - type: Transform + pos: -27.5,18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1304 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1306 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1307 + components: + - type: Transform + pos: -27.5,22.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1308 + components: + - type: Transform + pos: -27.5,23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1309 + components: + - type: Transform + pos: -27.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1310 + components: + - type: Transform + pos: -26.5,11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1311 + components: + - type: Transform + pos: -26.5,12.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1312 + components: + - type: Transform + pos: -26.5,13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1313 + components: + - type: Transform + pos: -26.5,14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1314 + components: + - type: Transform + pos: -27.5,21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1315 + components: + - type: Transform + pos: -26.5,15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1316 + components: + - type: Transform + pos: -26.5,16.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 1317 components: - type: Transform @@ -5988,6 +7891,216 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 1324 + components: + - type: Transform + pos: -26.5,17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1325 + components: + - type: Transform + pos: -26.5,18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1326 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1327 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1328 + components: + - type: Transform + pos: -26.5,21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1329 + components: + - type: Transform + pos: -26.5,22.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1330 + components: + - type: Transform + pos: -26.5,23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1331 + components: + - type: Transform + pos: -26.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1332 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1333 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1334 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1335 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1336 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1337 + components: + - type: Transform + pos: -25.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1338 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1339 + components: + - type: Transform + pos: -25.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1340 + components: + - type: Transform + pos: -25.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1341 + components: + - type: Transform + pos: -25.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1342 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1343 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1344 + components: + - type: Transform + pos: -29.5,6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1345 + components: + - type: Transform + pos: -29.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1346 + components: + - type: Transform + pos: -29.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1347 + components: + - type: Transform + pos: -29.5,9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1348 + components: + - type: Transform + pos: -29.5,10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1349 + components: + - type: Transform + pos: -28.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1350 + components: + - type: Transform + pos: -28.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1351 + components: + - type: Transform + pos: -27.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1352 + components: + - type: Transform + pos: -27.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1353 + components: + - type: Transform + pos: -26.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 1356 components: - type: Transform @@ -6012,6 +8125,1042 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 1359 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1360 + components: + - type: Transform + pos: -25.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1361 + components: + - type: Transform + pos: -25.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1362 + components: + - type: Transform + pos: -25.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1363 + components: + - type: Transform + pos: -24.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1364 + components: + - type: Transform + pos: -24.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1365 + components: + - type: Transform + pos: -24.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1366 + components: + - type: Transform + pos: -23.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1367 + components: + - type: Transform + pos: -23.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1368 + components: + - type: Transform + pos: -23.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1369 + components: + - type: Transform + pos: -22.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1370 + components: + - type: Transform + pos: -22.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1371 + components: + - type: Transform + pos: -22.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1372 + components: + - type: Transform + pos: -21.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1373 + components: + - type: Transform + pos: -21.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1374 + components: + - type: Transform + pos: -21.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1375 + components: + - type: Transform + pos: -20.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1376 + components: + - type: Transform + pos: -20.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1377 + components: + - type: Transform + pos: -20.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1378 + components: + - type: Transform + pos: -19.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1379 + components: + - type: Transform + pos: -19.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1380 + components: + - type: Transform + pos: -19.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1381 + components: + - type: Transform + pos: -18.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1382 + components: + - type: Transform + pos: -18.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1383 + components: + - type: Transform + pos: -18.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1384 + components: + - type: Transform + pos: -17.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1385 + components: + - type: Transform + pos: -17.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1386 + components: + - type: Transform + pos: -17.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1387 + components: + - type: Transform + pos: -16.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1388 + components: + - type: Transform + pos: -16.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1389 + components: + - type: Transform + pos: -16.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1390 + components: + - type: Transform + pos: -15.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1391 + components: + - type: Transform + pos: -15.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1392 + components: + - type: Transform + pos: -15.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1393 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1394 + components: + - type: Transform + pos: -14.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1395 + components: + - type: Transform + pos: -14.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1396 + components: + - type: Transform + pos: -13.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1397 + components: + - type: Transform + pos: -13.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1398 + components: + - type: Transform + pos: -13.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1399 + components: + - type: Transform + pos: -12.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1400 + components: + - type: Transform + pos: -12.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1401 + components: + - type: Transform + pos: -12.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1402 + components: + - type: Transform + pos: -11.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1403 + components: + - type: Transform + pos: -11.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1404 + components: + - type: Transform + pos: -11.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1405 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1406 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1407 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1408 + components: + - type: Transform + pos: -9.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1409 + components: + - type: Transform + pos: -9.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1410 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1411 + components: + - type: Transform + pos: -8.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1412 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1413 + components: + - type: Transform + pos: -8.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1414 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1415 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1416 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1417 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1418 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1419 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1420 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1421 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1422 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1423 + components: + - type: Transform + pos: -4.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1424 + components: + - type: Transform + pos: -4.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1425 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1426 + components: + - type: Transform + pos: -3.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1427 + components: + - type: Transform + pos: -3.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1428 + components: + - type: Transform + pos: -3.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1429 + components: + - type: Transform + pos: -2.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1430 + components: + - type: Transform + pos: -2.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1431 + components: + - type: Transform + pos: -2.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1432 + components: + - type: Transform + pos: -1.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1433 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1434 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1435 + components: + - type: Transform + pos: -0.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1436 + components: + - type: Transform + pos: -0.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1437 + components: + - type: Transform + pos: -0.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1438 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1439 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1440 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1441 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1442 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1443 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1444 + components: + - type: Transform + pos: 2.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1445 + components: + - type: Transform + pos: 2.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1446 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1447 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1448 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1449 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1450 + components: + - type: Transform + pos: 3.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1451 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1452 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1453 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1454 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1455 + components: + - type: Transform + pos: 5.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1456 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1457 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1458 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1459 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1460 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1461 + components: + - type: Transform + pos: 7.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1462 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1463 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1464 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1465 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1466 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1467 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1468 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1469 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1470 + components: + - type: Transform + pos: 10.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1471 + components: + - type: Transform + pos: 11.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1472 + components: + - type: Transform + pos: 11.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1473 + components: + - type: Transform + pos: 11.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1474 + components: + - type: Transform + pos: 12.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1475 + components: + - type: Transform + pos: 12.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1476 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1477 + components: + - type: Transform + pos: 13.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1478 + components: + - type: Transform + pos: 13.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1479 + components: + - type: Transform + pos: 13.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1480 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1481 + components: + - type: Transform + pos: 14.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1482 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1483 + components: + - type: Transform + pos: 15.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1484 + components: + - type: Transform + pos: 15.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1485 + components: + - type: Transform + pos: 15.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1486 + components: + - type: Transform + pos: 16.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1487 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1488 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1489 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1490 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1491 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1492 + components: + - type: Transform + pos: 18.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1493 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1494 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1495 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1496 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1497 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1498 + components: + - type: Transform + pos: 20.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1499 + components: + - type: Transform + pos: 20.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1500 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1501 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1502 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1503 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1504 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1505 + components: + - type: Transform + pos: 22.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1506 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 4143 components: - type: Transform @@ -7015,190 +10164,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 7448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-32.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7460 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-32.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-33.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-31.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-32.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 7530 components: - type: Transform @@ -7277,22 +10242,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 7605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 7606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-33.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 7607 components: - type: Transform @@ -7993,34 +10942,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 9252 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9253 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9254 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9255 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 9257 components: - type: Transform @@ -8517,328 +11438,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 9323 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9324 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9325 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9326 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9327 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9328 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9329 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9330 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9331 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9332 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9333 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9334 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9335 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9356 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9357 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9358 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9359 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9360 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9361 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9362 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9363 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9364 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9365 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9366 - components: - - type: Transform - pos: -2.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9367 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9368 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9369 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9370 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9371 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9372 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9373 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9374 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9375 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9376 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9377 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9378 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9379 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9380 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9381 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9382 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9383 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9384 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9385 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9386 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9387 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9388 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 9391 components: - type: Transform @@ -8869,13 +11468,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 9416 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 9417 components: - type: Transform @@ -8940,34 +11532,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 9442 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9443 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9444 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9445 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 9469 components: - type: Transform @@ -9003,153 +11567,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 9474 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9475 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9476 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9477 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9478 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9479 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9480 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9481 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9482 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9483 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9484 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9485 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9486 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9487 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9488 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9489 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9490 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9491 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9492 - components: - - type: Transform - pos: -4.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9493 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9494 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 9495 components: - type: Transform @@ -10308,20 +12725,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 9950 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 9951 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 10363 components: - type: Transform @@ -12027,6 +14430,2258 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 902 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 976 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 982 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 984 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 985 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 987 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 988 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 990 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 991 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 992 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 993 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 994 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 997 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 998 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 999 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1000 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1001 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1004 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1005 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1006 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1008 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1009 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1011 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1015 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1018 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1019 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1022 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1023 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1024 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1027 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1028 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1054 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1056 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1059 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1085 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1086 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-40.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-36.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 6554 components: - type: Transform @@ -19303,6 +23958,13 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,12.5 parent: 1 +- proto: CP14SalaryPlatform + entities: + - uid: 1967 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1 - proto: CP14ScrapCopper entities: - uid: 11310 @@ -19310,122 +23972,6 @@ entities: - type: Transform pos: 7.7062325,2.3277578 parent: 1 -- proto: CP14SmallWoodenCrate - entities: - - uid: 7135 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 1 - - type: Storage - storedItems: - 7136: - position: 0,0 - _rotation: South - 7137: - position: 2,0 - _rotation: South - 7138: - position: 4,0 - _rotation: South - 7147: - position: 2,2 - _rotation: South - 7146: - position: 1,2 - _rotation: South - 7139: - position: 0,2 - _rotation: South - 7140: - position: 0,4 - _rotation: South - 7141: - position: 1,4 - _rotation: South - 7142: - position: 2,4 - _rotation: South - 7143: - position: 3,4 - _rotation: South - 7144: - position: 4,4 - _rotation: South - 7145: - position: 5,4 - _rotation: South - 7148: - position: 3,2 - _rotation: South - 7149: - position: 4,2 - _rotation: South - 7150: - position: 5,2 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 7136 - - 7137 - - 7138 - - 7140 - - 7141 - - 7142 - - 7143 - - 7144 - - 7145 - - 7139 - - 7146 - - 7147 - - 7148 - - 7149 - - 7150 - - uid: 8951 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 1 - - type: Storage - storedItems: - 8953: - position: 0,2 - _rotation: South - 8952: - position: 3,3 - _rotation: South - 8956: - position: 2,3 - _rotation: South - 8958: - position: 1,2 - _rotation: South - 8957: - position: 4,2 - _rotation: South - 8955: - position: 5,3 - _rotation: South - 8954: - position: 0,4 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 8953 - - 8952 - - 8956 - - 8958 - - 8957 - - 8955 - - 8954 - proto: CP14SmallWoodenCrateFilled entities: - uid: 7902 @@ -19479,16 +24025,6 @@ entities: - type: Transform pos: -15.5,-0.5 parent: 1 - - uid: 11324 - components: - - type: Transform - pos: -9.5,-14.5 - parent: 1 - - uid: 11325 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 1 - uid: 11328 components: - type: Transform @@ -19543,36 +24079,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-8.5 parent: 1 - - uid: 15359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 1 - - uid: 15360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1 - - uid: 15361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 - parent: 1 - - uid: 15363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 1 - - uid: 15367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-43.5 - parent: 1 - uid: 15368 components: - type: Transform @@ -19604,11 +24110,6 @@ entities: - type: Transform pos: 22.5,22.5 parent: 1 - - uid: 11369 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 1 - proto: CP14SpawnEssenceNodeRandom entities: - uid: 11373 @@ -19697,10 +24198,28 @@ entities: parent: 1 - proto: CP14SpawnPointGuildmaster entities: - - uid: 11402 + - uid: 1892 components: - type: Transform - pos: -4.5,-16.5 + rot: 1.5707963267948966 rad + pos: 6.5,-39.5 + parent: 1 +- proto: CP14SpawnPointGuildworker + entities: + - uid: 1830 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 1 + - uid: 1833 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 1 + - uid: 1835 + components: + - type: Transform + pos: 16.5,-36.5 parent: 1 - proto: CP14SpawnPointInnkeeper entities: @@ -19766,14 +24285,50 @@ entities: parent: 1 - proto: CP14Spoon entities: + - uid: 944 + components: + - type: Transform + pos: -10.160994,-17.378017 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: -7.6551833,-16.72786 + parent: 1 - uid: 8722 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.707367,-22.646742 parent: 1 +- proto: CP14SpruceWoodenPlanks20 + entities: + - uid: 934 + components: + - type: Transform + pos: -27.47232,2.7453067 + parent: 1 +- proto: CP14StampApproved + entities: + - uid: 2014 + components: + - type: Transform + pos: 15.545367,-31.336872 + parent: 1 +- proto: CP14StampDenied + entities: + - uid: 2013 + components: + - type: Transform + pos: 15.365398,-31.168085 + parent: 1 - proto: CP14SteelBeerMug entities: + - uid: 969 + components: + - type: Transform + pos: -10.700898,-15.207853 + parent: 1 - uid: 11423 components: - type: Transform @@ -19936,6 +24491,90 @@ entities: parent: 1 - proto: CP14TableWooden entities: + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 1 + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 1 + - uid: 1878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 1 + - uid: 1879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 1 + - uid: 1880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 1 + - uid: 1881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 1 + - uid: 1882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 + - uid: 1883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-36.5 + parent: 1 + - uid: 1884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 1 + - uid: 1962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-29.5 + parent: 1 + - uid: 1982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-31.5 + parent: 1 + - uid: 1983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 1 - uid: 2102 components: - type: Transform @@ -20249,6 +24888,11 @@ entities: parent: 1 - proto: CP14TableWoodenBirchCounter entities: + - uid: 775 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 - uid: 829 components: - type: Transform @@ -20284,8 +24928,57 @@ entities: - type: Transform pos: -17.5,-21.5 parent: 1 + - uid: 945 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 - proto: CP14TableWoodenCounter entities: + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 1 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 1 - uid: 838 components: - type: Transform @@ -20306,11 +24999,199 @@ entities: - type: Transform pos: -15.5,-23.5 parent: 1 + - uid: 871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-45.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1 + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-18.5 + parent: 1 + - uid: 964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-45.5 + parent: 1 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-45.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-45.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-45.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 1 - uid: 1841 components: - type: Transform pos: 15.5,-23.5 parent: 1 + - uid: 1963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 1 + - uid: 1964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-37.5 + parent: 1 + - uid: 1973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-37.5 + parent: 1 - uid: 7235 components: - type: Transform @@ -20339,11 +25220,6 @@ entities: - type: Transform pos: 24.5,3.5 parent: 1 - - uid: 11515 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 1 - uid: 11516 components: - type: Transform @@ -20444,11 +25320,6 @@ entities: - type: Transform pos: 3.5,-7.5 parent: 1 - - uid: 11548 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 1 - uid: 11549 components: - type: Transform @@ -20481,16 +25352,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,12.5 parent: 1 - - uid: 11561 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 1 - - uid: 11562 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 1 - uid: 11566 components: - type: Transform @@ -20543,30 +25404,12 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-21.5 parent: 1 - - uid: 11581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1 - - uid: 11584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - uid: 11586 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,1.5 parent: 1 - - uid: 11589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-17.5 - parent: 1 - uid: 11668 components: - type: Transform @@ -20597,18 +25440,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 1 - - uid: 15353 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 1 - - uid: 15354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,0.5 - parent: 1 - proto: CP14TableWoodenFrame entities: - uid: 11590 @@ -20619,17 +25450,16 @@ entities: parent: 1 - proto: CP14TableWoodenRound entities: + - uid: 1897 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 1 - uid: 11591 components: - type: Transform pos: 5.5,16.5 parent: 1 - - uid: 11595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1 - uid: 11597 components: - type: Transform @@ -20871,68 +25701,6 @@ entities: parent: 11685 - type: Physics canCollide: False -- proto: CP14WallDimensit - entities: - - uid: 769 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 1 - - uid: 770 - components: - - type: Transform - pos: 4.5,-36.5 - parent: 1 - - uid: 771 - components: - - type: Transform - pos: 4.5,-35.5 - parent: 1 - - uid: 772 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 1 - - uid: 773 - components: - - type: Transform - pos: 10.5,-36.5 - parent: 1 - - uid: 774 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 1 - - uid: 775 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 1 - - uid: 776 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 1 - - uid: 777 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 1 - - uid: 778 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 1 - - uid: 779 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 1 - - uid: 780 - components: - - type: Transform - pos: 4.5,-31.5 - parent: 1 - proto: CP14WallFrameWooden entities: - uid: 8760 @@ -21021,6 +25789,316 @@ entities: parent: 1 - proto: CP14WallLeaf entities: + - uid: 2015 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 2016 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 2017 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 1 + - uid: 2018 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 1 + - uid: 2019 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 1 + - uid: 2020 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 1 + - uid: 2021 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 1 + - uid: 2022 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 1 + - uid: 2023 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 1 + - uid: 2024 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 1 + - uid: 2025 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 1 + - uid: 2026 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 1 + - uid: 2027 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 1 + - uid: 2028 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 1 + - uid: 2029 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 1 + - uid: 2030 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 1 + - uid: 2031 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 1 + - uid: 2032 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 1 + - uid: 2033 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 1 + - uid: 2034 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 1 + - uid: 2035 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 1 + - uid: 2036 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 1 + - uid: 2037 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 1 + - uid: 2038 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 1 + - uid: 2039 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 1 + - uid: 2040 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 1 + - uid: 2041 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 1 + - uid: 2042 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 1 + - uid: 2043 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 1 + - uid: 2044 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 1 + - uid: 2045 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 1 + - uid: 2046 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 1 + - uid: 2047 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 1 + - uid: 2048 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 1 + - uid: 2049 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 1 + - uid: 2050 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 1 + - uid: 2051 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 1 + - uid: 2052 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 1 + - uid: 2053 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 1 + - uid: 2054 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 1 + - uid: 2055 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 1 + - uid: 2056 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 1 + - uid: 2057 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 2058 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 2062 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 2063 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1 + - uid: 2064 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 2065 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 1 + - uid: 2066 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1 + - uid: 2067 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 2068 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 1 + - uid: 2069 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 2070 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 2071 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 1 + - uid: 2072 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 1 + - uid: 2073 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1 + - uid: 2074 + components: + - type: Transform + pos: 32.5,3.5 + parent: 1 + - uid: 2075 + components: + - type: Transform + pos: 32.5,4.5 + parent: 1 + - uid: 2076 + components: + - type: Transform + pos: 33.5,4.5 + parent: 1 + - uid: 2077 + components: + - type: Transform + pos: 32.5,5.5 + parent: 1 + - uid: 2078 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1 + - uid: 2079 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1 - uid: 7114 components: - type: Transform @@ -21071,21 +26149,6 @@ entities: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 11736 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 1 - - uid: 11737 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 1 - - uid: 11738 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 1 - uid: 11739 components: - type: Transform @@ -21155,13 +26218,6 @@ entities: - 11687 - type: Fixtures fixtures: {} - - uid: 11747 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 11748 components: - type: Transform @@ -21212,13 +26268,6 @@ entities: - 11684 - type: Fixtures fixtures: {} - - uid: 11750 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 11751 components: - type: Transform @@ -21398,6 +26447,13 @@ entities: fixtures: {} - proto: CP14WallmountFlagTavern entities: + - uid: 942 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 11810 components: - type: Transform @@ -21405,13 +26461,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 11811 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 11812 components: - type: Transform @@ -21419,22 +26468,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 11813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-13.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 11814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 11815 components: - type: Transform @@ -21743,29 +26776,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: CP14WallmountOrdersBorder - entities: - - uid: 11869 - components: - - type: Transform - pos: 20.5,10.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 11870 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 11871 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 1 - - type: Fixtures - fixtures: {} - proto: CP14WallmountPaintingCandle entities: - uid: 11744 @@ -21832,6 +26842,14 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-37.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 828 components: - type: Transform @@ -21839,6 +26857,168 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 966 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1067 + components: + - type: Transform + pos: -27.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-44.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-43.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1525 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1565 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-41.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1580 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-31.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-27.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1828 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 1844 components: - type: Transform @@ -21847,6 +27027,21 @@ entities: parent: 1 - type: Fixtures fixtures: {} + - uid: 2059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 2061 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 4590 components: - type: Transform @@ -21930,21 +27125,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 11895 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 11899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 1 - - type: Fixtures - fixtures: {} - uid: 11906 components: - type: Transform @@ -21969,14 +27149,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 15118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-43.5 - parent: 1 - - type: Fixtures - fixtures: {} - proto: CP14WallStonebrick entities: - uid: 8 @@ -22634,11 +27806,6 @@ entities: - type: Transform pos: -16.5,-42.5 parent: 1 - - uid: 194 - components: - - type: Transform - pos: -26.5,1.5 - parent: 1 - uid: 195 components: - type: Transform @@ -22679,11 +27846,6 @@ entities: - type: Transform pos: -17.5,-42.5 parent: 1 - - uid: 203 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 1 - uid: 204 components: - type: Transform @@ -22724,11 +27886,6 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 1 - - uid: 212 - components: - - type: Transform - pos: -27.5,2.5 - parent: 1 - uid: 213 components: - type: Transform @@ -22749,11 +27906,6 @@ entities: - type: Transform pos: -29.5,1.5 parent: 1 - - uid: 217 - components: - - type: Transform - pos: -27.5,4.5 - parent: 1 - uid: 220 components: - type: Transform @@ -22779,11 +27931,6 @@ entities: - type: Transform pos: -26.5,-0.5 parent: 1 - - uid: 225 - components: - - type: Transform - pos: -26.5,3.5 - parent: 1 - uid: 226 components: - type: Transform @@ -22824,11 +27971,6 @@ entities: - type: Transform pos: -26.5,-15.5 parent: 1 - - uid: 234 - components: - - type: Transform - pos: -26.5,4.5 - parent: 1 - uid: 235 components: - type: Transform @@ -22874,11 +28016,6 @@ entities: - type: Transform pos: -26.5,-2.5 parent: 1 - - uid: 244 - components: - - type: Transform - pos: -26.5,2.5 - parent: 1 - uid: 245 components: - type: Transform @@ -22894,11 +28031,6 @@ entities: - type: Transform pos: -27.5,-12.5 parent: 1 - - uid: 248 - components: - - type: Transform - pos: -27.5,3.5 - parent: 1 - uid: 249 components: - type: Transform @@ -23089,11 +28221,6 @@ entities: - type: Transform pos: -4.5,-46.5 parent: 1 - - uid: 290 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 1 - uid: 291 components: - type: Transform @@ -23154,21 +28281,11 @@ entities: - type: Transform pos: -8.5,-46.5 parent: 1 - - uid: 305 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 1 - uid: 306 components: - type: Transform pos: -8.5,-45.5 parent: 1 - - uid: 307 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 1 - uid: 308 components: - type: Transform @@ -23179,11 +28296,6 @@ entities: - type: Transform pos: -9.5,-45.5 parent: 1 - - uid: 310 - components: - - type: Transform - pos: -6.5,-45.5 - parent: 1 - uid: 311 components: - type: Transform @@ -23489,11 +28601,6 @@ entities: - type: Transform pos: -2.5,-47.5 parent: 1 - - uid: 374 - components: - - type: Transform - pos: -4.5,-45.5 - parent: 1 - uid: 375 components: - type: Transform @@ -24489,11 +29596,6 @@ entities: - type: Transform pos: -10.5,-46.5 parent: 1 - - uid: 577 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 1 - uid: 578 components: - type: Transform @@ -24534,26 +29636,11 @@ entities: - type: Transform pos: -9.5,-47.5 parent: 1 - - uid: 586 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 1 - uid: 587 components: - type: Transform pos: -8.5,-44.5 parent: 1 - - uid: 588 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 1 - - uid: 589 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 1 - uid: 590 components: - type: Transform @@ -24654,11 +29741,6 @@ entities: - type: Transform pos: -27.5,0.5 parent: 1 - - uid: 610 - components: - - type: Transform - pos: -27.5,1.5 - parent: 1 - uid: 611 components: - type: Transform @@ -24669,11 +29751,141 @@ entities: - type: Transform pos: 6.5,-46.5 parent: 1 + - uid: 888 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 33.5,2.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 33.5,1.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 33.5,3.5 + parent: 1 - uid: 983 components: - type: Transform pos: 7.5,-46.5 parent: 1 + - uid: 1025 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: -24.5,1.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 1 - uid: 1226 components: - type: Transform @@ -24734,6 +29946,16 @@ entities: - type: Transform pos: 30.5,-9.5 parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 1 - uid: 1631 components: - type: Transform @@ -24744,10 +29966,10 @@ entities: - type: Transform pos: 36.5,-6.5 parent: 1 - - uid: 1828 + - uid: 1827 components: - type: Transform - pos: -2.5,-44.5 + pos: 4.5,-38.5 parent: 1 - uid: 1831 components: @@ -24794,6 +30016,36 @@ entities: - type: Transform pos: 39.5,14.5 parent: 1 + - uid: 1886 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 1 + - uid: 1887 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 1 + - uid: 1888 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 1 + - uid: 1889 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 1 + - uid: 1890 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 1 + - uid: 1891 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 1 - uid: 2104 components: - type: Transform @@ -25179,11 +30431,6 @@ entities: - type: Transform pos: 26.5,19.5 parent: 1 - - uid: 6220 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 1 - uid: 6223 components: - type: Transform @@ -25249,21 +30496,11 @@ entities: - type: Transform pos: 32.5,-10.5 parent: 1 - - uid: 6254 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 1 - uid: 6255 components: - type: Transform pos: 30.5,-15.5 parent: 1 - - uid: 6256 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1 - uid: 6257 components: - type: Transform @@ -25274,11 +30511,6 @@ entities: - type: Transform pos: 33.5,-5.5 parent: 1 - - uid: 6493 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 1 - uid: 7206 components: - type: Transform @@ -25664,21 +30896,11 @@ entities: - type: Transform pos: 5.5,-44.5 parent: 1 - - uid: 9131 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 1 - uid: 9132 components: - type: Transform pos: 14.5,-14.5 parent: 1 - - uid: 9139 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 1 - uid: 9170 components: - type: Transform @@ -25989,51 +31211,11 @@ entities: - type: Transform pos: 2.5,-44.5 parent: 1 - - uid: 11480 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 1 - - uid: 11481 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 1 - uid: 11620 components: - type: Transform pos: 35.5,-0.5 parent: 1 - - uid: 11621 - components: - - type: Transform - pos: 34.5,-0.5 - parent: 1 - - uid: 11624 - components: - - type: Transform - pos: 34.5,3.5 - parent: 1 - - uid: 11625 - components: - - type: Transform - pos: 34.5,2.5 - parent: 1 - - uid: 11630 - components: - - type: Transform - pos: 34.5,0.5 - parent: 1 - - uid: 11631 - components: - - type: Transform - pos: 35.5,3.5 - parent: 1 - - uid: 11634 - components: - - type: Transform - pos: 34.5,1.5 - parent: 1 - uid: 11654 components: - type: Transform @@ -26174,76 +31356,6 @@ entities: - type: Transform pos: 23.5,-34.5 parent: 1 - - uid: 14107 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 1 - - uid: 14108 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 1 - - uid: 14109 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 1 - - uid: 14110 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 1 - - uid: 14111 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 1 - - uid: 14112 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 1 - - uid: 14113 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 1 - - uid: 14114 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 1 - - uid: 14115 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1 - - uid: 14116 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 1 - - uid: 14117 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 1 - - uid: 14118 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 1 - - uid: 14119 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 1 - - uid: 14120 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 1 - uid: 14131 components: - type: Transform @@ -26269,11 +31381,6 @@ entities: - type: Transform pos: 31.5,4.5 parent: 1 - - uid: 14136 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 1 - uid: 14143 components: - type: Transform @@ -26324,31 +31431,6 @@ entities: - type: Transform pos: 23.5,-30.5 parent: 1 - - uid: 14176 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 1 - - uid: 14177 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 1 - - uid: 14178 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 1 - - uid: 14187 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 1 - - uid: 14188 - components: - - type: Transform - pos: -10.5,-16.5 - parent: 1 - uid: 14189 components: - type: Transform @@ -26359,21 +31441,11 @@ entities: - type: Transform pos: 29.5,1.5 parent: 1 - - uid: 14192 - components: - - type: Transform - pos: -10.5,-15.5 - parent: 1 - uid: 14193 components: - type: Transform pos: 29.5,17.5 parent: 1 - - uid: 14198 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 1 - uid: 14216 components: - type: Transform @@ -26529,11 +31601,6 @@ entities: - type: Transform pos: 30.5,1.5 parent: 1 - - uid: 14264 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 1 - uid: 14265 components: - type: Transform @@ -26604,46 +31671,6 @@ entities: - type: Transform pos: 23.5,3.5 parent: 1 - - uid: 14281 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 1 - - uid: 14282 - components: - - type: Transform - pos: -10.5,-18.5 - parent: 1 - - uid: 14283 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 1 - - uid: 14284 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 1 - - uid: 14285 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 1 - - uid: 14286 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 1 - - uid: 14287 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 1 - - uid: 14288 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 1 - uid: 14292 components: - type: Transform @@ -26659,11 +31686,6 @@ entities: - type: Transform pos: 13.5,-46.5 parent: 1 - - uid: 14295 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 1 - uid: 14296 components: - type: Transform @@ -26684,70 +31706,13 @@ entities: - type: Transform pos: 26.5,3.5 parent: 1 -- proto: CP14WallStonebrickOld +- proto: CP14WallWooden entities: - - uid: 784 - components: - - type: Transform - pos: 5.5,-35.5 - parent: 1 - - uid: 785 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 1 - - uid: 786 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 1 - - uid: 787 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 1 - - uid: 788 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 1 - - uid: 789 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 1 - - uid: 790 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 1 - - uid: 791 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 1 - - uid: 792 - components: - - type: Transform - pos: 8.5,-31.5 - parent: 1 - uid: 793 components: - type: Transform - pos: 6.5,-31.5 + pos: -6.5,-13.5 parent: 1 - - uid: 794 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 1 - - uid: 795 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 1 -- proto: CP14WallWooden - entities: - uid: 805 components: - type: Transform @@ -26803,6 +31768,61 @@ entities: - type: Transform pos: -13.5,-17.5 parent: 1 + - uid: 869 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1 - uid: 6564 components: - type: Transform @@ -28835,6 +33855,243 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 1 +- proto: CP14WallWoodenSpruce + entities: + - uid: 780 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1 - proto: CP14WaterReeds entities: - uid: 14863 @@ -28847,8 +34104,538 @@ entities: - type: Transform pos: 20.385162,21.459517 parent: 1 +- proto: CP14WeaponDaggerIron + entities: + - uid: 8959 + components: + - type: Transform + pos: -17.417374,-19.433372 + parent: 1 + - uid: 8960 + components: + - type: Transform + pos: -17.57493,-19.55706 + parent: 1 +- proto: CP14WeaponDaggerSickle + entities: + - uid: 1941 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1942 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1943 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1957 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1958 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponFork + entities: + - uid: 1910 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1920 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1923 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1928 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1930 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.997223,-20.182327 + parent: 1 + - uid: 8963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.17605,-13.383461 + parent: 1 + - uid: 8964 + components: + - type: Transform + pos: -19.952974,-13.253024 + parent: 1 +- proto: CP14WeaponHammerIron + entities: + - uid: 956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.669184,-45.346794 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: -7.3542404,-45.35804 + parent: 1 + - uid: 1924 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1925 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1926 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1927 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponPickaxeIron + entities: + - uid: 1918 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1919 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1921 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1922 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.761353,13.7191 + parent: 1 + - uid: 8976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.474083,1.898766 + parent: 1 +- proto: CP14WeaponShieldBuckler + entities: + - uid: 1914 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1915 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1916 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1929 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponShieldWooden + entities: + - uid: 1932 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1933 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1934 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1935 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponShovelIron + entities: + - uid: 1911 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1912 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1913 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1917 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1936 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.9840145,-4.659054 + parent: 1 + - uid: 8980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.705112,13.2580805 + parent: 1 + - uid: 8982 + components: + - type: Transform + pos: 24.866365,1.8144326 + parent: 1 +- proto: CP14WeaponSkimitarIron + entities: + - uid: 1944 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1945 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1946 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponSpearIron + entities: + - uid: 1948 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1951 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1952 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1953 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.697556,1.4096341 + parent: 1 + - uid: 8984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.849485,1.4433675 + parent: 1 + - uid: 8989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.795097,12.99946 + parent: 1 + - uid: 8990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.817593,12.830794 + parent: 1 +- proto: CP14WeaponSwordIron + entities: + - uid: 1938 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1939 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1940 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponTowerShieldWooden + entities: + - uid: 1909 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1931 + components: + - type: Transform + parent: 1908 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponTwoHandedSwordIron + entities: + - uid: 1947 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1954 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1955 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1956 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CP14WeaponWarAxeIron + entities: + - uid: 1949 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1950 + components: + - type: Transform + parent: 1937 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CP14WindowStoneBrick entities: + - uid: 778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-42.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 34.5,3.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 35.5,3.5 + parent: 1 - uid: 1633 components: - type: Transform @@ -28903,18 +34690,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-14.5 parent: 1 - - uid: 14873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 1 - - uid: 14874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 1 - uid: 14881 components: - type: Transform @@ -28973,6 +34748,32 @@ entities: parent: 1 - proto: CP14WindowWooden entities: + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 1 - uid: 6741 components: - type: Transform @@ -29373,6 +35174,26 @@ entities: parent: 1 - proto: CP14WoodenBed entities: + - uid: 1836 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 1 + - uid: 1837 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 1 + - uid: 1896 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 1 - uid: 7234 components: - type: Transform @@ -29408,11 +35229,6 @@ entities: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 15007 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 1 - uid: 15014 components: - type: Transform @@ -29530,10 +35346,10 @@ entities: parent: 1 - proto: CP14WoodenCabinetGuildmaster entities: - - uid: 15055 + - uid: 1895 components: - type: Transform - pos: -5.5,-11.5 + pos: 4.5,-39.5 parent: 1 - proto: CP14WoodenCabinetInvestigator entities: @@ -29559,6 +35375,85 @@ entities: parent: 1 - proto: CP14WoodenChest entities: + - uid: 1908 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1936 + - 1935 + - 1934 + - 1933 + - 1932 + - 1931 + - 1909 + - 1910 + - 1911 + - 1912 + - 1913 + - 1914 + - 1915 + - 1916 + - 1917 + - 1918 + - 1919 + - 1920 + - 1921 + - 1922 + - 1923 + - 1924 + - 1925 + - 1926 + - 1927 + - 1928 + - 1929 + - 1930 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1937 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1938 + - 1939 + - 1940 + - 1941 + - 1942 + - 1943 + - 1944 + - 1945 + - 1946 + - 1947 + - 1948 + - 1949 + - 1950 + - 1951 + - 1952 + - 1953 + - 1954 + - 1955 + - 1956 + - 1957 + - 1958 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 7537 components: - type: Transform @@ -29665,10 +35560,10 @@ entities: parent: 1 - proto: CP14WoodenClosetGuildmasterFilled entities: - - uid: 15089 + - uid: 1829 components: - type: Transform - pos: -6.5,-11.5 + pos: 7.5,-39.5 parent: 1 - proto: CP14WoodenClosetMerchantFilled entities: @@ -29684,6 +35579,25 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 1 +- proto: CP14WoodenDoorAdventureGuild + entities: + - uid: 1839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 1 + - uid: 1840 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 1 + - uid: 1846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 1 - proto: CP14WoodenDoorAlchemy1 entities: - uid: 15096 @@ -29937,6 +35851,12 @@ entities: parent: 1 - proto: CP14WoodenDoorWindowed entities: + - uid: 1567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-32.5 + parent: 1 - uid: 15066 components: - type: Transform @@ -29945,6 +35865,24 @@ entities: parent: 1 - proto: CP14WoodenDoorWindowedMirrored entities: + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-13.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-14.5 + parent: 1 + - uid: 1826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 1 - uid: 15074 components: - type: Transform @@ -29998,6 +35936,11 @@ entities: parent: 1 - proto: CP14Workbench entities: + - uid: 921 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 - uid: 15164 components: - type: Transform diff --git a/Resources/Maps/_CP14/comoss_d.yml b/Resources/Maps/_CP14/comoss_d.yml index 8338bbbb9c..e27489f3a1 100644 --- a/Resources/Maps/_CP14/comoss_d.yml +++ b/Resources/Maps/_CP14/comoss_d.yml @@ -4,8 +4,8 @@ meta: engineVersion: 265.0.0 forkId: "" forkVersion: "" - time: 08/11/2025 09:33:17 - entityCount: 23409 + time: 09/07/2025 13:44:45 + entityCount: 23413 maps: - 1 grids: @@ -749,48 +749,6 @@ entities: - type: Transform pos: 49.269325,-15.964533 parent: 1 -- proto: CP14BaseShield - entities: - - uid: 23375 - components: - - type: Transform - parent: 23374 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23376 - components: - - type: Transform - parent: 23374 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23377 - components: - - type: Transform - parent: 23374 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23378 - components: - - type: Transform - parent: 23374 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23379 - components: - - type: Transform - parent: 23374 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23406 - components: - - type: Transform - pos: 22.628853,-17.18603 - parent: 1 - proto: CP14BaseVat entities: - uid: 27 @@ -99799,7 +99757,7 @@ entities: - type: Transform pos: -6.616871,-35.262444 parent: 1 -- proto: CP14ClothingBeltQuiverIronArrow +- proto: CP14ClothingBeltQuiverArrows entities: - uid: 23381 components: @@ -100000,6 +99958,27 @@ entities: canCollide: False - proto: CP14CopperCoin1 entities: + - uid: 19655 + components: + - type: Transform + parent: 19654 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19656 + components: + - type: Transform + parent: 19654 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19657 + components: + - type: Transform + parent: 19654 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 19754 components: - type: Transform @@ -100025,6 +100004,58 @@ entities: - type: Transform pos: 37.238976,38.83274 parent: 1 + - uid: 20653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.04069,28.695343 + parent: 1 + - uid: 20654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.686516,29.049511 + parent: 1 + - uid: 20656 + components: + - type: Transform + pos: 57.78772,-39.823143 + parent: 1 + - uid: 23392 + components: + - type: Transform + parent: 23391 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23393 + components: + - type: Transform + parent: 23391 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23394 + components: + - type: Transform + parent: 23391 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23395 + components: + - type: Transform + parent: 23391 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23396 + components: + - type: Transform + parent: 23391 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CP14CraneBarrel entities: - uid: 19759 @@ -104952,138 +104983,7 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: CP14ModularBladeBoneSword - entities: - - uid: 20653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.04069,28.695343 - parent: 1 -- proto: CP14ModularGripIronLongGuard - entities: - - uid: 19655 - components: - - type: Transform - parent: 19654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19656 - components: - - type: Transform - parent: 19654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19657 - components: - - type: Transform - parent: 19654 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CP14ModularGripWoodenLong - entities: - - uid: 20654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.686516,29.049511 - parent: 1 -- proto: CP14ModularGuardHalberd - entities: - - uid: 23392 - components: - - type: Transform - parent: 23391 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23393 - components: - - type: Transform - parent: 23391 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23394 - components: - - type: Transform - parent: 23391 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23395 - components: - - type: Transform - parent: 23391 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23396 - components: - - type: Transform - parent: 23391 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CP14ModularInlayQuartzWater - entities: - - uid: 20656 - components: - - type: Transform - pos: 57.78772,-39.823143 - parent: 1 -- proto: CP14ModularIronDagger - entities: - - uid: 20657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.32473,-9.408573 - parent: 1 - - type: CollisionWake - enabled: False - - uid: 20658 - components: - - type: Transform - pos: -9.242605,-0.28940845 - parent: 1 - - uid: 20659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.204089,-0.0896281 - parent: 1 -- proto: CP14ModularIronPickaxe - entities: - - uid: 20660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.62259,39.517784 - parent: 1 - - uid: 20661 - components: - - type: Transform - pos: -73.40671,32.00686 - parent: 1 - - uid: 20662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -70.56778,28.4129 - parent: 1 -- proto: CP14ModularIronShovel - entities: - - uid: 20663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -71.14161,31.674646 - parent: 1 -- proto: CP14ModularWoodMop +- proto: CP14Mop entities: - uid: 25 components: @@ -117259,6 +117159,36 @@ entities: fixtures: {} - proto: CP14WallmountTorchAlwaysPowered entities: + - uid: 22011 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 22012 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 22015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 22017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + - type: Fixtures + fixtures: {} - uid: 22241 components: - type: Transform @@ -122838,6 +122768,96 @@ entities: rot: -1.5707963267948966 rad pos: 1.3843646,-18.70323 parent: 1 +- proto: CP14WeaponDaggerIron + entities: + - uid: 20657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.32473,-9.408573 + parent: 1 + - type: CollisionWake + enabled: False + - uid: 20658 + components: + - type: Transform + pos: -9.242605,-0.28940845 + parent: 1 + - uid: 20659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.204089,-0.0896281 + parent: 1 +- proto: CP14WeaponPickaxeIron + entities: + - uid: 20660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.62259,39.517784 + parent: 1 + - uid: 20661 + components: + - type: Transform + pos: -73.40671,32.00686 + parent: 1 + - uid: 20662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.56778,28.4129 + parent: 1 +- proto: CP14WeaponShieldWooden + entities: + - uid: 23375 + components: + - type: Transform + parent: 23374 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23376 + components: + - type: Transform + parent: 23374 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23377 + components: + - type: Transform + parent: 23374 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23378 + components: + - type: Transform + parent: 23374 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23379 + components: + - type: Transform + parent: 23374 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23406 + components: + - type: Transform + pos: 22.628853,-17.18603 + parent: 1 +- proto: CP14WeaponShovelIron + entities: + - uid: 20663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.14161,31.674646 + parent: 1 - proto: CP14WindowStoneBrick entities: - uid: 23411 diff --git a/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml b/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml index 6e51650cb6..a4f1d87ded 100644 --- a/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml +++ b/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml @@ -5,6 +5,8 @@ components: - type: StorageFill contents: + - id: CP14WeaponDaggerSickle + amount: 2 - id: CP14HandLabeler - id: CP14Lighter - id: CP14ManaOperationGlove @@ -17,23 +19,16 @@ amount: 1 - id: CP14Dropper amount: 1 - - id: CP14VialTinyReinforced - amount: 1 - id: CP14VialTiny amount: 3 - - id: CP14VialSmallReinforced - amount: 1 - id: CP14VialSmall amount: 3 - - id: CP14VialSkullReinforced - prob: 0.3 - id: CP14VialSkull prob: 0.5 - id: CP14PaperFolderBlue - id: CP14PenFeather amount: 1 - id: CP14WoodenPlanks20 - #Random start resource - id: CP14VialMediumEarthEssence - id: CP14VialMediumFireEssence - id: CP14VialMediumWaterEssence @@ -98,7 +93,6 @@ - id: CP14StampDenied - id: CP14StampApproved - id: CP14PaperFolderBlue - - id: CP14ArmorIronChainmailPresets - type: entity parent: CP14WoodenCloset @@ -107,17 +101,20 @@ components: - type: StorageFill contents: + - id: CP14WeaponFork + amount: 2 - id: CP14Fork amount: 2 - id: CP14Spoon amount: 2 + - id: CP14WeaponDaggerHatchet + amount: 2 - id: CP14FryingPan - id: CP14CookingPot - - id: CP14ModularIronDagger - - id: CP14SackFarmingSeed - id: CP14PlateWooden amount: 2 - id: CP14BowlWooden amount: 2 - id: CP14BookTieflingGambit - id: CP14GuidebookCooking + - id: CP14SackFarmingSeedFull diff --git a/Resources/Prototypes/_CP14/Catalog/Fills/crates.yml b/Resources/Prototypes/_CP14/Catalog/Fills/crates.yml index 9c6dadf503..83c4f784b0 100644 --- a/Resources/Prototypes/_CP14/Catalog/Fills/crates.yml +++ b/Resources/Prototypes/_CP14/Catalog/Fills/crates.yml @@ -51,13 +51,8 @@ - id: CP14Scissors - id: CP14Torch - id: CP14Lighter - - id: CP14ModularIronShovel - id: CP14KeyFile - - id: CP14ModularWoodMop - id: CP14LockCopper - - id: CP14ModularCopperPickaxe - - id: CP14ModularIronSickle - - id: CP14ModularIronPickaxe weight: 0.3 diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/dash.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/dash.yml index 08f671f1f2..a47ce436da 100644 --- a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/dash.yml +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/dash.yml @@ -5,7 +5,7 @@ description: You make a quick dash to the chosen position to quickly close the distance or dodge danger. components: - type: CP14ActionStaminaCost - stamina: 40 + stamina: 20 - type: CP14MagicEffect effects: - !type:CP14SpellDash diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/keen_eye.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/keen_eye.yml new file mode 100644 index 0000000000..929fc1f78d --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/keen_eye.yml @@ -0,0 +1,15 @@ +- type: entity + id: CP14ActionToggleKeenEye + name: Keen Eye + parent: BaseMentalAction + description: You gaze into the distance, which allows you to see things that are farther away. + components: + - type: Action + useDelay: 5 # Spamming prevention + icon: + sprite: _CP14/Actions/Spells/physical.rsi + state: keen_eye + checkCanInteract: false + itemIconStyle: BigAction + - type: InstantAction + event: !type:CP14EyeOffsetToggleActionEvent \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/kick.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/kick.yml index c2276047ed..defb1e164b 100644 --- a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/kick.yml +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Athletic/kick.yml @@ -13,12 +13,10 @@ stamina: 40 - type: CP14MagicEffect effects: - - !type:CP14SpellApplyEntityEffect - effects: - - !type:Paralyze - paralyzeTime: 1 + - !type:CP14SpellKnockdown - !type:CP14SpellThrowFromUser - throwPower: 9 + distance: 1.5 + throwPower: 5 - !type:CP14SpellSpawnEntityOnTarget spawns: - CP14DustEffectKickSound diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Life/air_saturation.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Life/air_saturation.yml index 6c82195acc..f28c7f83e6 100644 --- a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Life/air_saturation.yml +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Life/air_saturation.yml @@ -18,7 +18,7 @@ - !type:HealthChange damage: types: - Asphyxiation: -2 + Asphyxiation: -5 - !type:Jitter - type: CP14MagicEffectCastingVisual proto: CP14RuneAirSaturation diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Meta/mana_splitting.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Meta/mana_splitting.yml index 167536727c..6a9b5d7ace 100644 --- a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Meta/mana_splitting.yml +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Meta/mana_splitting.yml @@ -20,7 +20,7 @@ - !type:CP14SpellApplyEntityEffect effects: - !type:CP14ManaChange - manaDelta: -15 + manaDelta: -5 safe: false - type: CP14MagicEffectCastingVisual proto: CP14RuneMagicSplitting diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Vampire/search_vampire.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Vampire/search_vampire.yml index 5c4fa14a9e..c14d4a8caf 100644 --- a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Vampire/search_vampire.yml +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Vampire/search_vampire.yml @@ -29,7 +29,7 @@ parent: CP14ActionSpellBloodConnection id: CP14ActionSpellBloodEnemySearch name: Blood identification - description: You are searching within a large radius for all vampires from other factions. + description: You are searching within a large radius for all vampires from other factions and their clan hearts. components: - type: CP14MagicEffect effects: diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_arrow.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_arrow.yml index ac2d47509f..21eb2a7e47 100644 --- a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_arrow.yml +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_arrow.yml @@ -33,54 +33,32 @@ castDelay: 0.5 breakOnMove: false +- type: entity + parent: CP14BaseSpellScrollWater + id: CP14SpellScrollIceArrow + name: ice arrow spell scroll + components: + - type: CP14SpellStorage + spells: + - CP14ActionSpellIceArrow + - type: entity id: CP14IceArrow - parent: BaseItem + parent: CP14ArrowBase name: ice arrow description: A sharp ice arrow created with magic. It melts and will soon disappear, but you can shoot it once with your bow. - categories: [ ForkFiltered ] components: - type: Sprite sprite: _CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi - state: icon - - type: Item - storedRotation: 0 - - type: Fixtures - fixtures: - fix1: - shape: !type:PhysShapeCircle - radius: 0.2 - density: 5 - mask: - - ItemMask - restitution: 0.3 - friction: 0.2 - projectile: - shape: - !type:PhysShapeAabb - bounds: "-0.1,-0.1,0.1,0.1" - hard: false - mask: - - Impassable - - BulletImpassable - - type: EmbeddableProjectile - sound: /Audio/Weapons/star_hit.ogg - embedOnThrow: false - - type: ThrowingAngle - angle: 0 - - type: Ammo - muzzleFlash: null - - type: Tag - tags: - - CP14Arrow + layers: + - state: icon + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] - type: Projectile - deleteOnCollide: false - onlyCollideWhenShot: true damage: types: Piercing: 15 Cold: 5 - - type: Damageable - type: Destructible thresholds: - trigger: @@ -93,18 +71,4 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: TimedDespawn - lifetime: 240 - - type: DamageOnLand - damage: - types: - Blunt: 10 - -- type: entity - parent: CP14BaseSpellScrollWater - id: CP14SpellScrollIceArrow - name: ice arrow spell scroll - components: - - type: CP14SpellStorage - spells: - - CP14ActionSpellIceArrow - + lifetime: 240 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_dagger.yml b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_dagger.yml index 111f15dc53..56ff342c85 100644 --- a/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_dagger.yml +++ b/Resources/Prototypes/_CP14/Entities/Actions/Spells/Water/ice_dagger.yml @@ -16,7 +16,7 @@ - CP14ImpactEffectWaterCreation - !type:CP14SpellSpawnInHandEntity spawns: - - CP14IceDagger + - CP14WeaponDaggerIce - type: CP14ActionSpeaking startSpeech: "Un pittore sulla..." endSpeech: "soglia della mano" @@ -35,92 +35,25 @@ - type: entity name: ice dagger - parent: BaseItem - id: CP14IceDagger + parent: CP14BaseWeaponDagger + id: CP14WeaponDaggerIce description: A sharp ice dagger, not very durable but can temporarily replace real weapons. - categories: [ ForkFiltered ] components: - - type: Sharp - type: Sprite - sprite: _CP14/Objects/Weapons/Melee/ice_dagger.rsi + sprite: _CP14/Objects/Weapons/Melee/Dagger/ice.rsi state: icon - type: MeleeWeapon - resetOnHandSelected: false #Fast swap - range: 1.0 # 1.5 standart - cPAnimationOffset: -0.75 #-1 standart - attackRate: 1.5 # 1 standart - angle: 45 - wideAnimationRotation: 135 - wideAnimation: CP14WeaponArcSlash damage: types: - Slash: 2 - Piercing: 5 - Cold: 3 - soundHit: - path: /Audio/Weapons/bladeslice.ogg - cPAnimationLength: 0.25 - - type: Clothing - equipDelay: 0.25 - unequipDelay: 0.25 - quickEquip: false - breakOnMove: false - slots: - - belt - - type: Item - shape: - - 0,0,0,1 - storedOffset: 0, 5 - storedRotation: 45 - size: Normal - - type: ExaminableDamage - messages: CP14WeaponMessages - - type: DisarmMalus - - type: ThrowingAngle - angle: 135 - - type: EmbeddableProjectile - offset: -0.15,-0.15 - removalTime: 0.5 - - type: LandAtCursor + Slash: 3 + Piercing: 3 + Cold: 4 - type: DamageOtherOnHit damage: types: - Piercing: 10 - Cold: 5 - - type: DamageOnLand - damage: - types: - Blunt: 5 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - vertices: - - -0.40,-0.30 - - -0.30,-0.40 - - 0.40,0.30 - - 0.30,0.40 - density: 10 - mask: - - ItemMask - restitution: 0.3 - friction: 0.2 - - type: CP14SharpeningStone - - type: UseDelay - - type: Tool - qualities: - - Slicing - useSound: - path: /Audio/Items/Culinary/chop.ogg - - type: Utensil - types: - - Knife - - type: CP14WallpaperRemover - - type: CP14MeleeSelfDamage - damageToSelf: - types: - Blunt: 1 # 20 hits - - type: Damageable + Slash: 3 + Piercing: 3 + Cold: 4 - type: Destructible thresholds: - trigger: @@ -134,7 +67,6 @@ acts: ["Destruction"] - type: TimedDespawn lifetime: 60 - - type: Execution - type: entity parent: CP14BaseSpellScrollWater diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Belt/quiver.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Belt/quiver.yml index 3db1e03fa2..402b9b751d 100644 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Belt/quiver.yml +++ b/Resources/Prototypes/_CP14/Entities/Clothing/Belt/quiver.yml @@ -39,55 +39,11 @@ - type: entity parent: CP14ClothingBeltQuiver - id: CP14ClothingBeltQuiverIronArrow + id: CP14ClothingBeltQuiverArrows categories: [ ForkFiltered ] - suffix: Full. Iron. Arrow + suffix: Filled with arrows components: - type: StorageFill contents: - - id: CP14ModularIronArrow - amount: 16 - -- type: entity - parent: CP14ClothingBeltQuiver - id: CP14ClothingBeltQuiverCopperArrow - categories: [ ForkFiltered ] - suffix: Full. Copper. Arrow - components: - - type: StorageFill - contents: - - id: CP14ModularCopperArrow - amount: 16 - -- type: entity - parent: CP14ClothingBeltQuiver - id: CP14ClothingBeltQuiverMithrilArrow - categories: [ ForkFiltered ] - suffix: Full. Mithril. Arrow - components: - - type: StorageFill - contents: - - id: CP14ModularMithrilArrow - amount: 16 - -- type: entity - parent: CP14ClothingBeltQuiver - id: CP14ClothingBeltQuiverCrossbolt - categories: [ ForkFiltered ] - suffix: Full. Iron. Crossbolt - components: - - type: StorageFill - contents: - - id: CP14CrossboltIron - amount: 32 - -- type: entity - parent: CP14ClothingBeltQuiver - id: CP14ClothingBeltQuiverBigCrossbolt - categories: [ ForkFiltered ] - suffix: Full. Iron. BigCrossbolt - components: - - type: StorageFill - contents: - - id: CP14BigCrossboltIron + - id: CP14Arrow amount: 16 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Aventail/chainmail.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Aventail/chainmail.yml deleted file mode 100644 index 4072b76352..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Aventail/chainmail.yml +++ /dev/null @@ -1,82 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularAventailBase - abstract: true - categories: [ ForkFiltered ] - components: - - type: Item - size: Small - storedRotation: 0 - shape: - - 0,0,0,0 - -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailIronChainmail - name: iron aventail chainmail - description: A aventail of chainmail to protect the neck from blows and piercing at vital points. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - AventailIronChainmail - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailGoldChainmail - name: golden aventail chainmail - description: A aventail of chainmail to protect the neck from blows and piercing at vital points. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - AventailGoldChainmail - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailCopperChainmail - name: copper aventail chainmail - description: A aventail of chainmail to protect the neck from blows and piercing at vital points. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - AventailCopperChainmail - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailMithrilChainmail - name: mithril aventail chainmail - description: A aventail of chainmail to protect the neck from blows and piercing at vital points. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - AventailMithrilChainmail - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Aventail/plate.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Aventail/plate.yml deleted file mode 100644 index 72f7712b5f..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Aventail/plate.yml +++ /dev/null @@ -1,70 +0,0 @@ -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailIronPlate - name: iron aventail plate - description: An iron sheet aventail to protect the neck from blows and piercing in vital places. Uncomfortable. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - AventailIronPlate - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailGoldPlate - name: golden aventail plate - description: An golden sheet aventail to protect the neck from blows and piercing in vital places. Uncomfortable. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - AventailGoldPlate - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailCopperPlate - name: copper aventail plate - description: An copper sheet aventail to protect the neck from blows and piercing in vital places. Uncomfortable. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - AventailCopperPlate - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularAventailBase - id: CP14ModularAventailMithrilPlate - name: mithril aventail plate - description: An mithril sheet aventail to protect the neck from blows and piercing in vital places. Uncomfortable. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - AventailMithrilPlate - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Helmet/capellina.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Helmet/capellina.yml deleted file mode 100644 index 68dc1111d6..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Helmet/capellina.yml +++ /dev/null @@ -1,143 +0,0 @@ -- type: entity - parent: CP14ClothingHeadBase - id: CP14ModularHeadBase - abstract: true - categories: [ ForkFiltered ] - components: - - type: ClothingSpeedModifier - walkModifier: 1 - sprintModifier: 1 - - type: CP14LabeledRenaming - - type: CP14ModularCraftStartPoint - startSlots: - - Visor - - Aventail - -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetIronCapellina - name: iron capellina - description: Protects against large object strikes to the head. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.93 - Slash: 0.94 - Piercing: 0.97 - - type: ClothingSpeedModifier - walkModifier: 0.97 - sprintModifier: 0.97 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetIronCapellina - - type: CP14MagicManacostModify - globalModifier: 1.05 - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetGoldCapellina - name: golden capellina - description: Protects against large object strikes to the head. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - layers: - - state: icon - color: "#ffe269" - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - clothingVisuals: - head: - - state: equipped-HELMET - color: "#ffe269" - - type: Armor - modifiers: - coefficients: - Blunt: 0.96 - Slash: 0.98 - Piercing: 0.99 - - type: ClothingSpeedModifier - walkModifier: 0.96 - sprintModifier: 0.96 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetGoldCapellina - - type: CP14MagicManacostModify - globalModifier: 1.01 - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetCopperCapellina - name: copper capellina - description: Protects against large object strikes to the head. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - layers: - - state: icon - color: "#e28f08" - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - clothingVisuals: - head: - - state: equipped-HELMET - color: "#e28f08" - - type: Armor - modifiers: - coefficients: - Blunt: 0.95 - Slash: 0.96 - Piercing: 0.98 - - type: ClothingSpeedModifier - walkModifier: 0.98 - sprintModifier: 0.98 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetCopperCapellina - - type: CP14MagicManacostModify - globalModifier: 1.03 - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetMithrilCapellina - name: mithril capellina - description: Protects against large object strikes to the head. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - layers: - - state: icon - color: "#38f0b3" - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/capellina.rsi - clothingVisuals: - head: - - state: equipped-HELMET - color: "#38f0b3" - - type: Armor - modifiers: - coefficients: - Blunt: 0.91 - Slash: 0.92 - Piercing: 0.95 - - type: ClothingSpeedModifier - walkModifier: 0.98 - sprintModifier: 0.98 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetMithrilCapellina - - type: CP14MagicManacostModify - globalModifier: 0.98 - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Helmet/palm_helmet.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Helmet/palm_helmet.yml deleted file mode 100644 index f760f819ef..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Helmet/palm_helmet.yml +++ /dev/null @@ -1,130 +0,0 @@ -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetIronPalmHelmet - name: iron palm helmet - description: A tight fitting helmet that protects your head from impact. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.92 - Slash: 0.97 - Piercing: 0.95 - Heat: 0.98 - - type: ClothingSpeedModifier - walkModifier: 0.97 - sprintModifier: 0.97 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetIronCapellina - - type: CP14MagicManacostModify - globalModifier: 1.05 - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetGoldPalmHelmet - name: golden palm helmet - description: A tight fitting helmet that protects your head from impact. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - layers: - - state: icon - color: "#ffe269" - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - clothingVisuals: - head: - - state: equipped-HELMET - color: "#ffe269" - - type: Armor - modifiers: - coefficients: - Blunt: 0.95 - Slash: 0.96 - Piercing: 0.96 - - type: ClothingSpeedModifier - walkModifier: 0.96 - sprintModifier: 0.96 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetGoldPalmHelmet - - type: CP14MagicManacostModify - globalModifier: 1.01 - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetCopperPalmHelmet - name: copper palm helmet - description: A tight fitting helmet that protects your head from impact. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - layers: - - state: icon - color: "#e28f08" - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - clothingVisuals: - head: - - state: equipped-HELMET - color: "#e28f08" - - type: Armor - modifiers: - coefficients: - Blunt: 0.94 - Slash: 0.98 - Piercing: 0.96 - - type: ClothingSpeedModifier - walkModifier: 0.98 - sprintModifier: 0.98 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetCopperPalmHelmet - - type: CP14MagicManacostModify - globalModifier: 1.03 - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularHeadBase - id: CP14HelmetMithrilPalmHelmet - name: mithril palm helmet - description: A tight fitting helmet that protects your head from impact. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - layers: - - state: icon - color: "#38f0b3" - - type: Clothing - sprite: _CP14/Clothing/Head/ModularArmor/Helmet/palm_helmet.rsi - clothingVisuals: - head: - - state: equipped-HELMET - color: "#38f0b3" - - type: Armor - modifiers: - coefficients: - Blunt: 0.90 - Slash: 0.95 - Piercing: 0.93 - Heat: 0.98 - - type: ClothingSpeedModifier - walkModifier: 0.98 - sprintModifier: 0.98 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14HelmetMithrilPalmHelmet - - type: CP14MagicManacostModify - globalModifier: 0.98 - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Visor/chainmail.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Visor/chainmail.yml deleted file mode 100644 index b3794ccf6e..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Visor/chainmail.yml +++ /dev/null @@ -1,82 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularVisorBase - abstract: true - categories: [ ForkFiltered ] - components: - - type: Item - size: Small - storedRotation: 0 - shape: - - 0,0,0,0 - -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorIronChainmail - name: iron visor chainmail - description: A chainmail visor that protects the face from nasty damage and leaves the wearer looking all that beautiful. And the skin breathes. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - VisorIronChainmail - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorGoldChainmail - name: golden visor chainmail - description: A chainmail visor that protects the face from nasty damage and leaves the wearer looking all that beautiful. And the skin breathes. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - VisorGoldChainmail - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorCopperChainmail - name: copper visor chainmail - description: A chainmail visor that protects the face from nasty damage and leaves the wearer looking all that beautiful. And the skin breathes. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - VisorCopperChainmail - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorMithrilChainmail - name: mithril visor chainmail - description: A chainmail visor that protects the face from nasty damage and leaves the wearer looking all that beautiful. And the skin breathes. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - VisorMithrilChainmail - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Visor/plate.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Visor/plate.yml deleted file mode 100644 index d9a123c378..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/ModularArmor/Visor/plate.yml +++ /dev/null @@ -1,70 +0,0 @@ -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorIronPlate - name: iron visor plate - description: A iron plate visor that protects the face from nasty damage and leaves the wearer looking all that good-looking. Not as comfortable. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - VisorIronPlate - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorGoldPlate - name: golden visor plate - description: A golden plate visor that protects the face from nasty damage and leaves the wearer looking all that good-looking. Very uncomfortable. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - VisorGoldPlate - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorCopperPlate - name: copper visor plate - description: A copper plate visor that protects the face from nasty damage and leaves the wearer looking all that good-looking. Not as comfortable. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - VisorCopperPlate - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularVisorBase - id: CP14ModularVisorMithrilPlate - name: mithril visor plate - description: A mithril plate visor that protects the face from nasty damage and leaves the wearer looking all that good-looking. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - VisorMithrilPlate - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/ModularPresets/armour.yml b/Resources/Prototypes/_CP14/Entities/Clothing/ModularPresets/armour.yml deleted file mode 100644 index ac4b3b0adf..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/ModularPresets/armour.yml +++ /dev/null @@ -1,119 +0,0 @@ -- type: entity - id: CP14ArmorIronCuirassPresets - parent: CP14ArmorIronCuirass - name: full iron cuirass - description: A full iron armour to protect its wearer from other sharp iron. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - state: icon - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularCuissesIronPlate - - CP14ModularGreaveIronPlate - -- type: entity - id: CP14ArmorGoldCuirassPresets - parent: CP14ArmorGoldCuirass - name: full golden cuirass - description: A full armour of purest gold, it is as expensive as it is uncomfortable, it is hard to imagine who would wear it and why. - components: - - type: Sprite - layers: - - state: icon - color: "#ffaf47" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - state: icon - color: "#ffaf47" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - state: icon - color: "#ffaf47" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularCuissesGoldPlate - - CP14ModularGreaveGoldPlate - -- type: entity - id: CP14ArmorCopperCuirassPresets - parent: CP14ArmorCopperCuirass - name: full copper cuirass - description: Full copper armour, cheap and surly, some even find it more comfortable than iron armour. - components: - - type: Sprite - layers: - - state: icon - color: "#bd712f" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - state: icon - color: "#bd712f" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - state: icon - color: "#bd712f" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularCuissesCopperPlate - - CP14ModularGreaveCopperPlate - -- type: entity - id: CP14ArmorMithrilCuirassPresets - parent: CP14ArmorMithrilCuirass - name: full mithril cuirass - description: Every adventurer's dream, mithril armour is strong, sturdy and almost unrestrictive to movement. If there's an ideal, this is it. - components: - - type: Sprite - layers: - - state: icon - color: "#45d2a4" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - state: icon - color: "#45d2a4" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - state: icon - color: "#45d2a4" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularCuissesMithrilPlate - - CP14ModularGreaveMithrilPlate - -- type: entity - id: CP14ArmorIronChainmailPresets - parent: CP14ArmorIronChainmail - name: full iron chainmail - description: Full iron ringed armour, lightweight and has decent protection. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - state: icon - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularCuissesIronChainmail - - CP14ModularGreaveIronChainmail - -- type: entity - id: CP14ArmorMithrilChainmailPresets - parent: CP14ArmorMithrilChainmail - name: full mithril chainmail - description: A full mithril armour that may have been slowly and painstakingly assembled by dwarven smiths. A most valuable piece of work. - components: - - type: Sprite - layers: - - state: icon - color: "#45d2a4" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - state: icon - color: "#45d2a4" - - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - state: icon - color: "#45d2a4" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularCuissesMithrilChainmail - - CP14ModularGreaveMithrilChainmail diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/chainmail.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/chainmail.yml deleted file mode 100644 index 64ef3d3f1c..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/chainmail.yml +++ /dev/null @@ -1,152 +0,0 @@ -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorIronChainmail - name: iron chainmail - description: Ringed armour made of many small metal rings. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.96 - Slash: 0.85 - Piercing: 0.96 - - type: ClothingSpeedModifier - walkModifier: 0.99 - sprintModifier: 0.99 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorIronChainmail - - type: CP14MagicManacostModify - globalModifier: 1.15 - - type: PhysicalComposition - materialComposition: - CP14Iron: 40 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorGoldChainmail - name: golden chainmail - description: Ringed armour made of many small metal rings. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#ffe269" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#ffe269" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#ffe269" - right: - - state: inhand-right - color: "#ffe269" - - type: Armor - modifiers: - coefficients: - Blunt: 0.98 - Slash: 0.92 - Piercing: 0.99 - - type: ClothingSpeedModifier - walkModifier: 0.98 - sprintModifier: 0.98 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorGoldChainmail - - type: CP14MagicManacostModify - globalModifier: 1.05 - - type: PhysicalComposition - materialComposition: - CP14Gold: 40 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorCopperChainmail - name: copper chainmail - description: Ringed armour made of many small metal rings. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#e28f08" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#e28f08" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#e28f08" - right: - - state: inhand-right - color: "#e28f08" - - type: Armor - modifiers: - coefficients: - Blunt: 0.98 - Slash: 0.90 - Piercing: 0.99 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorCopperChainmail - - type: CP14MagicManacostModify - globalModifier: 1.1 - - type: PhysicalComposition - materialComposition: - CP14Copper: 40 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorMithrilChainmail - name: mithril chainmail - description: Ringed armour made of many small metal rings. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#38f0b3" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#38f0b3" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Chainmail/chainmail.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#38f0b3" - right: - - state: inhand-right - color: "#38f0b3" - - type: Armor - modifiers: - coefficients: - Blunt: 0.90 - Slash: 0.80 - Piercing: 0.95 - - type: ClothingSpeedModifier - walkModifier: 0.99 - sprintModifier: 0.99 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorMithrilChainmail - - type: CP14MagicManacostModify - globalModifier: 0.96 - - type: PhysicalComposition - materialComposition: - CP14Mithril: 40 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/cuirass.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/cuirass.yml deleted file mode 100644 index f55f1b2b20..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/cuirass.yml +++ /dev/null @@ -1,174 +0,0 @@ -- type: entity - parent: CP14ClothingOuterClothingBase - id: CP14ModularArmorBase - abstract: true - categories: [ ForkFiltered ] - components: - - type: ClothingSpeedModifier - walkModifier: 1 - sprintModifier: 1 - - type: CP14LabeledRenaming - - type: CP14ModularCraftStartPoint - startSlots: - - Cuisses - - Greave - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorIronCuirass - name: iron cuirass - description: Light armour plate on the chest, little protection, little heaviness. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.87 - Slash: 0.95 - Piercing: 0.87 - Heat: 0.92 - - type: ClothingSpeedModifier - walkModifier: 0.95 - sprintModifier: 0.95 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorIronCuirass - - type: CP14MagicManacostModify - globalModifier: 1.2 - - type: PhysicalComposition - materialComposition: - CP14Iron: 50 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorGoldCuirass - name: golden cuirass - description: Light armour plate on the chest, little protection, little heaviness. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#ffe269" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#ffe269" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#ffe269" - right: - - state: inhand-right - color: "#ffe269" - - type: Armor - modifiers: - coefficients: - Blunt: 0.94 - Slash: 0.98 - Piercing: 0.90 - Caustic: 0.90 - - type: ClothingSpeedModifier - walkModifier: 0.90 - sprintModifier: 0.90 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorGoldCuirass - - type: CP14MagicManacostModify - globalModifier: 1.1 - - type: PhysicalComposition - materialComposition: - CP14Gold: 50 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorCopperCuirass - name: copper cuirass - description: Light armour plate on the chest, little protection, little heaviness. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#e28f08" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#e28f08" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#e28f08" - right: - - state: inhand-right - color: "#e28f08" - - type: Armor - modifiers: - coefficients: - Blunt: 0.92 - Slash: 0.99 - Piercing: 0.92 - Heat: 0.95 - - type: ClothingSpeedModifier - walkModifier: 0.98 - sprintModifier: 0.98 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorCopperCuirass - - type: CP14MagicManacostModify - globalModifier: 1.15 - - type: PhysicalComposition - materialComposition: - CP14Copper: 50 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorMithrilCuirass - name: mithril cuirass - description: Light armour plate on the chest, little protection, little heaviness. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#38f0b3" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#38f0b3" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/cuirass.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#38f0b3" - right: - - state: inhand-right - color: "#38f0b3" - - type: Armor - modifiers: - coefficients: - Blunt: 0.82 - Slash: 0.92 - Piercing: 0.82 - Heat: 0.84 - - type: ClothingSpeedModifier - walkModifier: 0.98 - sprintModifier: 0.98 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorMithrilCuirass - - type: CP14MagicManacostModify - globalModifier: 0.95 - - type: PhysicalComposition - materialComposition: - CP14Mithril: 50 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/infantry_cuirass.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/infantry_cuirass.yml deleted file mode 100644 index b9ceef42f5..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Breastplate/infantry_cuirass.yml +++ /dev/null @@ -1,159 +0,0 @@ -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorIronInfantryCuirass - name: iron infantry cuirass - description: The light infantry cuirass, unlike the original, also protects from the back. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.84 - Slash: 0.94 - Piercing: 0.84 - Heat: 0.88 - - type: ClothingSpeedModifier - walkModifier: 0.93 - sprintModifier: 0.93 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorIronInfantryCuirass - - type: CP14MagicManacostModify - globalModifier: 1.24 - - type: PhysicalComposition - materialComposition: - CP14Iron: 60 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorGoldInfantryCuirass - name: golden infantry cuirass - description: The light infantry cuirass, unlike the original, also protects from the back. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - layers: - - state: icon - color: "#ffe269" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#ffe269" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#ffe269" - right: - - state: inhand-right - color: "#ffe269" - - type: Armor - modifiers: - coefficients: - Blunt: 0.91 - Slash: 0.98 - Piercing: 0.88 - Caustic: 0.86 - - type: ClothingSpeedModifier - walkModifier: 0.88 - sprintModifier: 0.88 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorGoldInfantryCuirass - - type: CP14MagicManacostModify - globalModifier: 1.14 - - type: PhysicalComposition - materialComposition: - CP14Gold: 60 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorCopperInfantryCuirass - name: copper infantry cuirass - description: The light infantry cuirass, unlike the original, also protects from the back. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - layers: - - state: icon - color: "#e28f08" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#e28f08" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#e28f08" - right: - - state: inhand-right - color: "#e28f08" - - type: Armor - modifiers: - coefficients: - Blunt: 0.90 - Slash: 0.98 - Piercing: 0.90 - Heat: 0.92 - - type: ClothingSpeedModifier - walkModifier: 0.96 - sprintModifier: 0.96 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorCopperInfantryCuirass - - type: CP14MagicManacostModify - globalModifier: 1.18 - - type: PhysicalComposition - materialComposition: - CP14Copper: 60 - -- type: entity - parent: CP14ModularArmorBase - id: CP14ArmorMithrilInfantryCuirass - name: mithril infantry cuirass - description: The light infantry cuirass, unlike the original, also protects from the back. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - layers: - - state: icon - color: "#38f0b3" - - type: Clothing - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - clothingVisuals: - outerClothing: - - state: equipped-OUTERCLOTHING - color: "#38f0b3" - - type: Item - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Breastplate/Cuirass/infantry_cuirass.rsi - inhandVisuals: - left: - - state: inhand-left - color: "#38f0b3" - right: - - state: inhand-right - color: "#38f0b3" - - type: Armor - modifiers: - coefficients: - Blunt: 0.80 - Slash: 0.89 - Piercing: 0.80 - Heat: 0.81 - - type: ClothingSpeedModifier - walkModifier: 0.96 - sprintModifier: 0.96 - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ArmorMithrilInfantryCuirass - - type: CP14MagicManacostModify - globalModifier: 0.92 - - type: PhysicalComposition - materialComposition: - CP14Mithril: 60 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Cuisses/chainmail.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Cuisses/chainmail.yml deleted file mode 100644 index 5a9dbb8821..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Cuisses/chainmail.yml +++ /dev/null @@ -1,70 +0,0 @@ -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesIronChainmail - name: iron chainmail cuisses - description: Ringed armour for the upper legs, the weight is virtually imperceptible. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - CuissesIronChainmail - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesGoldChainmail - name: golden chainmail cuisses - description: Ringed armour for the upper legs, the weight is virtually imperceptible. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - CuissesGoldChainmail - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesCopperChainmail - name: copper chainmail cuisses - description: Ringed armour for the upper legs, the weight is virtually imperceptible. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - CuissesCopperChainmail - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesMithrilChainmail - name: mithril chainmail cuisses - description: Ringed armour for the upper legs, the weight is virtually imperceptible. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - CuissesMithrilChainmail - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Cuisses/plate.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Cuisses/plate.yml deleted file mode 100644 index 6e33f506bd..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Cuisses/plate.yml +++ /dev/null @@ -1,85 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularCuissesBase - abstract: true - categories: [ ForkFiltered ] - components: - - type: Item - size: Small - storedRotation: 0 - shape: - - 0,0,0,0 - - type: CP14ModularCraftStartPoint - startSlots: - - Greave - -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesIronPlate - name: iron cuisses - description: Protects the top of your legs, it's harder to move in this one, but the extra protection might be worth it. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - CuissesIronPlate - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesGoldPlate - name: golden cuisses - description: Protects the top of the legs, protection is questionable, weight is decent. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - CuissesGoldPlate - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesCopperPlate - name: copper cuisses - description: Protects the top of your legs, it's harder to move in this one, but the extra protection might be worth it. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - CuissesCopperPlate - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularCuissesBase - id: CP14ModularCuissesMithrilPlate - name: mithril cuisses - description: Protects the top of your legs, it's harder to move in this one, but the extra protection might be worth it. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - CuissesMithrilPlate - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Greave/chainmail.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Greave/chainmail.yml deleted file mode 100644 index bace36defa..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Greave/chainmail.yml +++ /dev/null @@ -1,70 +0,0 @@ -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveIronChainmail - name: iron chainmail greave - description: Ringed greaves, comfortable and even protects a bit. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - GreaveIronChainmail - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveGoldChainmail - name: golden chainmail greave - description: Ringed greaves, comfortable and even protects a bit. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - GreaveGoldChainmail - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveCopperChainmail - name: copper chainmail greave - description: Ringed greaves, comfortable and even protects a bit. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - GreaveCopperChainmail - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveMithrilChainmail - name: mithril chainmail greave - description: Ringed greaves, comfortable and even protects a bit. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - GreaveMithrilChainmail - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Greave/plate.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Greave/plate.yml deleted file mode 100644 index 45eb969753..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/ModularArmor/Greave/plate.yml +++ /dev/null @@ -1,82 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularGreaveBase - abstract: true - categories: [ ForkFiltered ] - components: - - type: Item - size: Small - storedRotation: 0 - shape: - - 0,0,0,0 - -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveIronPlate - name: iron greave - description: Protects the lower part of the legs, also makes it difficult to move, but sometimes extra protection is more important than speed. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - GreaveIronPlate - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveGoldPlate - name: golden greave - description: Protects the lower part of the legs, also makes it difficult to move, though the use of gold as armour seems questionable. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - GreaveGoldPlate - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveCopperPlate - name: copper greave - description: Protects the lower part of the legs, also makes it difficult to move, but sometimes extra protection is more important than speed. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - GreaveCopperPlate - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularGreaveBase - id: CP14ModularGreaveMithrilPlate - name: mithril greave - description: Protects the lower part of the legs, also makes it difficult to move, but sometimes extra protection is more important than speed. - components: - - type: Sprite - sprite: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - GreaveMithrilPlate - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/armor.yml index 51c3e0c9c5..c5761bac76 100644 --- a/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/_CP14/Entities/Clothing/OuterClothing/armor.yml @@ -17,9 +17,6 @@ - type: ClothingSpeedModifier walkModifier: 0.98 sprintModifier: 0.98 - - type: Construction - graph: CP14BoneArmor - node: cp14bonearmor - type: PhysicalComposition materialComposition: CP14Bone: 120 diff --git a/Resources/Prototypes/_CP14/Entities/Effects/visual_effect.yml b/Resources/Prototypes/_CP14/Entities/Effects/visual_effect.yml index 39dd9bc66a..969f13fe2f 100644 --- a/Resources/Prototypes/_CP14/Entities/Effects/visual_effect.yml +++ b/Resources/Prototypes/_CP14/Entities/Effects/visual_effect.yml @@ -1,3 +1,26 @@ +- type: entity + id: CP14MeleeCritEffect + categories: [ HideSpawnMenu ] + save: false + components: + - type: Sprite + sprite: _CP14/Effects/sparks.rsi + drawdepth: Effects + noRot: true + layers: + - state: 1 + map: [ "random" ] + - type: RandomSprite + available: + - random: + 1: "" + 2: "" + - type: TimedDespawn + lifetime: 1.5 + - type: Tag + tags: + - HideContextMenu + - type: entity id: CP14DirtEffect categories: [ HideSpawnMenu ] diff --git a/Resources/Prototypes/_CP14/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/_CP14/Entities/Markers/Spawners/jobs.yml index 0eeefcb23b..47f0cee444 100644 --- a/Resources/Prototypes/_CP14/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/_CP14/Entities/Markers/Spawners/jobs.yml @@ -82,6 +82,20 @@ - state: green - state: guildmaster +- type: entity + id: CP14SpawnPointGuildworker + parent: CP14SpawnPointJobBase + name: guildworker + categories: + - Spawner + components: + - type: SpawnPoint + job_id: CP14GuildWorker + - type: Sprite + layers: + - state: green + - state: guildmaster #TODO + # Artisans - type: entity diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/base.yml b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/base.yml index 09fe2102f2..952a2b9615 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/base.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/base.yml @@ -81,7 +81,7 @@ reagents: - ReagentId: CP14ChromiumSlime Quantity: 20 - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 30 - type: Destructible thresholds: diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/electric.yml b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/electric.yml index 2bdc9fdfeb..7363dad8f8 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/electric.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/electric.yml @@ -64,7 +64,6 @@ - id: CP14OreIron1 - id: CP14ScrapCopper - id: CP14ScrapIron - - id: CP14ModularInlayQuartzElectric - id: CP14CopperCoin1 weight: 3 diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/fire.yml b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/fire.yml index df6fd48b79..49d912576e 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/fire.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/fire.yml @@ -22,7 +22,7 @@ Quantity: 20 - ReagentId: CP14EssenceFire Quantity: 20 - - ReagentId: CP14BasicEffectDamageHeat + - ReagentId: CP14DamageEffectDamageHeat Quantity: 10 - type: MeleeWeapon damage: @@ -66,7 +66,6 @@ - id: CP14ScrapCopper - id: CP14ScrapIron - id: CP14FoodMeatLambCutletCooked - - id: CP14ModularInlayQuartzFire - id: CP14CopperCoin1 - id: CP14Bone1 diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/ice.yml b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/ice.yml index 0ee2469749..4e2e8643ec 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/ice.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/Slimes/ice.yml @@ -80,7 +80,6 @@ - id: CP14ScrapIron - id: CP14Snowball - id: CP14CopperCoin1 - - id: CP14ModularInlayQuartzWater - type: entity id: CP14AreaEntityEffectSlimeFroze diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/mosquito.yml b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/mosquito.yml index c3e75a99e1..440e6deb71 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/mosquito.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/mosquito.yml @@ -2,7 +2,7 @@ id: CP14MobMonsterMosquito parent: [ CP14SimpleMobBase, FlyingMobBase ] name: bloodworm mosquitoes - description: A bloodthirsty swarm of small mosquitoes just waiting for a soft flesh for a bloody feast. + description: A bloodthirsty swarm of small mosquitoes just waiting for a soft flesh for a bloody feast. They seem to only disperse from heat or cold. categories: [ ForkFiltered ] components: - type: HTN diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/watcher.yml b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/watcher.yml index c8540f3526..a143319a29 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/NPC/watcher.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/NPC/watcher.yml @@ -104,9 +104,6 @@ spawned: - id: CP14FoodMeatMonster amount: 1 - - id: CP14ModularInlayQuartzWater - amount: 1 - prob: 0.1 - id: CP14ScrapLeather amount: 1 maxAmount: 3 @@ -139,9 +136,6 @@ spawned: - id: CP14FoodMeatMonster amount: 1 - - id: CP14ModularInlayQuartzFire - amount: 1 - prob: 0.1 - id: CP14ScrapLeather amount: 1 maxAmount: 3 diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T1.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T1.yml index e90093add3..3b84ae00cb 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T1.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T1.yml @@ -22,8 +22,8 @@ skillPoints: Memory: max: 0 - freeLearnedSkills: - - SwordMastery + #freeLearnedSkills: + #- SwordMastery - type: CP14SpellStorage grantAccessToSelf: true spells: @@ -42,8 +42,8 @@ skillPoints: Memory: max: 0 - freeLearnedSkills: - - SwordMastery + #freeLearnedSkills: + #- SwordMastery - type: CP14SpellStorage grantAccessToSelf: true spells: @@ -63,7 +63,7 @@ Memory: max: 0 freeLearnedSkills: - - SkimitarMastery + #- SkimitarMastery - AthleticT1 - AthleticT2 - CP14ActionSpellKick diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T2.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T2.yml index 3c333f2197..3b893cde33 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T2.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/Skeletons/T2.yml @@ -23,7 +23,9 @@ Memory: max: 0 freeLearnedSkills: - - SwordMastery + #- SwordMastery + - AthleticT1 + - AthleticT2 - type: CP14SpellStorage grantAccessToSelf: true spells: @@ -42,8 +44,8 @@ skillPoints: Memory: max: 0 - freeLearnedSkills: - - SwordMastery + #freeLearnedSkills: + #- SwordMastery - type: CP14SpellStorage grantAccessToSelf: true spells: @@ -63,7 +65,7 @@ Memory: max: 0 freeLearnedSkills: - - SkimitarMastery + #- SkimitarMastery - AthleticT1 - AthleticT2 - AthleticT3 @@ -91,7 +93,6 @@ max: 1 freeLearnedSkills: - HydrosophistryT1 - - SwordMastery learnedSkills: - CP14ActionSpellIceArrow @@ -123,7 +124,7 @@ Memory: max: 4 freeLearnedSkills: - - SwordMastery + #- SwordMastery - HydrosophistryT1 - HydrosophistryT2 - MetamagicT1 diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/lurker.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/lurker.yml index 8c9b9b56b9..9380db71f6 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/lurker.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Player/DemiplaneAntag/lurker.yml @@ -56,6 +56,14 @@ thresholds: 0: Alive 100: Dead + - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 2 damage a minute from base.yml. + allowedStates: + - Alive + damageCap: 100 + damage: + groups: + Brute: -0.035 + Burn: -0.035 - type: SlowOnDamage speedModifierThresholds: 50: 0.6 @@ -81,8 +89,6 @@ - id: CP14ClothingMaskBoneHornedMask amount: 1 - type: FloorOcclusion - - type: Puller - needsHands: false - type: GhostTakeoverAvailable - type: TypingIndicator proto: alien diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/carcat.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/carcat.yml index 5923a0a7b7..b4500ae84c 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/carcat.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/carcat.yml @@ -146,6 +146,14 @@ 32: sprite: _CP14/Mobs/Species/Carcat/displacement.rsi state: gloves + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Carcat/displacement48.rsi + state: neck + 49: + sprite: _CP14/Mobs/Species/Carcat/displacement48.rsi + state: neck - type: Hands leftHandDisplacement: sizeMaps: @@ -222,6 +230,14 @@ 32: sprite: _CP14/Mobs/Species/Carcat/displacement.rsi state: gloves + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Carcat/displacement48.rsi + state: neck + 49: + sprite: _CP14/Mobs/Species/Carcat/displacement48.rsi + state: neck - type: Hands leftHandDisplacement: sizeMaps: diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/dwarf.yml index cbd1d3c3fb..6c654c6794 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/dwarf.yml @@ -27,6 +27,14 @@ 32: sprite: _CP14/Mobs/Species/Dwarf/displacement.rsi state: pants + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck - type: entity parent: CP14BaseSpeciesDummy @@ -48,4 +56,12 @@ 32: sprite: _CP14/Mobs/Species/Dwarf/displacement.rsi state: pants + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/elf.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/elf.yml index 7c9a1ddfe6..79d65b2666 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/elf.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/elf.yml @@ -66,6 +66,14 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: male_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck femaleDisplacements: outerClothing: sizeMaps: @@ -92,6 +100,14 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck - type: entity parent: CP14BaseSpeciesDummy @@ -128,6 +144,14 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: male_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck femaleDisplacements: outerClothing: sizeMaps: @@ -154,4 +178,12 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/goblin.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/goblin.yml index 30f4e3f6e0..ecdcc9174b 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/goblin.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/goblin.yml @@ -183,6 +183,14 @@ 32: sprite: _CP14/Mobs/Species/Goblin/displacement.rsi state: shoes + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Goblin/displacement.rsi + state: neck + 48: + sprite: _CP14/Mobs/Species/Goblin/displacement48.rsi + state: neck - type: entity parent: CP14BaseSpeciesDummy @@ -257,3 +265,11 @@ 32: sprite: _CP14/Mobs/Species/Goblin/displacement.rsi state: shoes + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Goblin/displacement.rsi + state: neck + 48: + sprite: _CP14/Mobs/Species/Goblin/displacement48.rsi + state: neck diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/human.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/human.yml index 2614923346..07f71a2d8a 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/human.yml @@ -18,6 +18,15 @@ max: 5.5 # +0.5 memory point - type: Inventory templateId: CP14Human + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck femaleDisplacements: outerClothing: sizeMaps: @@ -39,6 +48,14 @@ 32: sprite: _CP14/Mobs/Species/Human/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck - type: entity parent: CP14BaseSpeciesDummy @@ -49,6 +66,15 @@ species: CP14Human - type: Inventory templateId: CP14Human + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck femaleDisplacements: cloak: sizeMaps: @@ -75,3 +101,11 @@ 32: sprite: _CP14/Mobs/Species/Human/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/silva.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/silva.yml index 65f358cb79..b4f91a1126 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/silva.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/silva.yml @@ -99,6 +99,14 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: male_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck femaleDisplacements: outerClothing: sizeMaps: @@ -125,6 +133,14 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck - type: entity parent: CP14BaseSpeciesDummy @@ -210,6 +226,14 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: male_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck femaleDisplacements: outerClothing: sizeMaps: @@ -236,4 +260,12 @@ 32: sprite: _CP14/Mobs/Species/Elf/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/skeleton.yml index a8a267720b..0cfcf13986 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/skeleton.yml @@ -116,6 +116,15 @@ - type: ContainerContainer - type: Inventory templateId: CP14Human + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck - type: TransferMindOnGib - type: GhostTakeoverAvailable - type: CP14DemiplaneBlockInteractions @@ -129,3 +138,12 @@ species: CP14Skeleton - type: Inventory templateId: CP14Human + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/tiefling.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/tiefling.yml index 599c208bff..00d0e8fdef 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/tiefling.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/tiefling.yml @@ -41,6 +41,15 @@ - PyrokineticT2 - type: Inventory templateId: CP14Human + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck femaleDisplacements: outerClothing: sizeMaps: @@ -67,6 +76,14 @@ 32: sprite: _CP14/Mobs/Species/Human/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck - type: entity @@ -78,6 +95,15 @@ species: CP14Tiefling - type: Inventory templateId: CP14Human + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck femaleDisplacements: cloak: sizeMaps: @@ -104,3 +130,11 @@ 32: sprite: _CP14/Mobs/Species/Human/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: female_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: female_neck diff --git a/Resources/Prototypes/_CP14/Entities/Mobs/Species/zombie.yml b/Resources/Prototypes/_CP14/Entities/Mobs/Species/zombie.yml index de86d980f0..45200a944a 100644 --- a/Resources/Prototypes/_CP14/Entities/Mobs/Species/zombie.yml +++ b/Resources/Prototypes/_CP14/Entities/Mobs/Species/zombie.yml @@ -151,6 +151,15 @@ - CP14Mosquito - type: Inventory templateId: CP14Partial + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck femaleDisplacements: outerClothing: sizeMaps: @@ -172,6 +181,14 @@ 32: sprite: _CP14/Mobs/Species/Human/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck - type: entity parent: CP14BaseSpeciesDummy @@ -182,6 +199,15 @@ species: CP14Zombie - type: Inventory templateId: CP14Partial + displacements: + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck femaleDisplacements: cloak: sizeMaps: @@ -208,3 +234,11 @@ 32: sprite: _CP14/Mobs/Species/Human/displacement.rsi state: female_shirt + neck: + sizeMaps: + 32: + sprite: _CP14/Mobs/Species/Human/displacement.rsi + state: male_neck + 48: + sprite: _CP14/Mobs/Species/Human/displacement48.rsi + state: male_neck diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Economy/trade_contracts.yml b/Resources/Prototypes/_CP14/Entities/Objects/Economy/trade_contracts.yml index a06511fe7c..832ecb9e96 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Economy/trade_contracts.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Economy/trade_contracts.yml @@ -125,4 +125,15 @@ - type: Sprite state: guard - type: CP14TradingContract - faction: Guards \ No newline at end of file + faction: Guards + +- type: entity + parent: CP14TradeContractBase + id: CP14TradeContractHelmirChild + description: Trading contract with the "Helmirs childs". Allows you to purchase various weapons and ammunition + suffix: Helmirs childs + components: + - type: Sprite + state: helmir_child + - type: CP14TradingContract + faction: HelmirChild \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Fun/instruments.yml b/Resources/Prototypes/_CP14/Entities/Objects/Fun/instruments.yml index 030e9ee075..e20d4810be 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Fun/instruments.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Fun/instruments.yml @@ -18,7 +18,7 @@ - WoodwindInstrument - type: PhysicalComposition materialComposition: - CP14WoodenPlanks: 40 + CP14WoodenPlanks: 10 - type: entity parent: BaseHandheldInstrument diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Keys/Catalog/guildmaster.yml b/Resources/Prototypes/_CP14/Entities/Objects/Keys/Catalog/guildmaster.yml index 91e62d15d0..c79bac1e12 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Keys/Catalog/guildmaster.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Keys/Catalog/guildmaster.yml @@ -8,9 +8,8 @@ - type: entity parent: CP14KeyGoldBlank - id: CP14KeyDemiplaneCrystal - suffix: Demiplane Crystal + id: CP14KeyAdventureGuild + suffix: Adventure Guild components: - type: CP14Key - autoGenerateShape: DemiplaneCrystal - + autoGenerateShape: AdventureGuild \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Keys/keyrings.yml b/Resources/Prototypes/_CP14/Entities/Objects/Keys/keyrings.yml index 584ea84be7..7e96814888 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Keys/keyrings.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Keys/keyrings.yml @@ -127,4 +127,13 @@ - type: StorageFill contents: - id: CP14KeyGuildmaster - - id: CP14KeyDemiplaneCrystal + - id: CP14KeyAdventureGuild + +- type: entity + parent: CP14BaseKeyRing + id: CP14KeyRingGuildworker + suffix: Guildworker + components: + - type: StorageFill + contents: + - id: CP14KeyAdventureGuild diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/axe.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/axe.yml deleted file mode 100644 index afa813bb7f..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/axe.yml +++ /dev/null @@ -1,95 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeAxeBase - categories: [ ForkFiltered ] - abstract: true - description: A axe blade without a hilt. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeAxeBase - id: CP14ModularBladeIronAxe - name: iron axe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronAxe - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularBladeAxeBase - id: CP14ModularBladeGoldAxe - name: golden axe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldAxe - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularBladeAxeBase - id: CP14ModularBladeCopperAxe - name: copper axe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperAxe - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularBladeAxeBase - id: CP14ModularBladeMithrilAxe - name: mithril axe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilAxe - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 - -- type: entity - parent: CP14ModularBladeAxeBase - id: CP14ModularBladeWoodenAxe - name: wooden axe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Axe/wooden_axe.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeWoodenAxe - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/dagger.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/dagger.yml deleted file mode 100644 index dec194d306..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/dagger.yml +++ /dev/null @@ -1,79 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeDaggerBase - categories: [ ForkFiltered ] - abstract: true - description: A dagger blade without a hilt. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeDaggerBase - id: CP14ModularBladeIronDagger - name: iron dagger blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronDagger - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularBladeDaggerBase - id: CP14ModularBladeGoldDagger - name: golden dagger blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldDagger - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularBladeDaggerBase - id: CP14ModularBladeCopperDagger - name: copper dagger blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperDagger - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularBladeDaggerBase - id: CP14ModularBladeMithrilDagger - name: mithril dagger blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilDagger - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/hammer.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/hammer.yml deleted file mode 100644 index 1a2bc2cda9..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/hammer.yml +++ /dev/null @@ -1,79 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeHammerBase - categories: [ ForkFiltered ] - abstract: true - description: A hammerhead without a hilt. A blacksmith can use it as a spare part to create a tool. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeHammerBase - id: CP14ModularBladeIronHammer - name: iron hammerhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronHammer - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularBladeHammerBase - id: CP14ModularBladeGoldHammer - name: golden hammerhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldHammer - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularBladeHammerBase - id: CP14ModularBladeCopperHammer - name: copper hammerhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperHammer - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularBladeHammerBase - id: CP14ModularBladeMithrilHammer - name: mithril hammerhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilHammer - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/hoe.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/hoe.yml deleted file mode 100644 index 0760032c34..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/hoe.yml +++ /dev/null @@ -1,80 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeHoeBase - categories: [ ForkFiltered ] - abstract: true - description: A hoe blade without a hilt. A blacksmith can use it as a spare part to create a tool. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeHoeBase - id: CP14ModularBladeIronHoe - name: iron hoe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronHoe - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularBladeHoeBase - id: CP14ModularBladeCopperHoe - name: copper hoe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperHoe - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularBladeHoeBase - id: CP14ModularBladeGoldHoe - name: golden hoe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldHoe - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularBladeSickleBase - id: CP14ModularBladeMithrilHoe - name: mithril hoe blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilHoe - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/mace.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/mace.yml deleted file mode 100644 index 7cb2be31d6..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/mace.yml +++ /dev/null @@ -1,79 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeMaceBase - categories: [ ForkFiltered ] - abstract: true - description: A mace ball without a hilt. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeMaceBase - id: CP14ModularBladeIronMace - name: iron mace ball - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronMace - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularBladeMaceBase - id: CP14ModularBladeGoldMace - name: golden mace ball - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldMace - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularBladeMaceBase - id: CP14ModularBladeCopperMace - name: copper mace ball - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperMace - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularBladeMaceBase - id: CP14ModularBladeMithrilMace - name: mithril mace ball - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilMace - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/mop.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/mop.yml deleted file mode 100644 index 2d9c7c844f..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/mop.yml +++ /dev/null @@ -1,46 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeMopBase - categories: [ ForkFiltered ] - abstract: true - description: A mop head without a hilt. Attach it to a hilt to make a mop. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeMopBase - id: CP14ModularBladeWoodMop - name: wooden mop head - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Mop/mop.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeWoodMop - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 10 - CP14Cloth: 10 - -- type: entity - parent: CP14ModularBladeMopBase - id: CP14ModularBladeLucensMop - name: lucens mop head - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Mop/lucens_mop.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeLucensMop - - type: PhysicalComposition - materialComposition: - CP14LucensWoodenPlanks: 10 - CP14Cloth: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/pickaxe.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/pickaxe.yml deleted file mode 100644 index aa3abbe164..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/pickaxe.yml +++ /dev/null @@ -1,79 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladePickaxeBase - categories: [ ForkFiltered ] - abstract: true - description: A pickaxe head without a hilt. A blacksmith can use it as a spare part to create a tool. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,1,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladePickaxeBase - id: CP14ModularBladeIronPickaxe - name: iron pickaxe head - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronPickaxe - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularBladePickaxeBase - id: CP14ModularBladeGoldPickaxe - name: golden pickaxe head - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldPickaxe - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularBladePickaxeBase - id: CP14ModularBladeCopperPickaxe - name: copper pickaxe head - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperPickaxe - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularBladePickaxeBase - id: CP14ModularBladeMithrilPickaxe - name: mithril pickaxe head - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilPickaxe - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/rapier.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/rapier.yml deleted file mode 100644 index 334315213e..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/rapier.yml +++ /dev/null @@ -1,95 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeRapierBase - categories: [ ForkFiltered ] - abstract: true - description: A rapier blade without a hilt. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,1 - storedOffset: 0, 10 - -- type: entity - parent: CP14ModularBladeRapierBase - id: CP14ModularBladeIronRapier - name: iron rapier blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronRapier - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularBladeRapierBase - id: CP14ModularBladeGoldRapier - name: golden rapier blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldRapier - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularBladeRapierBase - id: CP14ModularBladeCopperRapier - name: copper rapier blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperRapier - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularBladeRapierBase - id: CP14ModularBladeMithrilRapier - name: mithril rapier blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilRapier - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 - -- type: entity - parent: CP14ModularBladeRapierBase - id: CP14ModularBladeWoodenRapier - name: wooden rapier blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeWoodenRapier - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/shovel.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/shovel.yml deleted file mode 100644 index a5912b61c7..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/shovel.yml +++ /dev/null @@ -1,79 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeShovelBase - categories: [ ForkFiltered ] - abstract: true - description: A shovel blade without a hilt. A blacksmith can use it as a spare part to create a tool. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeShovelBase - id: CP14ModularBladeIronShovel - name: iron shovel blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronShovel - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularBladeShovelBase - id: CP14ModularBladeGoldShovel - name: golden shovel blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldShovel - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularBladeShovelBase - id: CP14ModularBladeCopperShovel - name: copper shovel blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperShovel - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularBladeShovelBase - id: CP14ModularBladeMithrilShovel - name: mithril shovel blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilShovel - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/sickle.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/sickle.yml deleted file mode 100644 index d5871f9222..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/sickle.yml +++ /dev/null @@ -1,79 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeSickleBase - categories: [ ForkFiltered ] - abstract: true - description: A sickle blade without a hilt. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeSickleBase - id: CP14ModularBladeIronSickle - name: iron sickle blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronSickle - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularBladeSickleBase - id: CP14ModularBladeCopperSickle - name: copper sickle blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperSickle - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularBladeSickleBase - id: CP14ModularBladeGoldSickle - name: golden sickle blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldSickle - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularBladeSickleBase - id: CP14ModularBladeMithrilSickle - name: mithril sickle blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilSickle - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/skimitar.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/skimitar.yml deleted file mode 100644 index 44c4028722..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/skimitar.yml +++ /dev/null @@ -1,78 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeSkimitarBase - categories: [ ForkFiltered ] - abstract: true - description: A skimitar blade without a hilt. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,1 - storedOffset: 0, 10 - -- type: entity - parent: CP14ModularBladeSkimitarBase - id: CP14ModularBladeIronSkimitar - name: iron skimitar blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronSkimitar - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularBladeSkimitarBase - id: CP14ModularBladeGoldSkimitar - name: golden skimitar blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldSkimitar - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularBladeSkimitarBase - id: CP14ModularBladeCopperSkimitar - name: copper skimitar blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperSkimitar - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularBladeSkimitarBase - id: CP14ModularBladeMithrilSkimitar - name: mithril skimitar blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilSkimitar - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/spear.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/spear.yml deleted file mode 100644 index ef29c95238..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/spear.yml +++ /dev/null @@ -1,99 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeSpearBase - categories: [ ForkFiltered ] - abstract: true - description: Hiltless spearhead. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - -- type: entity - parent: CP14ModularBladeSpearBase - id: CP14ModularBladeIronSpear - categories: [ ForkFiltered ] - name: iron spearhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronSpear - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularBladeSpearBase - id: CP14ModularBladeGoldSpear - categories: [ ForkFiltered ] - name: gold spearhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldSpear - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularBladeSpearBase - id: CP14ModularBladeCopperSpear - categories: [ ForkFiltered ] - name: copper spearhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperSpear - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularBladeSpearBase - id: CP14ModularBladeMithrilSpear - categories: [ ForkFiltered ] - name: mithril spearhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilSpear - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 - -- type: entity - parent: CP14ModularBladeSpearBase - id: CP14ModularBladeWoodenSpear - name: wooden spearhead - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeWoodenSpear - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/sword.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/sword.yml deleted file mode 100644 index a544143536..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Blade/sword.yml +++ /dev/null @@ -1,112 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeSwordBase - categories: [ ForkFiltered ] - abstract: true - description: A sword blade without a hilt. A blacksmith can use it as a spare part to create a weapon. - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,1 - storedOffset: 0, 10 - -- type: entity - parent: CP14ModularBladeSwordBase - id: CP14ModularBladeIronSword - name: iron sword blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeIronSword - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularBladeSwordBase - id: CP14ModularBladeGoldSword - name: golden sword blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - BladeGoldSword - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularBladeSwordBase - id: CP14ModularBladeCopperSword - name: copper sword blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - BladeCopperSword - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - -- type: entity - parent: CP14ModularBladeSwordBase - id: CP14ModularBladeMithrilSword - name: mithril sword blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - BladeMithrilSword - - type: PhysicalComposition - materialComposition: - CP14Mithril: 20 - -- type: entity - parent: CP14ModularBladeSwordBase - id: CP14ModularBladeBoneSword - name: bone sword blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeBoneSword - - type: Construction - graph: CP14BoneSword - node: cp14bonesword - - type: PhysicalComposition - materialComposition: - CP14Bone: 50 - -- type: entity - parent: CP14ModularBladeSwordBase - id: CP14ModularBladeWoodenSword - name: wooden sword blade - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - BladeWoodenSword - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/base.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/base.yml deleted file mode 100644 index 9779c7065b..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/base.yml +++ /dev/null @@ -1,13 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularGardeBase - categories: [ ForkFiltered ] - abstract: true - description: Garde? Garde! - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/guildmaster.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/guildmaster.yml deleted file mode 100644 index 0d0646873e..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/guildmaster.yml +++ /dev/null @@ -1,17 +0,0 @@ -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeGuildmaster - categories: [ ForkFiltered ] - name: guildmaster's rapier garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/guildmaster_garde.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - GardeGuildmaster - - type: PhysicalComposition - materialComposition: - CP14Gold: 15 - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/sharp.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/sharp.yml deleted file mode 100644 index 02c8eea6b1..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/sharp.yml +++ /dev/null @@ -1,87 +0,0 @@ -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSharpIron - categories: [ ForkFiltered ] - name: sharp iron garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - GardeSharpIron - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSharpGold - categories: [ ForkFiltered ] - name: sharp gold garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - GardeSharpGold - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSharpCopper - categories: [ ForkFiltered ] - name: sharp copper garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - GardeSharpCopper - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSharpMithril - categories: [ ForkFiltered ] - name: sharp mithril garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - GardeSharpMithril - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSharpWooden - categories: [ ForkFiltered ] - name: sharp wooden garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/wooden_sharp.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - GardeSharpWooden - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 10 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/sturdy.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/sturdy.yml deleted file mode 100644 index 2cd1dc7a00..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Garde/sturdy.yml +++ /dev/null @@ -1,87 +0,0 @@ -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSturdyIron - categories: [ ForkFiltered ] - name: sturdy iron garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - GardeSturdyIron - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSturdyGold - categories: [ ForkFiltered ] - name: sturdy gold garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - GardeSturdyGold - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSturdyCopper - categories: [ ForkFiltered ] - name: sturdy copper garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - GardeSturdyCopper - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSturdyMithril - categories: [ ForkFiltered ] - name: sturdy mithril garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - layers: - - state: icon - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - GardeSturdyMithril - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 - -- type: entity - parent: CP14ModularGardeBase - id: CP14ModularGardeSturdyWooden - categories: [ ForkFiltered ] - name: sturdy wooden garde - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Garde/wooden_sturdy.rsi - layers: - - state: icon - - type: CP14ModularCraftPart - possibleParts: - - GardeSturdyWooden - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 10 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Inlay/base.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Inlay/base.yml deleted file mode 100644 index c2c998d3d5..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Inlay/base.yml +++ /dev/null @@ -1,13 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularInlayBase - categories: [ ForkFiltered ] - description: A small piece that can be inlaid into your weapon or tool. - abstract: true - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Inlay/quartz.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Inlay/quartz.yml deleted file mode 100644 index a7bd0a2450..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Inlay/quartz.yml +++ /dev/null @@ -1,107 +0,0 @@ -- type: entity - parent: CP14ModularInlayBase - id: CP14ModularInlayQuartzBase - abstract: true - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Inlay/quartz.rsi - - type: StaticPrice - price: 50 - -- type: entity - parent: CP14ModularInlayQuartzBase - id: CP14ModularInlayQuartzWater - name: water quartz inlay - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Inlay/quartz.rsi - layers: - - state: item - color: "#5eabeb" - - state: frame - - type: CP14ModularCraftPart - possibleParts: - - InlayQuartzWater - -- type: entity - parent: CP14ModularInlayQuartzBase - id: CP14ModularInlayQuartzHealing - name: healing quartz inlay - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Inlay/quartz.rsi - layers: - - state: item - color: "#79b330" - - state: frame - - type: CP14ModularCraftPart - possibleParts: - - InlayQuartzHealing - -- type: entity - parent: CP14ModularInlayQuartzBase - id: CP14ModularInlayQuartzFire - name: fire quartz inlay - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Inlay/quartz.rsi - layers: - - state: item - color: "#ed731c" - - state: frame - - type: CP14ModularCraftPart - possibleParts: - - InlayQuartzFire - - type: StaticPrice - price: 70 - -- type: entity - parent: CP14ModularInlayQuartzBase - id: CP14ModularInlayQuartzLight - name: light quartz inlay - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Inlay/quartz.rsi - layers: - - state: item - color: "#f1c7ff" - shader: unshaded - - state: frame - - type: CP14ModularCraftPart - possibleParts: - - InlayQuartzLight - - type: PointLight - radius: 2 - color: "#f1c7ff" - netsync: false - -- type: entity - parent: CP14ModularInlayQuartzBase - id: CP14ModularInlayQuartzElectric - name: electric quartz inlay - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Inlay/quartz.rsi - layers: - - state: item - color: "#e6ff6b" - - state: frame - - type: CP14ModularCraftPart - possibleParts: - - InlayQuartzElectric - -- type: entity - parent: CP14ModularInlayQuartzBase - id: CP14ModularInlayQuartzDarkness - name: darkness quartz inlay - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Inlay/quartz.rsi - layers: - - state: item - color: "#391c57" - - state: frame - - type: CP14ModularCraftPart - possibleParts: - - InlayQuartzDarkness - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Tip/arrows.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Tip/arrows.yml deleted file mode 100644 index 70ac00016b..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/Tip/arrows.yml +++ /dev/null @@ -1,77 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularBladeTipBase - categories: [ ForkFiltered ] - abstract: true - description: The tip on an arrow shaft, a well-finished little piece of metal. - components: - - type: Item - size: Tiny - storedRotation: 0 - -- type: entity - parent: CP14ModularBladeTipBase - id: CP14ModularTipIronArrow - name: iron arrow tip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Tip/arrow.rsi - layers: - - state: tip - - type: CP14ModularCraftPart - possibleParts: - - TipIronArrow - - type: PhysicalComposition - materialComposition: - CP14Iron: 2 - -- type: entity - parent: CP14ModularBladeTipBase - id: CP14ModularTipGoldArrow - name: golden arrow tip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Tip/arrow.rsi - layers: - - state: tip - color: "#ffe269" - - type: CP14ModularCraftPart - possibleParts: - - TipGoldArrow - - type: PhysicalComposition - materialComposition: - CP14Gold: 2 - -- type: entity - parent: CP14ModularBladeTipBase - id: CP14ModularTipCopperArrow - name: copper arrow tip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Tip/arrow.rsi - layers: - - state: tip - color: "#e28f08" - - type: CP14ModularCraftPart - possibleParts: - - TipCopperArrow - - type: PhysicalComposition - materialComposition: - CP14Copper: 2 - -- type: entity - parent: CP14ModularBladeTipBase - id: CP14ModularTipMithrilArrow - name: mithril arrow tip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Tip/arrow.rsi - layers: - - state: tip - color: "#38f0b3" - - type: CP14ModularCraftPart - possibleParts: - - TipMithrilArrow - - type: PhysicalComposition - materialComposition: - CP14Mithril: 2 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/grips.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/grips.yml deleted file mode 100644 index 8f812d4e2b..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/grips.yml +++ /dev/null @@ -1,521 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14ModularGripBase - abstract: true - categories: [ ForkFiltered ] - components: - - type: Item - storedRotation: 45 - - type: ExaminableDamage - messages: CP14WeaponMessages - - type: Damageable - damageContainer: Inorganic - - type: CP14MeleeSelfDamage - damageToSelf: - types: - Blunt: 0.5 # 100 hits - - type: MeleeWeapon - angle: 45 - attackRate: 1 - wideAnimationRotation: 135 - wideAnimation: CP14WeaponArcSlash - damage: - types: - Blunt: 0 - soundHit: - collection: MetalThud - cPAnimationLength: 0.25 - - type: Clothing - equipDelay: 0.25 - unequipDelay: 0.25 - quickEquip: false - breakOnMove: false - - type: CP14LabeledRenaming - -- type: entity - parent: CP14ModularGripBase - id: CP14ModularGripShort - abstract: true - description: A tool for your purposes! - components: - - type: CP14ModularCraftStartPoint - startSlots: - - Blade - - type: Item - shape: - - 0,0,0,0 - storedOffset: 0, -5 - - type: MeleeWeapon - resetOnHandSelected: false #Fast swap - range: 1.0 # 1.5 standart - cPAnimationOffset: -0.75 #-1 standart - attackRate: 1 # 1 standart - - type: Clothing - slots: - - belt - -- type: entity - parent: CP14ModularGripBase - id: CP14ModularGripLong - abstract: true - description: A tool for your purposes! Now long enough to hold in two hands. - components: - - type: CP14ModularCraftStartPoint - startSlots: - - Blade - - type: Item - shape: - - 0,0,0,1 - storedOffset: 0, -15 - - type: MeleeWeapon - resetOnHandSelected: true - range: 1.5 # 1.5 standart - attackRate: 0.7 # 1 standart - cPAnimationOffset: -1 - - type: Clothing - slots: - - neck - - type: Wieldable - - type: IncreaseDamageOnWield - damage: - types: - Blunt: 0 - -# Shorts -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripWooden - name: wooden grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/wooden_grip.rsi - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripWooden - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 50 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 20 - -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripLucens - name: lucens grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/wooden_grip.rsi - layers: - - state: icon - color: "#0398fc" - 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: PhysicalComposition - materialComposition: - CP14LucensWoodenPlanks: 20 - -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripBirch - name: birch grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/birch_grip.rsi - layers: - - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripWooden - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 60 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 20 - -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripIron - name: iron grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/metall_grip.rsi - layers: - - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripIron - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 100 #x2 durability - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 - -- type: entity - parent: CP14ModularGripIron - id: CP14ModularGripIronGuard - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/iron_guard_grip.rsi - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripIronGuard - - type: StaticPrice - price: 10 - -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripGolden - name: golden grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/metall_grip.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripGolden - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 20 #~x0.3 durability - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14Gold: 10 - -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripCopper - name: copper grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/metall_grip.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripCopper - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 70 #~x0.66 durability - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14Copper: 10 - -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripMithril - name: mithril grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/metall_grip.rsi - layers: - - state: icon - color: "#38f0b3" - - 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: PhysicalComposition - materialComposition: - CP14Mithril: 10 - -- type: entity - parent: CP14ModularGripShort - id: CP14ModularGripGuildmaster - name: guildmaster's rapier grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Grip/guildmaster_grip.rsi - layers: - - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripIron - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 120 #x2.4 durability - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14Mithril: 10 - CP14Gold: 10 - -# Long -- type: entity - parent: CP14ModularGripLong - id: CP14ModularGripWoodenLong - name: long wooden grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/wooden_grip_long.rsi - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripWoodenLong - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 50 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 40 - -- type: entity - parent: CP14ModularGripLong - id: CP14ModularGripLucensLong - name: long lucens grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/wooden_grip_long.rsi - layers: - - state: icon - color: "#0398fc" - - 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: PhysicalComposition - materialComposition: - CP14LucensWoodenPlanks: 40 - -- type: entity - parent: CP14ModularGripLong - id: CP14ModularGripBirchLong - name: long birch grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/birch_grip_long.rsi - layers: - - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripWoodenLong - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 60 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 40 - -- type: entity - parent: CP14ModularGripLong - id: CP14ModularGripIronLong - name: long iron grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/metall_grip_long.rsi - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripIronLong - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 100 #x2 durability - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14Iron: 20 - -- type: entity - parent: CP14ModularGripIronLong - id: CP14ModularGripIronLongGuard - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/iron_grip_long_guard.rsi - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripIronLongGuard - - type: StaticPrice - price: 10 - -- type: entity - parent: CP14ModularGripLong - id: CP14ModularGripGoldLong - name: long golden grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/metall_grip_long.rsi - layers: - - state: icon - color: "#ffe269" - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripGoldLong - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 40 #~x0.3 durability - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14Gold: 20 - -- type: entity - parent: CP14ModularGripLong - id: CP14ModularGripCopperLong - name: long copper grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/metall_grip_long.rsi - layers: - - state: icon - color: "#e28f08" - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularGripCopperLong - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 70 #~x0.66 durability - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14Copper: 20 - - -- type: entity - parent: CP14ModularGripLong - id: CP14ModularGripMithrilLong - name: long mithril grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/GripLong/metall_grip_long.rsi - layers: - - state: icon - color: "#38f0b3" - - 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: PhysicalComposition - materialComposition: - CP14Mithril: 20 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/rod.yml b/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/rod.yml deleted file mode 100644 index ec030e1469..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/ModularTools/rod.yml +++ /dev/null @@ -1,105 +0,0 @@ -- type: entity - parent: CP14ModularGripBase - id: CP14ModularRod - abstract: true - description: A thin shaft of wood, the most important part of the future arrow. - components: - - type: CP14ModularCraftStartPoint - startSlots: - - ArrowTip - - type: Item - storedRotation: 0 - - type: MeleeWeapon - resetOnHandSelected: false #Fast swap - range: 1.0 # 1.5 standart - cPAnimationOffset: -0.75 #-1 standart - attackRate: 1 # 1 standart - - type: Clothing - slots: - - belt - - type: Fixtures - fixtures: - fix1: - shape: !type:PhysShapeCircle - radius: 0.2 - density: 5 - mask: - - ItemMask - restitution: 0.3 - friction: 0.2 - projectile: - shape: - !type:PhysShapeAabb - bounds: "-0.1,-0.1,0.1,0.1" - hard: false - mask: - - Impassable - - BulletImpassable - - type: EmbeddableProjectile - sound: /Audio/Weapons/star_hit.ogg - embedOnThrow: false - - type: ThrowingAngle - angle: 0 - - type: Ammo - muzzleFlash: null - - type: Tag - tags: - - CP14Arrow - -# Rod -- type: entity - parent: CP14ModularRod - id: CP14ModularRodWooden - name: wooden grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Rod/arrow.rsi - layers: - - state: tail - - state: icon - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularRodWooden - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 30 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 2 - -- type: entity - parent: CP14ModularRod - id: CP14ModularRodLucens - name: lucens grip - components: - - type: Sprite - sprite: _CP14/Objects/ModularTools/Rod/arrow.rsi - layers: - - state: tail - - state: icon - color: "#0398fc" - - type: CP14ModularCraftStartPoint - startProtoPart: CP14ModularRodLucens - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 45 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:CP14ModularDisassembleBehavior - - !type:DoActsBehavior - acts: ["Destruction"] - - type: PhysicalComposition - materialComposition: - CP14LucensWoodenPlanks: 2 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Specific/Alchemy/vials_filled_potions.yml b/Resources/Prototypes/_CP14/Entities/Objects/Specific/Alchemy/vials_filled_potions.yml index f4c01891a6..fb72250d4c 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Specific/Alchemy/vials_filled_potions.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Specific/Alchemy/vials_filled_potions.yml @@ -9,9 +9,9 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 9 - - ReagentId: CP14BasicEffectHealBrute + - ReagentId: CP14HealingEffectHealBrute Quantity: 1 - type: entity @@ -24,9 +24,9 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 9 - - ReagentId: CP14BasicEffectHealPoison + - ReagentId: CP14HealingEffectHealPoison Quantity: 1 - type: entity @@ -39,9 +39,9 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 9 - - ReagentId: CP14BasicEffectHealAirloss + - ReagentId: CP14HealingEffectHealAirloss Quantity: 1 - type: entity @@ -54,9 +54,9 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 9 - - ReagentId: CP14BasicEffectBloodRestore + - ReagentId: CP14HealingEffectBloodRestore Quantity: 1 - type: entity @@ -69,9 +69,9 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 9 - - ReagentId: CP14BasicEffectHealMana + - ReagentId: CP14PositiveEffectHealMana Quantity: 1 - type: entity @@ -84,9 +84,9 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 9 - - ReagentId: CP14BasicEffectSpeedUp + - ReagentId: CP14PositiveEffectSpeedUp Quantity: 1 - type: entity @@ -99,11 +99,11 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 6 - - ReagentId: CP14BasicEffectRainbow + - ReagentId: CP14SideEffectRainbow Quantity: 2 - - ReagentId: CP14BasicEffectDrunk + - ReagentId: CP14SideEffectDrunk Quantity: 2 - type: entity @@ -116,9 +116,9 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 9 - - ReagentId: CP14BasicEffectHealManaDepletion + - ReagentId: CP14HealingEffectHealManaDepletion Quantity: 1 - type: entity @@ -131,7 +131,7 @@ solutions: vial: reagents: - - ReagentId: CP14BasicEffectEmpty + - ReagentId: CP14SideEffectEmpty Quantity: 8 - - ReagentId: CP14BasicEffectConfuseAura + - ReagentId: CP14PositiveEffectConfuseAura Quantity: 2 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Tools/fork.yml b/Resources/Prototypes/_CP14/Entities/Objects/Tools/fork.yml new file mode 100644 index 0000000000..8c1dcea9d4 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Tools/fork.yml @@ -0,0 +1,60 @@ +- type: entity + abstract: true + id: CP14BaseFork + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: ThrowingAngle + angle: -90 + - type: MeleeWeapon + attackRate: 1 + range: 2 + angle: 10 + wideAnimationRotation: -90 + damage: + types: + Piercing: 3 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcThrust + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.3 + cPAnimationOffset: 1.75 + - type: IncreaseDamageOnWield + damage: + types: + Piercing: 3 + - type: CP14BonusDistanceMeleeDamage + minDistance: 2 + bonusDamage: + types: + Piercing: 3 + - type: Wieldable + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + - type: CP14EditTileTool + sound: + collection: CP14Digging + tileReplace: + CP14FloorDirt: CP14FloorDirtSeedbed + CP14FloorDirtSeedbed: CP14FloorDirt + +- type: entity + parent: CP14BaseFork + id: CP14WeaponFork + name: fork + description: A simple fork for digging and planting seeds in the soil. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Fork/fork.rsi + state: icon \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Tools/mop.yml b/Resources/Prototypes/_CP14/Entities/Objects/Tools/mop.yml new file mode 100644 index 0000000000..5d2cc9370b --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Tools/mop.yml @@ -0,0 +1,53 @@ +- type: entity + abstract: true + id: CP14BaseMop + parent: + - BaseItem + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + clickDamageModifier: 0.1 + attackRate: 1.5 + range: 1.6 + angle: 30 + wideAnimationRotation: 0 + damage: + types: + Blunt: 2 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcThrust + soundHit: + collection: MetalThud + cPAnimationLength: 0.5 + cPAnimationOffset: 1 + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 2 + - type: Wieldable + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + - type: Spillable + solution: absorbed + - type: Absorbent + - type: SolutionContainerManager + solutions: + absorbed: + maxVol: 50 + +- type: entity + parent: CP14BaseMop + id: CP14Mop + name: mop + description: A simple mop for cleaning up spills and messes. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Mop/mop.rsi + state: icon \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/hammer.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/hammer.yml new file mode 100644 index 0000000000..a73e45afe2 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/hammer.yml @@ -0,0 +1,64 @@ +- type: entity + abstract: true + id: CP14BaseWeaponToolHammer + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponThrowable + components: + - type: Item + size: Normal + shape: + - 0,0,2,0 + - type: DamageOtherOnHit + damage: + types: + Blunt: 5 + Structural: 3 + - type: MeleeWeapon + resetOnHandSelected: false + autoAttack: true + attackRate: 2 + range: 1.5 + angle: 60 + wideAnimationRotation: -90 + damage: + types: + Blunt: 5 + Structural: 3 + animation: CP14WeaponArcSlash + wideAnimation: CP14WeaponArcSlash + soundHit: + collection: MetalThud + cPAnimationLength: 0.25 + cPAnimationOffset: 1 + - type: Clothing + slots: + - belt + breakOnMove: false + equipDelay: 0.5 + unequipDelay: 0.5 + - type: Tool + qualities: + - CP14Hammering + useSound: + collection: CP14Hammering + params: + variation: 0.03 + volume: 2 + +- type: entity + parent: CP14BaseWeaponToolHammer + id: CP14WeaponHammerIron + name: iron hammer + description: A standard hammer made of iron. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Hammer/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 10 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/pickaxe.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/pickaxe.yml new file mode 100644 index 0000000000..0eb011364e --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/pickaxe.yml @@ -0,0 +1,63 @@ +- type: entity + abstract: true + id: CP14BaseWeaponPickaxe + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + attackRate: 1 + range: 1.6 + angle: 90 + wideAnimationRotation: -90 + damage: + types: + Piercing: 3 + Structural: 4 + animation: CP14WeaponArcSlash + wideAnimation: CP14WeaponArcSlash + soundHit: + collection: MetalThud + cPAnimationLength: 0.5 + cPAnimationOffset: 1 + - type: IncreaseDamageOnWield + damage: + types: + Piercing: 6 + Structural: 20 + - type: Wieldable + - type: Clothing + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + slots: + - neck + - type: Tool + qualities: + - Prying + useSound: + path: /Audio/Items/crowbar.ogg + - type: ToolTileCompatible + - type: Prying + - type: EmitSoundOnLand + sound: + path: /Audio/Items/crowbar_drop.ogg + +- type: entity + parent: CP14BaseWeaponPickaxe + id: CP14WeaponPickaxeIron + name: iron pickaxe + description: A sturdy iron pickaxe, perfect for mining and not for combat. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 20 + CP14Iron: 20 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/shovel.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/shovel.yml new file mode 100644 index 0000000000..6c06615322 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/shovel.yml @@ -0,0 +1,61 @@ +- type: entity + abstract: true + id: CP14BaseWeaponShovel + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + attackRate: 1 + range: 1.6 + angle: 170 + wideAnimationRotation: -90 + damage: + types: + Slash: 3 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + soundHit: + collection: MetalThud + cPAnimationLength: 0.5 + cPAnimationOffset: 1 + - type: IncreaseDamageOnWield + damage: + types: + Slash: 5 + - type: Wieldable + - type: Clothing + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + slots: + - neck + - type: Shovel + - type: ToolTileCompatible + - type: Tool + qualities: + - CP14Digging + useSound: + collection: CP14Digging + params: + variation: 0.03 + volume: 2 + +- type: entity + parent: CP14BaseWeaponShovel + id: CP14WeaponShovelIron + name: iron shovel + description: A sturdy iron shovel, perfect for digging and not for combat. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Shovel/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 20 + CP14Iron: 10 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/wrench.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/wrench.yml index 64abc44611..f252ba6502 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/wrench.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/Tools/wrench.yml @@ -33,4 +33,4 @@ path: /Audio/Items/ratchet.ogg - type: PhysicalComposition materialComposition: - CP14Iron: 20 + CP14Iron: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/base.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/base.yml index 27cc852a7d..97687d97e8 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/base.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/base.yml @@ -94,6 +94,7 @@ messages: CP14WeaponMessages - type: Damageable damageContainer: Inorganic + - type: CP14MeleeParriable - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/dagger.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/dagger.yml new file mode 100644 index 0000000000..7bec8fdccf --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/dagger.yml @@ -0,0 +1,88 @@ +- type: entity + abstract: true + id: CP14BaseWeaponDagger + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + - CP14BaseWeaponThrowable + components: + - type: Item + size: Normal + shape: + - 0,0,1,0 + - type: EmbeddableProjectile + offset: -0.15,-0.15 + removalTime: 1.5 + - type: DamageOtherOnHit + damage: + types: + Slash: 4 + Piercing: 8 + - type: MeleeWeapon + resetOnHandSelected: false + autoAttack: true + attackRate: 2 + range: 1 + angle: 60 + wideAnimationRotation: -90 + damage: + types: + Slash: 2 + Piercing: 3 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.15 + cPAnimationOffset: 0.75 + - type: Clothing + slots: + - belt + breakOnMove: false + equipDelay: 0.5 + unequipDelay: 0.5 + +- type: entity + parent: CP14BaseWeaponDagger + id: CP14WeaponDaggerIron + name: iron dagger + description: A standard dagger made of iron. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Dagger/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 10 + +- type: entity + parent: CP14BaseWeaponDagger + id: CP14WeaponDaggerHatchet + name: hatchet + description: A small hatchet, commonly used as a kitchen utensil for preparing food. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 10 + +- type: entity + parent: CP14BaseWeaponDagger + id: CP14WeaponDaggerSickle + name: sickle + description: A curved blade used for harvesting crops, but can be deadly in skilled hands. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Dagger/sickle.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 10 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/rapier.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/rapier.yml new file mode 100644 index 0000000000..977c92b75a --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/rapier.yml @@ -0,0 +1,46 @@ +- type: entity + abstract: true + id: CP14BaseWeaponRapier + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + attackRate: 1.5 + range: 1.2 + angle: 20 + wideAnimationRotation: -90 + damage: + types: + Piercing: 10 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcThrust + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.3 + cPAnimationOffset: 1 + - type: Clothing + slots: + - belt + breakOnMove: false + equipDelay: 0.5 + unequipDelay: 0.5 + +- type: entity + parent: CP14BaseWeaponRapier + id: CP14WeaponRapierIron + name: rapier + description: An elegant and finely balanced blade, favored by Zellasian officers for its reach and precision. Its craftsmanship reflects imperial tradition and deadly efficiency. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Rapier/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 10 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/shield.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/shield.yml index 28d9292c0d..9b5e9b58f6 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/shield.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/shield.yml @@ -1,19 +1,18 @@ - type: entity - id: CP14BaseShield + id: CP14BaseWeaponShield + abstract: true parent: - BaseItem - - CP14BaseWeaponLight - - CP14BaseWeaponThrowable + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage name: shield description: A wooden shield capable of withstanding multiple blows. components: - - type: Sprite - sprite: _CP14/Objects/Weapons/Melee/Shield/shield.rsi - state: icon - type: Item - sprite: _CP14/Objects/Weapons/Melee/Shield/shield.rsi - size: Normal + size: Ginormous - type: Blocking + passiveBlockFraction: 0.4 + activeBlockFraction: 0.8 passiveBlockModifier: coefficients: Blunt: 0.9 @@ -22,57 +21,49 @@ Heat: 0.9 activeBlockModifier: coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - Heat: 0.8 + Blunt: 0.75 + Slash: 0.75 + Piercing: 0.75 + Heat: 0.75 flatReductions: Blunt: 1 Slash: 1 Piercing: 1 Heat: 1 - type: Clothing - equipDelay: 0.45 - unequipDelay: 0.45 - sprite: _CP14/Objects/Weapons/Melee/Shield/shield.rsi + equipDelay: 1 + unequipDelay: 1 quickEquip: false breakOnMove: false slots: - neck - type: MeleeWeapon - angle: 0 - range: 1.2 - attackRate: 0.5 - wideAnimationRotation: -30 - wideAnimation: CP14WeaponArcSlash + resetOnHandSelected: false + angle: 60 + attackRate: 1 + wideAnimationRotation: 0 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcThrust damage: types: - Blunt: 6 + Blunt: 3 soundHit: collection: MetalThud - cPAnimationLength: 0.3 - cPAnimationOffset: -0.5 - - type: DamageOnLand - damage: - types: - Blunt: 6 - - type: DamageOtherOnHit - damage: - types: - Blunt: 6 + cPAnimationLength: 0.6 + cPAnimationOffset: 0.5 - type: Damageable damageContainer: Shield - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 140 + damage: 200 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 100 #This is probably enough damage before it breaks + damage: 100 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -84,7 +75,17 @@ CP14WoodenPlanks1: min: 1 max: 2 + +- type: entity + parent: CP14BaseWeaponShield + id: CP14WeaponShieldWooden + name: wooden shield + description: A wooden shield capable of withstanding multiple blows. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Shield/shield.rsi + state: icon - type: PhysicalComposition materialComposition: CP14WoodenPlanks: 20 - CP14Iron: 20 + CP14Iron: 20 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/shieldBuckler.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/shieldBuckler.yml new file mode 100644 index 0000000000..7faea34e81 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/shieldBuckler.yml @@ -0,0 +1,85 @@ +- type: entity + id: CP14BaseWeaponShieldBuckler + abstract: true + parent: + - BaseItem + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + name: buckler + description: A small metallic shield, designed for quick parrying and blocking in close combat. + components: + - type: Item + size: Ginormous + - type: Blocking + passiveBlockFraction: 0.3 + activeBlockFraction: 0.6 + passiveBlockModifier: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Heat: 0.9 + activeBlockModifier: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 + Heat: 0.8 + - type: Clothing + equipDelay: 0.5 + unequipDelay: 0.5 + quickEquip: false + breakOnMove: false + slots: + - neck + - type: CP14MeleeParry + - type: MeleeWeapon + resetOnHandSelected: false + angle: 90 + attackRate: 2 + range: 0.75 + wideAnimationRotation: 0 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + damage: + types: + Blunt: 2 + soundHit: + collection: MetalThud + cPAnimationLength: 0.6 + cPAnimationOffset: 0.5 + - type: Damageable + damageContainer: Shield + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + CP14WoodenPlanks1: + min: 1 + max: 2 + +- type: entity + parent: CP14BaseWeaponShieldBuckler + id: CP14WeaponShieldBuckler + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14Iron: 20 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/skimitar.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/skimitar.yml new file mode 100644 index 0000000000..7f85ebd36a --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/skimitar.yml @@ -0,0 +1,51 @@ +- type: entity + abstract: true + id: CP14BaseWeaponSkimitar + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + resetOnHandSelected: false + attackRate: 1.5 + range: 1.2 + angle: 60 + wideAnimationRotation: -90 + damage: + types: + Slash: 5 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.25 + cPAnimationOffset: 1 + - type: CP14ComboBonusMeleeDamage + bonusDamage: + types: + Piercing: 5 + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + +- type: entity + parent: CP14BaseWeaponSkimitar + id: CP14WeaponSkimitarIron + name: iron skimitar + description: A finely crafted skimitar favored by Bafamir carcats. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Skimitar/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 20 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/spear.yml new file mode 100644 index 0000000000..eab1818b01 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/spear.yml @@ -0,0 +1,66 @@ +- type: entity + abstract: true + id: CP14BaseWeaponSpear + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + - CP14BaseWeaponThrowable + components: + - type: Item + size: Ginormous + - type: ThrowingAngle + angle: -90 + - type: EmbeddableProjectile + offset: -0.15,-0.15 + removalTime: 1.5 + - type: DamageOtherOnHit + damage: + types: + Piercing: 16 + - type: MeleeWeapon + attackRate: 0.5 + range: 2.75 + angle: 10 #Lower in 4 times + wideAnimationRotation: -90 + damage: + types: + Piercing: 5 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcThrust + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.3 + cPAnimationOffset: 2 + - type: IncreaseDamageOnWield + damage: + types: + Piercing: 5 + - type: CP14BonusDistanceMeleeDamage + minDistance: 2.25 + bonusDamage: + types: + Piercing: 5 + - type: Wieldable + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + +- type: entity + parent: CP14BaseWeaponSpear + id: CP14WeaponSpearIron + name: iron spear + description: A reliable spear that is standard in the Zellasian Empire. It strikes far, but slowly. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Spear/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 20 + CP14Iron: 10 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/sword.yml new file mode 100644 index 0000000000..6d1de0cf88 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/sword.yml @@ -0,0 +1,50 @@ +- type: entity + abstract: true + id: CP14BaseWeaponSword + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + attackRate: 1.5 + range: 1.2 + angle: 60 + wideAnimationRotation: -90 + damage: + types: + Slash: 7.5 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.25 + cPAnimationOffset: 1 + - type: CP14ComboBonusMeleeDamage + bonusDamage: + types: + Piercing: 5 + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + +- type: entity + parent: CP14BaseWeaponSword + id: CP14WeaponSwordIron + name: iron sword + description: A finely crafted sword favored by imperial officers. Its blade gleams with authority and tradition. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/Sword/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 20 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/towerShield.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/towerShield.yml new file mode 100644 index 0000000000..47600e2da1 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/towerShield.yml @@ -0,0 +1,94 @@ +- type: entity + abstract: true + id: CP14BaseWeaponTowerShield + parent: + - BaseItem + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + name: tower wooden shield + description: A wooden shield capable of withstanding multiple blows. + components: + - type: Item + size: Ginormous + - type: Blocking + passiveBlockModifier: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.8 + Heat: 0.8 + activeBlockModifier: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + Heat: 0.5 + flatReductions: + Blunt: 3 + Slash: 3 + Piercing: 3 + - type: Clothing + equipDelay: 1.5 + unequipDelay: 1.5 + quickEquip: false + breakOnMove: false + slots: + - neck + - type: MeleeWeapon + resetOnHandSelected: false + angle: 60 + attackRate: 0.5 + wideAnimationRotation: 0 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcThrust + damage: + types: + Blunt: 3 + Piercing: 3 + soundHit: + collection: MetalThud + cPAnimationLength: 0.6 + cPAnimationOffset: 0.5 + - type: CP14LightMeleeKnockdown + - type: Damageable + damageContainer: Shield + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + CP14WoodenPlanks1: + min: 2 + max: 4 + - type: ClothingSpeedModifier + walkModifier: 0.7 + sprintModifier: 0.7 + - type: HeldSpeedModifier + +- type: entity + parent: CP14BaseWeaponTowerShield + id: CP14WeaponTowerShieldWooden + name: wooden tower shield + description: A wooden shield capable of withstanding multiple blows. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 50 + CP14Iron: 40 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/twoHandedSword.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/twoHandedSword.yml new file mode 100644 index 0000000000..731377e4c1 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/twoHandedSword.yml @@ -0,0 +1,55 @@ +- type: entity + abstract: true + id: CP14BaseWeaponTwoHandedSword + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + attackRate: 0.5 + range: 1.6 + angle: 170 #Bigger in 2 times + wideAnimationRotation: -90 + damage: + types: + Slash: 7 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.5 + cPAnimationOffset: 1 + - type: IncreaseDamageOnWield + damage: + types: + Slash: 13 + - type: CP14ComboBonusMeleeDamage + bonusDamage: + types: + Piercing: 10 + - type: Wieldable + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + +- type: entity + parent: CP14BaseWeaponTwoHandedSword + id: CP14WeaponTwoHandedSwordIron + name: iron two-handed sword + description: A large and heavy two-handed sword. Heavy means reliable. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 10 + CP14Iron: 30 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/warAxe.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/warAxe.yml new file mode 100644 index 0000000000..c406f82118 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/warAxe.yml @@ -0,0 +1,53 @@ +- type: entity + abstract: true + id: CP14BaseWeaponWarAxe + parent: + - BaseItem + - CP14BaseWeaponChemical + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + - CP14BaseWeaponSharp + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + attackRate: 0.5 + range: 1.6 + angle: 170 #Bigger in 2 times + wideAnimationRotation: -90 + damage: + types: + Slash: 10 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + soundHit: + path: /Audio/Weapons/bladeslice.ogg + cPAnimationLength: 0.5 + cPAnimationOffset: 1 + - type: IncreaseDamageOnWield + damage: + types: + Slash: 15 + - type: CP14MeleeWeaponStaminaCost + stamina: 15 + - type: Wieldable + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + +- type: entity + parent: CP14BaseWeaponWarAxe + id: CP14WeaponWarAxeIron + name: iron war axe + description: A heavy war axe made of iron, designed for powerful strikes in battle. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/WarAxe/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 20 + CP14Iron: 20 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/warHammer.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/warHammer.yml new file mode 100644 index 0000000000..8dcd03d314 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Melee/warHammer.yml @@ -0,0 +1,52 @@ +- type: entity + abstract: true + id: CP14BaseWeaponWarHammer + parent: + - BaseItem + - CP14BaseWeaponDestructible + - CP14BaseWeaponSelfDamage + components: + - type: Item + size: Ginormous + - type: MeleeWeapon + clickDamageModifier: 0.1 + attackRate: 0.5 + range: 1.6 + angle: 170 #Bigger in 2 times + wideAnimationRotation: -90 + damage: + types: + Blunt: 7 + animation: CP14WeaponArcThrust + wideAnimation: CP14WeaponArcSlash + soundHit: + collection: MetalThud + cPAnimationLength: 0.5 + cPAnimationOffset: 1 + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 13 + Structural: 5 + - type: CP14LightMeleeKnockdown + - type: Wieldable + - type: Clothing + slots: + - neck + breakOnMove: false + equipDelay: 1 + unequipDelay: 1 + +- type: entity + parent: CP14BaseWeaponWarHammer + id: CP14WeaponWarHammerIron + name: iron war hammer + description: A large and heavy war hammer. Heavy means reliable. + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Melee/WarHammer/iron.rsi + state: icon + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 20 + CP14Iron: 20 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/arrow.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/arrow.yml deleted file mode 100644 index d6f5c75886..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/arrow.yml +++ /dev/null @@ -1,51 +0,0 @@ -- type: entity - id: CP14ModularIronArrow - parent: CP14ModularRodWooden - name: iron arrow - description: Standard arrow, balance between damage and reliability. - components: - - type: Sprite - layers: - - state: icon - - state: tail - - sprite: _CP14/Objects/ModularTools/Tip/arrow.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularTipIronArrow - -- type: entity - id: CP14ModularMithrilArrow - parent: CP14ModularRodLucens - name: mithril arrow - description: An arrow made of expensive wood and magical iron, you shoot money, but the damage matches. - components: - - type: Sprite - layers: - - state: icon - color: "#0398fc" - - state: tail - - sprite: _CP14/Objects/ModularTools/Tip/arrow.rsi - state: icon - color: "#45d2a4" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularTipMithrilArrow - -- type: entity - id: CP14ModularCopperArrow - parent: CP14ModularRodLucens - name: copper arrow - description: It's the cheapest and weakest arrow you've ever seen, but it's better than nothing. - components: - - type: Sprite - layers: - - state: icon - - state: tail - - sprite: _CP14/Objects/ModularTools/Tip/arrow.rsi - state: icon - color: "#bd712f" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularTipCopperArrow - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/axe.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/axe.yml deleted file mode 100644 index 30edb34906..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/axe.yml +++ /dev/null @@ -1,29 +0,0 @@ -- type: entity - id: CP14ModularIronAxe - parent: CP14ModularGripWoodenLong - name: iron axe - description: A heavy axe for cutting firewood or heads. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronAxe - -- type: entity - id: CP14ModularWoodenAxe - parent: CP14ModularGripWoodenLong - name: training wooden axe - description: Wooden training weapon, a handy tool for practising strokes. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Axe/wooden_axe.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeWoodenAxe diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/daggers.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/daggers.yml deleted file mode 100644 index 82238dea65..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/daggers.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: entity - id: CP14ModularIronDagger - parent: CP14ModularGripWooden - name: iron dagger - description: A small, multi-purpose, sharp blade. You can cut meat or throw it at a goblin. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronDagger diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/hammer.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/hammer.yml deleted file mode 100644 index 28681b356e..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/hammer.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - id: CP14ModularIronHammer - parent: CP14ModularGripWooden - name: iron hammer - description: A small hammer. Good for carpentry work as well as for cracking skulls. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronHammer - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/hoe.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/hoe.yml deleted file mode 100644 index ef21e6aece..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/hoe.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - id: CP14ModularIronHoe - parent: CP14ModularGripWooden - name: iron hoe - description: Hoe. Your perfect tool for tilling the ground and preparing it for gardening. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronHoe - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/mace.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/mace.yml deleted file mode 100644 index 20fee14eff..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/mace.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - id: CP14ModularIronMace - parent: CP14ModularGripWooden - name: iron mace - description: A heavy piece of metal on a long stick. What could be simpler than that? - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronMace - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/mop.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/mop.yml deleted file mode 100644 index 80a6a98ea5..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/mop.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: entity - id: CP14ModularWoodMop - parent: CP14ModularGripWoodenLong - name: wooden mop - description: A mop for cleaning floors of various unpleasant liquids. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Mop/mop.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeWoodMop diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/pickaxe.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/pickaxe.yml deleted file mode 100644 index 802d283d37..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/pickaxe.yml +++ /dev/null @@ -1,30 +0,0 @@ -- type: entity - id: CP14ModularIronPickaxe - parent: CP14ModularGripWoodenLong - name: iron pickaxe - description: Notched to perfection, for jamming it into rocks - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronPickaxe - -- type: entity - id: CP14ModularCopperPickaxe - parent: CP14ModularGripWoodenLong - name: copper pickaxe - description: It's better than by hand - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - state: icon - color: "#e28f08" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeCopperPickaxe \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/rapier.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/rapier.yml deleted file mode 100644 index 5b58bb1851..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/rapier.yml +++ /dev/null @@ -1,81 +0,0 @@ -- type: entity - id: CP14ModularIronRapier - parent: CP14ModularGripWooden - name: iron rapier - description: The gold standard of edged weapons. Medium length, comfortable grip. No frills. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronRapier - -- type: entity - id: CP14ModularCopperRapier - parent: CP14ModularGripWooden - name: copper rapier - description: You'll be lucky if it even pierces the paper. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - state: icon - color: "#e28f08" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeCopperRapier - -- type: entity - id: CP14ModularGuildmasterRapier - parent: CP14ModularGripGuildmaster - name: guildmaster's personal rapier - description: A personal weapon issued to each guildmaster. Combines reliability and killing power. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - state: icon - - sprite: _CP14/Objects/ModularTools/Garde/guildmaster_garde.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronRapier - - CP14ModularGardeGuildmaster - -- type: entity - id: CP14ModularGuardRapier - parent: CP14ModularGripIronGuard - name: "guard's rapier" - description: The standard issue armament of the imperial guard. A short rapier adorned with blue feathers and brass. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - state: icon - - sprite: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronRapier - - CP14ModularGardeSharpIron - -- type: entity - id: CP14ModularWoodenRapier - parent: CP14ModularGripWooden - name: training wooden rapier - description: A training wooden rapier that even a complete inept can handle. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeWoodenRapier diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/shovel.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/shovel.yml deleted file mode 100644 index aa1b889561..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/shovel.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - id: CP14ModularIronShovel - parent: CP14ModularGripWoodenLong - name: iron shovel - description: An implement for digging up earth, digging beds or graves. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronShovel - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/sickle.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/sickle.yml deleted file mode 100644 index 5067afef49..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/sickle.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - id: CP14ModularIronSickle - parent: CP14ModularGripWooden - name: iron sickle - description: Originally developed as a weapon against grass, the sickle suddenly proved itself good at the bloodier harvest as well. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronSickle - diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/skimitar.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/skimitar.yml deleted file mode 100644 index b15eccb6a4..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/skimitar.yml +++ /dev/null @@ -1,62 +0,0 @@ -- type: entity - id: CP14ModularIronSkimitar - parent: CP14ModularGripWooden - name: iron skimitar - description: the gold standard of edged weapons. Medium length, comfortable grip. No frills. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronSkimitar - -- type: entity - id: CP14ModularCopperSkimitar - parent: CP14ModularGripWooden - name: copper skimitar - description: You'll be lucky if it even pierces the paper. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - state: icon - color: "#e28f08" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeCopperSkimitar - -- type: entity - id: CP14ModularCopperSkimitarTundra - parent: CP14ModularGripWooden - name: Skimitar Tundra - description: the gold standard of edged weapons. Medium length, comfortable grip. It has "tundra" engraved on it. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeCopperSkimitar - - CP14ModularInlayQuartzWater - -- type: entity - id: CP14ModularGoldSkimitarAgony - parent: CP14ModularGripWooden - name: Skimitar Agony - description: the gold standard of edged weapons. Medium length, comfortable grip. It has "agony" engraved on it. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeGoldSkimitar - - CP14ModularInlayQuartzElectric diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/spear.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/spear.yml deleted file mode 100644 index a4a26e1bf1..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/spear.yml +++ /dev/null @@ -1,44 +0,0 @@ -- type: entity - id: CP14ModularIronSpear - parent: CP14ModularGripWoodenLong - name: iron spear - description: The spear is a weapon whose effectiveness has stood the test of time. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronSpear - -- type: entity - id: CP14ModularIronKunai - parent: CP14ModularGripWooden - name: iron kunai - description: An effective throwing weapon. Throw it at a wall, or no, better yet, at a goblin! - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronSpear - -- type: entity - id: CP14ModularWoodenSpear - parent: CP14ModularGripWoodenLong - name: training wooden spear - description: A training wooden spear, no more complicated than a mop. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeWoodenSpear diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/sword.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/sword.yml deleted file mode 100644 index 2cab412b08..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/ModularPresets/sword.yml +++ /dev/null @@ -1,145 +0,0 @@ -- type: entity - id: CP14ModularIronSword - parent: CP14ModularGripWooden - name: iron sword - description: the gold standard of edged weapons. Medium length, comfortable grip. No frills. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronSword - -- type: entity - id: CP14ModularCopperSword - parent: CP14ModularGripWooden - name: copper sword - description: You'll be lucky if it even pierces the paper. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - state: icon - color: "#e28f08" - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeCopperSword - -- type: entity - id: CP14ModularGuardHalberd - parent: CP14ModularGripIronLongGuard - name: "guard's halberd" - description: The standard issue armament of the imperial guard. A long iron halberd adorned with blue feathers and brass. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - state: icon - - sprite: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronSword - - CP14ModularGardeSharpIron - -- type: entity - id: CP14ModularGuardSword - parent: CP14ModularGripIronGuard - name: "guard's sword" - description: The standard issue armament of the imperial guard. A short sword adorned with blue feathers and brass. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - state: icon - - sprite: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeIronSword - - CP14ModularGardeSharpIron - -- type: entity - id: CP14ModularSkeletonHalberd - parent: CP14ModularGripWoodenLong - name: bone halberd - description: Monstrous weapons of bone. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeBoneSword - -- type: entity - id: CP14ModularSkeletonSword - parent: CP14ModularGripWooden - name: bone sword - description: Monstrous weapons of bone. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeBoneSword - -- type: entity - id: CP14ModularSkeletonHalberdUpgrade - parent: CP14ModularGripWoodenLong - name: bone halberd - suffix: Reinforced - description: Monstrous weapons of bone. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeBoneSword - - CP14ModularGardeSharpIron - -- type: entity - id: CP14ModularSkeletonSwordUpgrade - parent: CP14ModularGripWooden - name: bone sword - suffix: Reinforced - description: Monstrous weapons of bone. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeBoneSword - - CP14ModularGardeSharpIron - -- type: entity - id: CP14ModularWoodenSword - parent: CP14ModularGripWooden - name: training wooden sword - description: A wooden sword, light and easy to use, even a complete inept, will be able to use it. - components: - - type: Sprite - layers: - - state: icon - - sprite: _CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi - state: icon - - type: CP14ModularCraftAutoAssemble - details: - - CP14ModularBladeWoodenSword diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Ranged/Ammunition/arrows.yml b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Ranged/Ammunition/arrows.yml new file mode 100644 index 0000000000..ed67fe49d4 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Weapons/Ranged/Ammunition/arrows.yml @@ -0,0 +1,94 @@ +- type: entity + id: CP14ArrowBase + parent: BaseItem + abstract: true + categories: [ ForkFiltered ] + components: + - type: Item + storedRotation: 0 + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.2 + density: 5 + mask: + - ItemMask + restitution: 0.3 + friction: 0.2 + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.1,0.1,0.1" + hard: false + mask: + - Impassable + - BulletImpassable + - type: EmbeddableProjectile + sound: /Audio/Weapons/star_hit.ogg + removalTime: 1 + embedOnThrow: false + - type: ThrowingAngle + angle: 0 + - type: Ammo + muzzleFlash: null + - type: Tag + tags: + - CP14Arrow + - type: Projectile + deleteOnCollide: false + onlyCollideWhenShot: true + - type: Damageable + - type: DamageOnLand + damage: + types: + Blunt: 10 + - type: SolutionContainerManager + solutions: + ammo: + maxVol: 2 + - type: RefillableSolution + solution: ammo + - type: InjectableSolution + solution: ammo + - type: SolutionInjectOnEmbed + transferAmount: 2 + solution: ammo + - type: SolutionTransfer + maxTransferAmount: 2 + - type: Appearance + - type: SolutionContainerVisuals + maxFillLevels: 1 + fillBaseName: solution + +- type: entity + id: CP14Arrow + parent: CP14ArrowBase + name: arrow + description: A sharp arrow made of wood and metal + components: + - type: Sprite + sprite: _CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi + layers: + - state: rod + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + - type: Projectile + damage: + types: + Piercing: 35 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:DoActsBehavior + acts: ["Destruction"] + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 5 + CP14Iron: 2 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Doors/Locked/guildmaster.yml b/Resources/Prototypes/_CP14/Entities/Structures/Doors/Locked/guildmaster.yml index 5f74453da2..8c8d979a2f 100644 --- a/Resources/Prototypes/_CP14/Entities/Structures/Doors/Locked/guildmaster.yml +++ b/Resources/Prototypes/_CP14/Entities/Structures/Doors/Locked/guildmaster.yml @@ -8,25 +8,19 @@ - type: Lock locked: true -# Grill Gate - - type: entity - parent: CP14FenceGateBigIron - id: CP14FenceGateBigIronGuildmaster - suffix: Guildmaster + parent: CP14WoodenDoor + id: CP14WoodenDoorAdventureGuild + suffix: Adventure guild components: - type: CP14Lock - autoGenerateShape: Guildmaster + autoGenerateShape: AdventureGuild - type: Lock locked: true - type: entity - parent: CP14FenceGateBigIron - id: CP14FenceGateBigIronDemiplaneCrystal - suffix: DemiplaneCrystal - components: - - type: CP14Lock - autoGenerateShape: DemiplaneCrystal - - type: Lock - locked: false - + parent: + - CP14WoodenDoorAdventureGuild + - CP14WoodenDoorMirrored + id: CP14WoodenDoorAdventureGuildMirrored + suffix: Adventure guild, Mirrored \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/order_board.yml b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/order_board.yml new file mode 100644 index 0000000000..8992a01470 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/order_board.yml @@ -0,0 +1,119 @@ +- type: entity + id: CP14OrderBoard + parent: + - BaseStructure + - CP14BaseFlammableSpreading + name: orders board + description: Is there a job for a witcher? + categories: [ ForkFiltered ] + components: + - type: Sprite + snapCardinals: true + drawdepth: Mobs + sprite: _CP14/Structures/Furniture/order_board.rsi + layers: + - state: base + - state: paper-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: StorageFillVisualizer + maxFillLevels: 4 + fillBaseName: paper + - type: Appearance + - type: InteractionOutline + - type: Clickable + - type: Damageable + damageContainer: StructuralInorganic + damageModifierSet: CP14Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:SpawnEntitiesBehavior + spawn: + CP14WoodenPlanks1: + min: 1 + max: 3 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,4,3 + maxItemSize: Small + whitelist: + tags: + - Document + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + - type: ContainerContainer + containers: + storagebase: !type:Container + - type: Construction + graph: CP14OrderBoard + node: CP14OrderBoard + +- type: entity + parent: CP14OrderBoard + id: CP14OrderBoardBlue + suffix: Blue flag + components: + - type: Sprite + layers: + - state: base + - state: paper-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: flag_blue + +- type: entity + parent: CP14OrderBoard + id: CP14OrderBoardGreen + suffix: Green flag + components: + - type: Sprite + layers: + - state: base + - state: paper-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: flag_green + +- type: entity + parent: CP14OrderBoard + id: CP14OrderBoardPurple + suffix: Purple flag + components: + - type: Sprite + layers: + - state: base + - state: paper-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: flag_purple + +- type: entity + parent: CP14OrderBoard + id: CP14OrderBoardRed + suffix: Red flag + components: + - type: Sprite + layers: + - state: base + - state: paper-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: flag_red + +- type: entity + parent: CP14OrderBoard + id: CP14OrderBoardYellow + suffix: Yellow flag + components: + - type: Sprite + layers: + - state: base + - state: paper-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: flag_yellow \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/wallmount_order_border.yml b/Resources/Prototypes/_CP14/Entities/Structures/Furniture/wallmount_order_border.yml deleted file mode 100644 index 6caab0fd6a..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Structures/Furniture/wallmount_order_border.yml +++ /dev/null @@ -1,58 +0,0 @@ -- type: entity - id: CP14WallmountOrdersBorder - parent: - - CP14BaseWallmount - - CP14BaseFlammableSpreading - name: orders board - description: Is there a job for a witcher? - categories: [ ForkFiltered ] - components: - - type: Sprite - drawdepth: Mobs - sprite: _CP14/Structures/Furniture/wallmount_order_board.rsi - layers: - - state: base - - state: paper-0 - - map: ["enum.StorageFillLayers.Fill"] - - type: StorageFillVisualizer - maxFillLevels: 4 - fillBaseName: paper - - type: Appearance - - type: InteractionOutline - - type: Clickable - - type: Damageable - damageContainer: StructuralInorganic - damageModifierSet: CP14Wood - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 30 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: WoodDestroy - - !type:SpawnEntitiesBehavior - spawn: - CP14WoodenPlanks1: - min: 1 - max: 2 - - !type:DoActsBehavior - acts: ["Destruction"] - - type: Storage - grid: - - 0,0,4,3 - maxItemSize: Small - whitelist: - tags: - - Document - - type: UserInterface - interfaces: - enum.StorageUiKey.Key: - type: StorageBoundUserInterface - - type: ContainerContainer - containers: - storagebase: !type:Container - - type: Construction - graph: CP14WallmountOrdersBorder - node: CP14WallmountOrdersBorder diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Storage/Crates/grave.yml b/Resources/Prototypes/_CP14/Entities/Structures/Storage/Crates/grave.yml index ce0ab21921..a5e682c15f 100644 --- a/Resources/Prototypes/_CP14/Entities/Structures/Storage/Crates/grave.yml +++ b/Resources/Prototypes/_CP14/Entities/Structures/Storage/Crates/grave.yml @@ -97,7 +97,6 @@ - !type:GroupSelector # Rarities weight: 0.2 children: - - id: CP14ModularSkeletonHalberd - !type:NestedSelector tableId: CP14StationCrateLoot diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Walls/natural.yml b/Resources/Prototypes/_CP14/Entities/Structures/Walls/natural.yml index 9e575ff0c8..25e40c2039 100644 --- a/Resources/Prototypes/_CP14/Entities/Structures/Walls/natural.yml +++ b/Resources/Prototypes/_CP14/Entities/Structures/Walls/natural.yml @@ -17,13 +17,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 350 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: @@ -51,13 +51,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 350 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: @@ -111,7 +111,7 @@ acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 50 + damage: 30 behaviors: - !type:PlaySoundBehavior sound: @@ -184,7 +184,7 @@ acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 50 + damage: 30 behaviors: - !type:PlaySoundBehavior sound: @@ -237,7 +237,7 @@ acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 50 + damage: 30 behaviors: - !type:PlaySoundBehavior sound: @@ -281,7 +281,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 350 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Walls/ore_veins.yml b/Resources/Prototypes/_CP14/Entities/Structures/Walls/ore_veins.yml index 0a6715603e..d4ef771445 100644 --- a/Resources/Prototypes/_CP14/Entities/Structures/Walls/ore_veins.yml +++ b/Resources/Prototypes/_CP14/Entities/Structures/Walls/ore_veins.yml @@ -13,13 +13,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 250 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: @@ -48,13 +48,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: @@ -84,13 +84,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: @@ -124,13 +124,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: @@ -161,13 +161,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 250 + damage: 150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] - trigger: !type:DamageTrigger - damage: 100 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: diff --git a/Resources/Prototypes/_CP14/Entities/Structures/Walls/stonebrick.yml b/Resources/Prototypes/_CP14/Entities/Structures/Walls/stonebrick.yml index d75c66e0a1..e9798382a0 100644 --- a/Resources/Prototypes/_CP14/Entities/Structures/Walls/stonebrick.yml +++ b/Resources/Prototypes/_CP14/Entities/Structures/Walls/stonebrick.yml @@ -172,6 +172,11 @@ !type:DamageTrigger damage: 100 behaviors: + - !type:SpawnEntitiesBehavior + spawn: + CP14StoneBlock1: + min: 1 + max: 2 - !type:PlaySoundBehavior sound: path: /Audio/Effects/break_stone.ogg diff --git a/Resources/Prototypes/_CP14/Guidebook/Eng/alchemy.yml b/Resources/Prototypes/_CP14/Guidebook/Eng/alchemy.yml index 341c82cf54..bc2b297299 100644 --- a/Resources/Prototypes/_CP14/Guidebook/Eng/alchemy.yml +++ b/Resources/Prototypes/_CP14/Guidebook/Eng/alchemy.yml @@ -28,5 +28,45 @@ id: CP14_EN_TargetEffects name: Target alchemical solutions text: "/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml" + children: + - CP14_EN_HealingEffects + - CP14_EN_DamageEffects + - CP14_EN_PositiveEffects + - CP14_EN_NegativeEffects + - CP14_EN_SideEffects filterEnabled: True +- type: guideEntry + crystallPunkAllowed: true + id: CP14_EN_HealingEffects + name: Healing solutions + text: "/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_EN_DamageEffects + name: Damaging solutions + text: "/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_EN_PositiveEffects + name: Positive solutions + text: "/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_EN_NegativeEffects + name: Negative solutions + text: "/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_EN_SideEffects + name: Contaminants + text: "/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml" + filterEnabled: True diff --git a/Resources/Prototypes/_CP14/Guidebook/Ru/alchemy.yml b/Resources/Prototypes/_CP14/Guidebook/Ru/alchemy.yml index df39010a71..450942fbe6 100644 --- a/Resources/Prototypes/_CP14/Guidebook/Ru/alchemy.yml +++ b/Resources/Prototypes/_CP14/Guidebook/Ru/alchemy.yml @@ -28,5 +28,45 @@ id: CP14_RU_TargetEffects name: Целевые алхимические растворы text: "/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml" + children: + - CP14_RU_HealingEffects + - CP14_RU_DamageEffects + - CP14_RU_PositiveEffects + - CP14_RU_NegativeEffects + - CP14_RU_SideEffects filterEnabled: True +- type: guideEntry + crystallPunkAllowed: true + id: CP14_RU_HealingEffects + name: Лечебные решения + text: "/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_RU_DamageEffects + name: Вредные решения + text: "/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_RU_PositiveEffects + name: Позитивные решения + text: "/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_RU_NegativeEffects + name: Негативные решения + text: "/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml" + filterEnabled: True + +- type: guideEntry + crystallPunkAllowed: true + id: CP14_RU_SideEffects + name: Загрязняющие вещества + text: "/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml" + filterEnabled: True diff --git a/Resources/Prototypes/_CP14/Loadouts/Jobs/adventure.yml b/Resources/Prototypes/_CP14/Loadouts/Jobs/adventure.yml index b82aaa40e0..d1e8636c75 100644 --- a/Resources/Prototypes/_CP14/Loadouts/Jobs/adventure.yml +++ b/Resources/Prototypes/_CP14/Loadouts/Jobs/adventure.yml @@ -4,45 +4,71 @@ minLimit: 0 maxLimit: 1 loadouts: - - CP14ModularCopperSkimitar - - CP14ModularCopperSword - - CP14ModularCopperRapier - CP14BowCombat - #- CP14MagicDruidStaff - -- type: loadout - id: CP14ModularCopperSkimitar - dummyEntity: CP14ModularCopperSkimitar - equipment: - belt2: CP14ModularCopperSkimitar - skills: - - SkimitarMastery - -- type: loadout - id: CP14ModularCopperSword - dummyEntity: CP14ModularCopperSword - equipment: - belt2: CP14ModularCopperSword - skills: - - SwordMastery - -- type: loadout - id: CP14ModularCopperRapier - dummyEntity: CP14ModularCopperRapier - equipment: - belt2: CP14ModularCopperRapier - skills: - - RapierMastery + - CP14WeaponDaggerIron + - CP14WeaponSwordIron + - CP14WeaponSkimitarIron + - CP14WeaponSpearIron + - CP14WeaponWarHammerIron + - CP14WeaponTwoHandedSwordIron + - CP14WeaponWarAxeIron - type: loadout id: CP14BowCombat dummyEntity: CP14BowCombat equipment: - belt2: CP14ClothingBeltQuiverCopperArrow + belt2: CP14ClothingBeltQuiverArrows neck: CP14BowCombat -#- type: loadout -# id: CP14MagicDruidStaff -# dummyEntity: CP14MagicDruidStaff -# equipment: -# neck: CP14MagicDruidStaff \ No newline at end of file +- type: loadout + id: CP14WeaponDaggerIron + dummyEntity: CP14WeaponDaggerIron + equipment: + belt2: CP14WeaponDaggerIron + storage: + back: + - CP14WeaponDaggerIron + - CP14WeaponDaggerIron + - CP14WeaponDaggerIron + +- type: loadout + id: CP14WeaponSwordIron + dummyEntity: CP14WeaponSwordIron + equipment: + neck: CP14WeaponShieldWooden + inhand: + - CP14WeaponSwordIron + +- type: loadout + id: CP14WeaponSkimitarIron + dummyEntity: CP14WeaponSkimitarIron + equipment: + neck: CP14WeaponShieldBuckler + inhand: + - CP14WeaponSkimitarIron + +- type: loadout + id: CP14WeaponSpearIron + dummyEntity: CP14WeaponSpearIron + equipment: + neck: CP14WeaponSpearIron + +- type: loadout + id: CP14WeaponWarHammerIron + dummyEntity: CP14WeaponWarHammerIron + equipment: + neck: CP14WeaponTowerShieldWooden + inhand: + - CP14WeaponWarHammerIron + +- type: loadout + id: CP14WeaponTwoHandedSwordIron + dummyEntity: CP14WeaponTwoHandedSwordIron + equipment: + neck: CP14WeaponTwoHandedSwordIron + +- type: loadout + id: CP14WeaponWarAxeIron + dummyEntity: CP14WeaponWarAxeIron + equipment: + neck: CP14WeaponWarAxeIron \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml b/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml index d0a112c174..691105bcee 100644 --- a/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml +++ b/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml @@ -705,9 +705,6 @@ - CP14Scissors - CP14Rope - CP14SilverCoin - - CP14ModularIronDagger - - CP14ModularIronSickle - - CP14ModularCopperPickaxe - CP14Lighter - CP14Torch - CP14SmokingPipeFilledTobacco @@ -752,24 +749,6 @@ back: - CP14SilverCoin -- type: loadout - id: CP14ModularIronDagger - storage: - back: - - CP14ModularIronDagger - -- type: loadout - id: CP14ModularIronSickle - storage: - back: - - CP14ModularIronSickle - -- type: loadout - id: CP14ModularCopperPickaxe - storage: - back: - - CP14ModularCopperPickaxe - - type: loadout id: CP14Lighter storage: diff --git a/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml b/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml index 40d506a400..f94fd8dfe2 100644 --- a/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml +++ b/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml @@ -85,37 +85,17 @@ minLimit: 1 maxLimit: 1 loadouts: - - CP14ModularGuardSword - - CP14ModularGuardHalberd - - CP14ModularGuardRapier - CP14BowCombat + - CP14WeaponDaggerIron + - CP14WeaponSwordIron + - CP14WeaponSkimitarIron + - CP14WeaponSpearIron + - CP14WeaponWarHammerIron + - CP14WeaponTwoHandedSwordIron + - CP14WeaponWarAxeIron - CP14MagicGuardElectroStaff -- type: loadout - id: CP14ModularGuardSword - dummyEntity: CP14ModularGuardSword - equipment: - belt2: CP14ModularGuardSword - skills: - - SwordMastery - - type: loadout id: CP14MagicGuardElectroStaff equipment: - belt2: CP14MagicGuardElectroStaff - -- type: loadout - id: CP14ModularGuardHalberd - dummyEntity: CP14ModularGuardHalberd - equipment: - belt2: CP14ModularGuardHalberd - skills: - - SwordMastery - -- type: loadout - id: CP14ModularGuardRapier - dummyEntity: CP14ModularGuardRapier - equipment: - belt2: CP14ModularGuardRapier - skills: - - RapierMastery + belt2: CP14MagicGuardElectroStaff \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Loadouts/Misc/skeleton_startinggear.yml b/Resources/Prototypes/_CP14/Loadouts/Misc/skeleton_startinggear.yml index c62c494ee5..c4ce4b27b0 100644 --- a/Resources/Prototypes/_CP14/Loadouts/Misc/skeleton_startinggear.yml +++ b/Resources/Prototypes/_CP14/Loadouts/Misc/skeleton_startinggear.yml @@ -15,8 +15,6 @@ shirt: CP14ClothingShirtCottonBlack pants: CP14ClothingPantsBrown shoes: CP14ClothingShoesLongLeatherBoots - belt: CP14ModularSkeletonSwordUpgrade - neck: CP14ModularIronPickaxe # TIER 1 @@ -27,8 +25,8 @@ cloak: CP14ClothingCloakBone shirt: CP14ClothingShirtWarriorsGarbDress pants: CP14ClothingPantsLoincloth - neck: CP14ModularSkeletonHalberd shoes: CP14ClothingShoesSandals + neck: CP14WeaponTwoHandedSwordIron - type: startingGear id: CP14MobSkeletonSwordT1 @@ -36,19 +34,19 @@ outerClothing: CP14ClothingOuterClothingBoneArmor cloak: CP14ClothingCloakBone pants: CP14ClothingPantsLoincloth - belt: CP14ModularSkeletonSword + shirt: CP14ClothingShirtWarriorsGarbDress shoes: CP14ClothingShoesSandals head: CP14ClothingHeadMetalHeadband - inhand: - - CP14BaseShield + belt: CP14WeaponSwordIron + neck: CP14WeaponShieldWooden - type: startingGear id: CP14MobSkeletonDodgerT1 equipment: mask: CP14ClothingMaskSinner pants: CP14ClothingPantsLoincloth - belt: CP14ModularCopperSkimitar - belt2: CP14ModularIronDagger + belt: CP14WeaponDaggerIron + belt2: CP14WeaponSkimitarIron - type: startingGear id: CP14MobSkeletonArcherT1 @@ -56,7 +54,7 @@ shirt: CP14ClothingShirtWarriorsGarbDress pants: CP14ClothingPantsLoincloth neck: CP14BowCombat - belt: CP14ClothingBeltQuiverCopperArrow + belt: CP14ClothingBeltQuiverArrows # TIER 2 @@ -68,8 +66,8 @@ mask: CP14ClothingMaskSteelMask shirt: CP14ClothingShirtWarriorsGarbDress pants: CP14ClothingPantsLoincloth - neck: CP14ModularSkeletonHalberdUpgrade shoes: CP14ClothingShoesSandals + neck: CP14WeaponWarAxeIron - type: startingGear id: CP14MobSkeletonSwordT2 @@ -77,11 +75,11 @@ outerClothing: CP14ClothingOuterClothingBoneArmorUpgrade cloak: CP14ClothingCloakBone mask: CP14ClothingMaskSteelMask + shirt: CP14ClothingShirtWarriorsGarbDress pants: CP14ClothingPantsLoincloth - belt: CP14ModularSkeletonSwordUpgrade shoes: CP14ClothingShoesSandals - inhand: - - CP14BaseShield + belt: CP14WeaponSwordIron + neck: CP14WeaponShieldWooden - type: startingGear id: CP14MobSkeletonDodgerT2 @@ -89,9 +87,9 @@ outerClothing: CP14ClothingOuterClothingBoneArmor mask: CP14ClothingMaskBoneHornedMask pants: CP14ClothingPantsLoincloth - belt: CP14ModularCopperSkimitarTundra - belt2: CP14ModularGoldSkimitarAgony shoes: CP14ClothingShoesSandals + belt: CP14WeaponSkimitarIron + belt2: CP14WeaponSkimitarIron - type: startingGear id: CP14MobSkeletonArcherT2 @@ -101,8 +99,8 @@ shirt: CP14ClothingShirtCottonBlack pants: CP14ClothingPantsBrown neck: CP14BowCombat - belt: CP14ClothingBeltQuiverIronArrow - belt2: CP14ModularSkeletonSword + belt: CP14ClothingBeltQuiverArrows + belt2: CP14WeaponSwordIron # change to Rapier when it will be added shoes: CP14ClothingShoesLongLeatherBoots - type: startingGear @@ -114,8 +112,7 @@ shirt: CP14ClothingShirtCottonBlack pants: CP14ClothingPantsBrown shoes: CP14ClothingShoesLongLeatherBoots - ring2: CP14ClothingCloakAmuletMana - belt: CP14ModularSkeletonSword + belt: CP14WeaponSwordIron # change to Rapier when it will be added - type: startingGear id: CP14MobSkeletonBardT2 diff --git a/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml b/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml index d7cff3d4cf..0f6b957660 100644 --- a/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml @@ -142,6 +142,18 @@ - CP14GeneralVillagerBackReinforced - CP14GeneralTrinkets +- type: roleLoadout + id: JobCP14GuildWorker + groups: + - CP14GuildmasterOuterClothing + - CP14GeneralEyes + - CP14GeneralHead + - CP14GuildmasterShirt + - CP14GuildmasterPants + - CP14GuildmasterShoes + - CP14GeneralVillagerBackReinforced + - CP14GeneralTrinkets + - type: roleLoadout id: JobCP14Merchant groups: diff --git a/Resources/Prototypes/_CP14/LockCategories/lockTypes.yml b/Resources/Prototypes/_CP14/LockCategories/lockTypes.yml index 9abffbb0f7..38ff5df2a7 100644 --- a/Resources/Prototypes/_CP14/LockCategories/lockTypes.yml +++ b/Resources/Prototypes/_CP14/LockCategories/lockTypes.yml @@ -101,18 +101,6 @@ complexity: 5 name: cp14-lock-shape-merchant3 -# Mercenary - -- type: CP14LockType - id: Guildmaster - complexity: 6 - name: cp14-lock-shape-guildmaster - -- type: CP14LockType - id: DemiplaneCrystal - complexity: 6 - name: cp14-lock-shape-demiplane-crystal - # Personal house - type: CP14LockType @@ -228,3 +216,14 @@ complexity: 7 name: cp14-lock-shaper-guard-commander +# Adventure Guild + +- type: CP14LockType + id: Guildmaster + complexity: 6 + name: cp14-lock-shape-guildmaster + +- type: CP14LockType + id: AdventureGuild + complexity: 4 + name: cp14-lock-shape-adventure-guild diff --git a/Resources/Prototypes/_CP14/Maps/comoss.yml b/Resources/Prototypes/_CP14/Maps/comoss.yml index 51bfed3575..75125b98fe 100644 --- a/Resources/Prototypes/_CP14/Maps/comoss.yml +++ b/Resources/Prototypes/_CP14/Maps/comoss.yml @@ -14,12 +14,13 @@ - type: StationJobs availableJobs: #Mercenary - #CP14Guildmaster: [1, 1] + CP14Guildmaster: [1, 1] + CP14GuildWorker: [3, 3] CP14Adventurer: [ -1, -1 ] #Artisans CP14Apprentice: [ 5, 5 ] CP14Alchemist: [ 2, 2 ] - CP14Blacksmith: [ 2, 2 ] + #CP14Blacksmith: [ 2, 2 ] CP14Innkeeper: [ 3, 4 ] CP14Merchant: [2, 2] #Guard @@ -52,6 +53,7 @@ - type: CP14StationProceduralLocation location: ComossIsland modifiers: + - DemiplaneArcSingle - RaidSpawners - Rabbits - Boar diff --git a/Resources/Prototypes/_CP14/Maps/venicialis.yml b/Resources/Prototypes/_CP14/Maps/venicialis.yml index c36a58deae..85d45ef9df 100644 --- a/Resources/Prototypes/_CP14/Maps/venicialis.yml +++ b/Resources/Prototypes/_CP14/Maps/venicialis.yml @@ -19,7 +19,7 @@ #Artisans CP14Apprentice: [ 3, 3 ] CP14Alchemist: [ 2, 2 ] - CP14Blacksmith: [ 2, 2 ] + #CP14Blacksmith: [ 2, 2 ] CP14Innkeeper: [ 2, 3 ] CP14Merchant: [2, 2] #Guard diff --git a/Resources/Prototypes/_CP14/ModularCraft/Armor/Cuisses/chainmail.yml b/Resources/Prototypes/_CP14/ModularCraft/Armor/Cuisses/chainmail.yml deleted file mode 100644 index 8d4dec30f5..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Armor/Cuisses/chainmail.yml +++ /dev/null @@ -1,78 +0,0 @@ -- type: modularPart - id: BaseCuissesChainmail - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: CuissesIronChainmail - slots: - - Cuisses - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.04 - Slash: -0.10 - Piercing: -0.01 - -- type: modularPart - id: CuissesGoldChainmail - slots: - - Cuisses - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.03 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 - -- type: modularPart - id: CuissesCopperChainmail - slots: - - Cuisses - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.05 - -- type: modularPart - id: CuissesMithrilChainmail - slots: - - Cuisses - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Chainmail/chainmail.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.05 - Slash: -0.16 - Piercing: -0.03 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Armor/Cuisses/plate.yml b/Resources/Prototypes/_CP14/ModularCraft/Armor/Cuisses/plate.yml deleted file mode 100644 index 7caa920edb..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Armor/Cuisses/plate.yml +++ /dev/null @@ -1,92 +0,0 @@ -- type: modularPart - id: BaseCuissesPlate - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: CuissesIronPlate - slots: - - Cuisses - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.05 - Slash: -0.07 - Piercing: -0.07 - Heat: -0.05 - - !type:EditClothingSpeed - walkModifier: 0.94 - sprintModifier: 0.94 - -- type: modularPart - id: CuissesGoldPlate - slots: - - Cuisses - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.01 - Piercing: -0.05 - - !type:EditClothingSpeed - walkModifier: 0.94 - sprintModifier: 0.94 - -- type: modularPart - id: CuissesCopperPlate - slots: - - Cuisses - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.03 - Slash: -0.03 - Piercing: -0.03 - Heat: -0.03 - - !type:EditClothingSpeed - walkModifier: 0.98 - sprintModifier: 0.98 - -- type: modularPart - id: CuissesMithrilPlate - slots: - - Cuisses - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Cuisses/Cuirass/cuirass.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseCuissesPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.10 - Slash: -0.10 - Piercing: -0.10 - Heat: -0.10 - - !type:EditClothingSpeed - walkModifier: 0.98 - sprintModifier: 0.98 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Armor/Greave/chainmail.yml b/Resources/Prototypes/_CP14/ModularCraft/Armor/Greave/chainmail.yml deleted file mode 100644 index 0b24eaeee9..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Armor/Greave/chainmail.yml +++ /dev/null @@ -1,79 +0,0 @@ -- type: modularPart - id: BaseGreaveChainmail - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: GreaveIronChainmail - slots: - - Greave - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseGreaveChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.03 - Slash: -0.10 - Piercing: -0.01 - -- type: modularPart - id: GreaveGoldChainmail - slots: - - Greave - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseGreaveChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.04 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 - -- type: modularPart - id: GreaveCopperChainmail - slots: - - Greave - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseGreaveChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.06 - Piercing: -0.01 - -- type: modularPart - id: GreaveMithrilChainmail - slots: - - Greave - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Chainmail/chainmail.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseGreaveChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.05 - Slash: -0.18 - Piercing: -0.02 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Armor/Greave/plate.yml b/Resources/Prototypes/_CP14/ModularCraft/Armor/Greave/plate.yml deleted file mode 100644 index dc3c9cc41e..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Armor/Greave/plate.yml +++ /dev/null @@ -1,92 +0,0 @@ -- type: modularPart - id: BaseGreavePlate - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: GreaveIronPlate - slots: - - Greave - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseGreavePlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.05 - Slash: -0.07 - Piercing: -0.07 - Heat: -0.05 - - !type:EditClothingSpeed - walkModifier: 0.96 - sprintModifier: 0.96 - -- type: modularPart - id: GreaveGoldPlate - slots: - - Greave - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseGreavePlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.01 - Piercing: -0.05 - - !type:EditClothingSpeed - walkModifier: 0.94 - sprintModifier: 0.94 - -- type: modularPart - id: GreaveCopperPlate - slots: - - Greave - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseGreavePlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.03 - Slash: -0.03 - Piercing: -0.03 - Heat: -0.03 - - !type:EditClothingSpeed - walkModifier: 0.98 - sprintModifier: 0.98 - -- type: modularPart - id: GreaveMithrilPlate - slots: - - Greave - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/OuterClothing/ModularArmor/Greave/Cuirass/cuirass.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseGreavePlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.10 - Slash: -0.10 - Piercing: -0.10 - Heat: -0.10 - - !type:EditClothingSpeed - walkModifier: 0.98 - sprintModifier: 0.98 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/axe.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/axe.yml deleted file mode 100644 index bb4301c37d..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/axe.yml +++ /dev/null @@ -1,106 +0,0 @@ -#Concept: -# + Very high damage -# - Very low attack speed - -- type: modularPart - id: BaseBladeAxe - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseWeaponSharp - - !type:EditMeleeWeapon - resetOnHandSelected: true # Disable fast swap - attackRateMultiplier: 0.6 - angleMultiplier: 1.2 - bonusDamage: - types: - Slash: 14 - Piercing: 3 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - BladeInlay - -- type: modularPart - id: BladeIronAxe - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeAxe - - BaseBladeIron - -- type: modularPart - id: BladeGoldAxe - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeAxe - - BaseBladeGold - -- type: modularPart - id: BladeCopperAxe - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeAxe - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilAxe - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Axe/metall_axe.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeAxe - - BaseBladeMithril - -- type: modularPart - id: BladeWoodenAxe - slots: - - Blade - rsiPath: _CP14/Objects/ModularTools/Blade/Axe/wooden_axe.rsi - modifiers: - - !type:AddComponents - components: - - type: StaminaDamageOnHit - damage: 4 - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseBladeWooden - - !type:EditMeleeWeapon - resetOnHandSelected: true # Disable fast swap - attackRateMultiplier: 0.6 - angleMultiplier: 1.2 - bonusDamage: - types: - Blunt: 1 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - BladeInlay diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/base.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/base.yml deleted file mode 100644 index 76c6fa259a..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/base.yml +++ /dev/null @@ -1,54 +0,0 @@ -- type: modularPart - id: BaseBladeBone - modifiers: - - !type:EditDamageableModifier - multiplier: 2 - - !type:EditSharpened - sharpnessDamageMultiplier: 3 - - !type:EditMeleeWeapon - damageMultiplier: 0.75 - -- type: modularPart - id: BaseBladeWooden - modifiers: - - !type:EditDamageableModifier - multiplier: 3 - - !type:EditSharpened - sharpnessDamageMultiplier: 3 - - !type:EditMeleeWeapon - damageMultiplier: 0.25 - -- type: modularPart - id: BaseBladeIron - modifiers: - - !type:EditDamageableModifier - multiplier: 1 - - !type:EditSharpened - sharpnessDamageMultiplier: 1 - -- type: modularPart - id: BaseBladeCopper - modifiers: - - !type:EditDamageableModifier - multiplier: 1.5 - - !type:EditSharpened - sharpnessDamageMultiplier: 1.5 - -- type: modularPart - id: BaseBladeGold - modifiers: - - !type:EditDamageableModifier - multiplier: 2 - - !type:EditSharpened - sharpnessDamageMultiplier: 3 - -- type: modularPart - id: BaseBladeMithril - modifiers: - - !type:EditDamageableModifier - multiplier: 0.80 - - !type:EditSharpened - sharpnessDamageMultiplier: 0.80 - - !type:EditMeleeWeapon - damageMultiplier: 1.25 - diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/dagger.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/dagger.yml deleted file mode 100644 index f8a4244abd..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/dagger.yml +++ /dev/null @@ -1,85 +0,0 @@ -#Concept: -# + Fast attackRate -# fast swing -# - Low damage - -- type: modularPart - id: BaseBladeDagger - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponThrowable - - BaseWeaponChemical - - BaseWeaponSharp - - !type:AddComponents - components: - - type: ThrowingAngle - angle: 135 - - type: EmbeddableProjectile - offset: -0.15,-0.15 - removalTime: 0.5 - - !type:EditMeleeWeapon - attackRateMultiplier: 1.5 - bonusDamage: - types: - Slash: 4 - Piercing: 3 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay - -- type: modularPart - id: BladeIronDagger - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeDagger - - BaseBladeIron - -- type: modularPart - id: BladeGoldDagger - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeDagger - - BaseBladeGold - -- type: modularPart - id: BladeCopperDagger - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeDagger - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilDagger - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeDagger - - BaseBladeMithril diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/hammer.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/hammer.yml deleted file mode 100644 index 5122796227..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/hammer.yml +++ /dev/null @@ -1,97 +0,0 @@ -#Concept: -# hammer tool! -# High blunt damage -# Loow speed - -- type: modularPart - id: BaseBladeHammer - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponThrowable - - BaseWeaponExecution - - !type:AddComponents - components: - - type: Tool - qualities: - - CP14Hammering - useSound: - collection: CP14Hammering - params: - variation: 0.03 - volume: 2 - - type: DamageOtherOnHit - damage: - types: - Blunt: 7 - - type: DamageOnLand - damage: - types: - Blunt: 7 - - type: StaminaDamageOnHit - damage: 4 - - !type:EditMeleeWeapon - bonusDamage: - types: - Blunt: 7 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditDamageableModifier # How you can break a hammer? - multiplier: 0.8 - - !type:EditModularSlots - addSlots: - - BladeInlay - -- type: modularPart - id: BladeIronHammer - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHammer - - BaseBladeIron - -- type: modularPart - id: BladeGoldHammer - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHammer - - BaseBladeGold - -- type: modularPart - id: BladeCopperHammer - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHammer - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilHammer - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHammer - - BaseBladeMithril - diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/hoe.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/hoe.yml deleted file mode 100644 index 9a6dd6e8ea..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/hoe.yml +++ /dev/null @@ -1,95 +0,0 @@ -#Concept: -# Copy of dagger with bigger damage, but without throwing -- type: modularPart - id: BaseBladeHoe - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseWeaponThrowable - - BaseWeaponExecution - #components: TODO Add gathering tag - - !type:AddComponents - override: true - components: - - type: DamageOtherOnHit - damage: - types: - Piercing: 6 - - type: ThrowingAngle - angle: 135 - - type: EmbeddableProjectile - offset: -0.15,-0.15 - removalTime: 0.5 - - type: CP14EditTileTool - sound: - collection: CP14Digging - tileReplace: - CP14FloorDirt: CP14FloorDirtSeedbed - CP14FloorDirtSeedbed: CP14FloorDirt - - !type:EditMeleeWeapon - newWideAnimation: CP14WeaponArcThrust - attackRateMultiplier: 1.5 - bonusDamage: - types: - Piercing: 6 - - !type:EditDamageableModifier # Improvised weapon - multiplier: 1.2 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - Garde - -- type: modularPart - id: BladeIronHoe - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHoe - - BaseBladeIron - -- type: modularPart - id: BladeGoldHoe - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHoe - - BaseBladeGold - -- type: modularPart - id: BladeCopperHoe - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHoe - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilHoe - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeHoe - - BaseBladeMithril diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/mace.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/mace.yml deleted file mode 100644 index 0f34c7ccd5..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/mace.yml +++ /dev/null @@ -1,73 +0,0 @@ -#Concept: -# + High Wielded damage -# - Low AttackRate - -- type: modularPart - id: BaseBladeMace - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseWeaponExecution - - !type:EditMeleeWeapon - resetOnHandSelected: true # Disable fast swap - attackRateMultiplier: 0.85 - bonusDamage: - types: - Blunt: 5 - Piercing: 2 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - -- type: modularPart - id: BladeIronMace - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeMace - - BaseBladeIron - -- type: modularPart - id: BladeGoldMace - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeMace - - BaseBladeGold - -- type: modularPart - id: BladeCopperMace - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeMace - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilMace - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeMace - - BaseBladeMithril diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/mop.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/mop.yml deleted file mode 100644 index 797bbbfa56..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/mop.yml +++ /dev/null @@ -1,63 +0,0 @@ -# Concept: the mop -# Cleans puddles -# Standard attack speed -# Reasonable blunt damage (mop-fu real) -# Fragile; not a real weapon, should not take the place of one long-term -- type: modularPart - id: BaseBladeMop - modifiers: - - !type:AddComponents - override: true - components: - - type: Spillable - solution: absorbed - - type: Absorbent - - type: SolutionContainerManager - solutions: - absorbed: - maxVol: 50 - - !type:EditMeleeWeapon - bonusDamage: - types: - Blunt: 5 - - !type:EditDamageableModifier # Improvised weapon - multiplier: 1.2 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - Garde # Remember, Ed asked for this - - BladeInlay # Ed didn't ask for this, but it's REALLY funny - -- type: modularPart - id: BladeWoodMop - slots: - - Blade - rsiPath: _CP14/Objects/ModularTools/Blade/Mop/mop.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeMop - - BaseBladeIron # TODO wood weapons are planned, revisit this when they're done - - !type:EditDamageableModifier - multiplier: 2 # For now, we treat it as weaker iron - -- type: modularPart - id: BladeLucensMop - slots: - - Blade - rsiPath: _CP14/Objects/ModularTools/Blade/Mop/lucens_mop.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeMop - - BaseBladeMithril # TODO wood weapons might mean lucens weapons? - - !type:AddComponents - override: true - components: - - type: SolutionContainerManager - solutions: - absorbed: - maxVol: 100 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/pickaxe.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/pickaxe.yml deleted file mode 100644 index 4c7bb1eecf..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/pickaxe.yml +++ /dev/null @@ -1,84 +0,0 @@ -- type: modularPart - id: BaseBladePickaxe - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponExecution - - !type:AddComponents - override: true - components: - - type: Tool - qualities: - - Prying - useSound: - path: /Audio/Items/crowbar.ogg - - type: ToolTileCompatible - - type: Prying - - type: EmitSoundOnLand - sound: - path: /Audio/Items/crowbar_drop.ogg #Add to all modular weapons? - - !type:EditMeleeWeapon - attackRateMultiplier: 0.55 - angleMultiplier: 1.2 - bonusDamage: - types: - Piercing: 10 - Structural: 4 - - !type:EditItem - newSize: Normal - adjustShape: 1, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - BladeInlay - -- type: modularPart - id: BladeIronPickaxe - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladePickaxe - - BaseBladeIron - -- type: modularPart - id: BladeGoldPickaxe - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladePickaxe - - BaseBladeGold - -- type: modularPart - id: BladeCopperPickaxe - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladePickaxe - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilPickaxe - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladePickaxe - - BaseBladeMithril diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/rapier.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/rapier.yml deleted file mode 100644 index d86e6d83be..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/rapier.yml +++ /dev/null @@ -1,121 +0,0 @@ -#Concept: -# + Additional range -# + High Damage! And speed -# - Required Warcraft skill - -- type: modularPart - id: BaseBladeRapier - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseWeaponSharp - - !type:AddComponents - components: - - type: CP14MeleeWeaponSkillRequired - skills: - - RapierMastery - - !type:EditMeleeWeapon - newWideAnimation: CP14WeaponArcThrust - resetOnHandSelected: true # Disable fast swap - bonusRange: 0.2 - angleMultiplier: 0.6 - attackRateMultiplier: 1.4 - bonusDamage: - types: - Piercing: 11 - - !type:EditItem - newSize: Large - adjustShape: 0, 2 - storedOffsetBonus: 0, 10 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay - - !type:EditDamageableModifier # Only 1 ingot craft, so less health - multiplier: 2 - -- type: modularPart - id: BladeIronRapier - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeRapier - - BaseBladeIron - -- type: modularPart - id: BladeGoldRapier - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeRapier - - BaseBladeGold - -- type: modularPart - id: BladeCopperRapier - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeRapier - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilRapier - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeRapier - - BaseBladeMithril - -- type: modularPart - id: BladeWoodenRapier - slots: - - Blade - rsiPath: _CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi - modifiers: - - !type:AddComponents - components: - - type: StaminaDamageOnHit - damage: 3 - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseBladeWooden - - !type:AddComponents - components: - - !type:EditMeleeWeapon - newWideAnimation: CP14WeaponArcThrust - resetOnHandSelected: true # Disable fast swap - bonusRange: 0.2 - angleMultiplier: 0 - attackRateMultiplier: 1.4 - bonusDamage: - types: - Blunt: 1 - - !type:EditItem - newSize: Large - adjustShape: 0, 2 - storedOffsetBonus: 0, 10 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/shovel.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/shovel.yml deleted file mode 100644 index 8e0fef1da9..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/shovel.yml +++ /dev/null @@ -1,84 +0,0 @@ -- type: modularPart - id: BaseBladeShovel - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponExecution - - !type:AddComponents - components: - - type: Shovel - - type: ToolTileCompatible - - type: Tool - qualities: - - CP14Digging - useSound: - collection: CP14Digging - params: - variation: 0.03 - volume: 2 - - !type:EditMeleeWeapon - angleMultiplier: 1.2 - bonusDamage: - types: - Slash: 3 - Blunt: 3 - - !type:EditDamageableModifier # Improvised weapon - multiplier: 1.2 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - BladeInlay - -- type: modularPart - id: BladeIronShovel - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeShovel - - BaseBladeIron - -- type: modularPart - id: BladeGoldShovel - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeShovel - - BaseBladeGold - -- type: modularPart - id: BladeCopperShovel - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeShovel - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilShovel - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeShovel - - BaseBladeMithril diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/sickle.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/sickle.yml deleted file mode 100644 index e171b9dcfc..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/sickle.yml +++ /dev/null @@ -1,74 +0,0 @@ -#Concept: -# Copy of dagger with bigger damage, but without throwing -- type: modularPart - id: BaseBladeSickle - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseWeaponSharp - #components: TODO Add gathering tag - - !type:EditMeleeWeapon - attackRateMultiplier: 1.5 - bonusDamage: - types: - Slash: 5 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay - -- type: modularPart - id: BladeIronSickle - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSickle - - BaseBladeIron - -- type: modularPart - id: BladeGoldSickle - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSickle - - BaseBladeGold - -- type: modularPart - id: BladeCopperSickle - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSickle - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilSickle - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSickle - - BaseBladeMithril diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/skimitar.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/skimitar.yml deleted file mode 100644 index f13b26c4ea..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/skimitar.yml +++ /dev/null @@ -1,84 +0,0 @@ -#Concept: -# + Additional range -# + High Damage! + Wielded buff -# - Required Warcraft skill - -- type: modularPart - id: BaseBladeSkimitar - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseWeaponSharp - - !type:AddComponents - components: - - type: CP14MeleeWeaponSkillRequired - skills: - - SkimitarMastery - - !type:EditMeleeWeapon - resetOnHandSelected: false # We can fast swing! - bonusRange: 0.2 - angleMultiplier: 1.5 - bonusDamage: - types: - Slash: 8 - - !type:EditItem - newSize: Large - adjustShape: 0, 2 - storedOffsetBonus: 0, 10 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay - -- type: modularPart - id: BladeIronSkimitar - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSkimitar - - BaseBladeIron - -- type: modularPart - id: BladeGoldSkimitar - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSkimitar - - BaseBladeGold - -- type: modularPart - id: BladeCopperSkimitar - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSkimitar - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilSkimitar - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSkimitar - - BaseBladeMithril - diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/spear.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/spear.yml deleted file mode 100644 index 736c359524..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/spear.yml +++ /dev/null @@ -1,134 +0,0 @@ -#Concept: -# + High Throwable damage -# Piercing animation -# - Low Melee Damage - -- type: modularPart - id: BaseBladeSpear - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponThrowable - - BaseWeaponChemical - - BaseWeaponSharp - - !type:AddComponents - override: true - components: - - type: DamageOtherOnHit - damage: - types: - Piercing: 16 - - type: ThrowingAngle - angle: 135 - - type: EmbeddableProjectile - offset: -0.15,-0.15 - removalTime: 1.5 - - !type:EditMeleeWeapon - newWideAnimation: CP14WeaponArcThrust - angleMultiplier: 0 - bonusRange: 0.2 - bonusDamage: - types: - Piercing: 8 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay - -- type: modularPart - id: BladeIronSpear - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSpear - - BaseBladeIron - -- type: modularPart - id: BladeGoldSpear - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSpear - - BaseBladeGold - -- type: modularPart - id: BladeCopperSpear - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSpear - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilSpear - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSpear - - BaseBladeMithril - -- type: modularPart - id: BladeWoodenSpear - slots: - - Blade - rsiPath: _CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi - modifiers: - - !type:AddComponents - components: - - type: StaminaDamageOnHit - damage: 3 - - !type:Inherit - copyFrom: - - BaseWeaponThrowable - - BaseWeaponChemical - - BaseBladeWooden - - !type:AddComponents - override: true - components: - - type: DamageOtherOnHit - damage: - types: - Blunt: 1 - - type: ThrowingAngle - angle: 135 - - type: EmbeddableProjectile - offset: -0.15,-0.15 - removalTime: 1.5 - - !type:EditMeleeWeapon - newWideAnimation: CP14WeaponArcThrust - angleMultiplier: 0 - bonusRange: 0.2 - bonusDamage: - types: - Blunt: 1 - - !type:EditItem - newSize: Normal - adjustShape: 0, 1 - storedOffsetBonus: 0, 5 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay diff --git a/Resources/Prototypes/_CP14/ModularCraft/Blade/sword.yml b/Resources/Prototypes/_CP14/ModularCraft/Blade/sword.yml deleted file mode 100644 index 1c1716c434..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Blade/sword.yml +++ /dev/null @@ -1,128 +0,0 @@ -#Concept: -# + Additional range -# + High Damage! + Wielded buff -# - Required Warcraft skill - -- type: modularPart - id: BaseBladeSword - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseWeaponSharp - - !type:AddComponents - components: - - type: CP14MeleeWeaponSkillRequired - skills: - - SwordMastery - - !type:EditMeleeWeapon - resetOnHandSelected: true # Disable fast swap - bonusRange: 0.2 - angleMultiplier: 1.2 - bonusDamage: - types: - Slash: 9 - Piercing: 5 - - !type:EditItem - newSize: Large - adjustShape: 0, 2 - storedOffsetBonus: 0, 10 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay - -- type: modularPart - id: BladeIronSword - slots: - - Blade - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSword - - BaseBladeIron - -- type: modularPart - id: BladeGoldSword - slots: - - Blade - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSword - - BaseBladeGold - -- type: modularPart - id: BladeCopperSword - slots: - - Blade - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSword - - BaseBladeCopper - -- type: modularPart - id: BladeMithrilSword - slots: - - Blade - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSword - - BaseBladeMithril - -- type: modularPart - id: BladeBoneSword - slots: - - Blade - sourcePart: CP14Bone1 - rsiPath: _CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseBladeSword - - BaseBladeBone - -- type: modularPart - id: BladeWoodenSword - slots: - - Blade - rsiPath: _CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi - modifiers: - - !type:AddComponents - components: - - type: StaminaDamageOnHit - damage: 4 - - !type:Inherit - copyFrom: - - BaseWeaponChemical - - BaseBladeWooden - - !type:AddComponents - components: - - !type:EditMeleeWeapon - resetOnHandSelected: true # Disable fast swap - bonusRange: 0.2 - angleMultiplier: 1.2 - bonusDamage: - types: - Blunt: 1 - - !type:EditItem - newSize: Large - adjustShape: 0, 2 - storedOffsetBonus: 0, 10 - - !type:EditModularSlots - addSlots: - - Garde - - BladeInlay diff --git a/Resources/Prototypes/_CP14/ModularCraft/Garde/guildmaster.yml b/Resources/Prototypes/_CP14/ModularCraft/Garde/guildmaster.yml deleted file mode 100644 index e7841363ee..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Garde/guildmaster.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Concept -# + Damage + durability - -- type: modularPart - id: BaseGardeGuildmaster - modifiers: - - !type:EditDamageableModifier - multiplier: 0.8 - - !type:EditSharpened - sharpnessDamageMultiplier: 0.8 - - !type:EditMeleeWeapon - damageMultiplier: 1.2 - -- type: modularPart - id: GardeGuildmaster - slots: - - Garde - rsiPath: _CP14/Objects/ModularTools/Garde/guildmaster_garde.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeGuildmaster - diff --git a/Resources/Prototypes/_CP14/ModularCraft/Garde/sharp.yml b/Resources/Prototypes/_CP14/ModularCraft/Garde/sharp.yml deleted file mode 100644 index c51a059386..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Garde/sharp.yml +++ /dev/null @@ -1,64 +0,0 @@ -# Concept -# + Damage - -- type: modularPart - id: BaseGardeSharp - modifiers: - - !type:EditMeleeWeapon - damageMultiplier: 1.2 - -- type: modularPart - id: GardeSharpIron - slots: - - Garde - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSharp - -- type: modularPart - id: GardeSharpGold - slots: - - Garde - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSharp - -- type: modularPart - id: GardeSharpCopper - slots: - - Garde - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSharp - -- type: modularPart - id: GardeSharpMithril - slots: - - Garde - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sharp.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSharp - -- type: modularPart - id: GardeSharpWooden - slots: - - Garde - rsiPath: _CP14/Objects/ModularTools/Garde/wooden_sharp.rsi - modifiers: - - !type:EditMeleeWeapon - damageMultiplier: 1.1 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Garde/sturdy.yml b/Resources/Prototypes/_CP14/ModularCraft/Garde/sturdy.yml deleted file mode 100644 index 2a4a6c4771..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Garde/sturdy.yml +++ /dev/null @@ -1,68 +0,0 @@ -# Concept -# + Durability - -- type: modularPart - id: BaseGardeSturdy - modifiers: - - !type:EditDamageableModifier - multiplier: 0.8 - - !type:EditSharpened - sharpnessDamageMultiplier: 0.8 - -- type: modularPart - id: GardeSturdyIron - slots: - - Garde - sourcePart: CP14ScrapIron - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSturdy - -- type: modularPart - id: GardeSturdyGold - slots: - - Garde - sourcePart: CP14ScrapGold - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSturdy - -- type: modularPart - id: GardeSturdyCopper - slots: - - Garde - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSturdy - -- type: modularPart - id: GardeSturdyMithril - slots: - - Garde - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Objects/ModularTools/Garde/metall_sturdy.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseGardeSturdy - -- type: modularPart - id: GardeSturdyWooden - slots: - - Garde - rsiPath: _CP14/Objects/ModularTools/Garde/wooden_sturdy.rsi - modifiers: - - !type:EditDamageableModifier - multiplier: 0.9 - - !type:EditSharpened - sharpnessDamageMultiplier: 0.9 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Aventail/chainmail.yml b/Resources/Prototypes/_CP14/ModularCraft/Helmet/Aventail/chainmail.yml deleted file mode 100644 index 891a1332fa..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Aventail/chainmail.yml +++ /dev/null @@ -1,72 +0,0 @@ -- type: modularPart - id: BaseAventailChainmail - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: AventailIronChainmail - slots: - - Aventail - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailChainmail - - !type:EditArmor - modifiers: - coefficients: - Slash: -0.06 - Piercing: -0.01 - -- type: modularPart - id: AventailGoldChainmail - slots: - - Aventail - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailChainmail - - !type:EditArmor - modifiers: - coefficients: - Slash: -0.03 - -- type: modularPart - id: AventailCopperChainmail - slots: - - Aventail - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailChainmail - - !type:EditArmor - modifiers: - coefficients: - Slash: -0.04 - -- type: modularPart - id: AventailMithrilChainmail - slots: - - Aventail - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/chainmail.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.03 - Slash: -0.07 - Piercing: -0.02 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Aventail/plate.yml b/Resources/Prototypes/_CP14/ModularCraft/Helmet/Aventail/plate.yml deleted file mode 100644 index e6bfdca584..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Aventail/plate.yml +++ /dev/null @@ -1,92 +0,0 @@ -- type: modularPart - id: BaseAventailPlate - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: AventailIronPlate - slots: - - Aventail - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.04 - Slash: -0.02 - Piercing: -0.05 - Heat: -0.04 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 - -- type: modularPart - id: AventailGoldPlate - slots: - - Aventail - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.01 - Piercing: -0.03 - - !type:EditClothingSpeed - walkModifier: 0.98 - sprintModifier: 0.98 - -- type: modularPart - id: AventailCopperPlate - slots: - - Aventail - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.03 - Slash: -0.01 - Piercing: -0.03 - Heat: -0.02 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 - -- type: modularPart - id: AventailMithrilPlate - slots: - - Aventail - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/Head/ModularArmor/Aventail/plate.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseAventailPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.06 - Slash: -0.03 - Piercing: -0.08 - Heat: -0.08 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Visor/chainmail.yml b/Resources/Prototypes/_CP14/ModularCraft/Helmet/Visor/chainmail.yml deleted file mode 100644 index 20dc6bd1b3..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Visor/chainmail.yml +++ /dev/null @@ -1,72 +0,0 @@ -- type: modularPart - id: BaseVisorChainmail - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: VisorIronChainmail - slots: - - Visor - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorChainmail - - !type:EditArmor - modifiers: - coefficients: - Slash: -0.06 - Piercing: -0.01 - -- type: modularPart - id: VisorGoldChainmail - slots: - - Visor - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorChainmail - - !type:EditArmor - modifiers: - coefficients: - Slash: -0.03 - -- type: modularPart - id: VisorCopperChainmail - slots: - - Visor - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorChainmail - - !type:EditArmor - modifiers: - coefficients: - Slash: -0.04 - -- type: modularPart - id: VisorMithrilChainmail - slots: - - Visor - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/chainmail.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorChainmail - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.03 - Slash: -0.07 - Piercing: -0.02 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Visor/plate.yml b/Resources/Prototypes/_CP14/ModularCraft/Helmet/Visor/plate.yml deleted file mode 100644 index f47414c4d8..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Helmet/Visor/plate.yml +++ /dev/null @@ -1,92 +0,0 @@ -- type: modularPart - id: BaseVisorPlate - modifiers: - - !type:Inherit - copyFrom: - - BaseClothingArmor - -- type: modularPart - id: VisorIronPlate - slots: - - Visor - sourcePart: CP14ScrapIron - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.04 - Slash: -0.02 - Piercing: -0.05 - Heat: -0.04 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 - -- type: modularPart - id: VisorGoldPlate - slots: - - Visor - sourcePart: CP14ScrapGold - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.01 - Slash: -0.01 - Piercing: -0.03 - - !type:EditClothingSpeed - walkModifier: 0.98 - sprintModifier: 0.98 - -- type: modularPart - id: VisorCopperPlate - slots: - - Visor - sourcePart: CP14ScrapCopper - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.03 - Slash: -0.01 - Piercing: -0.03 - Heat: -0.02 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 - -- type: modularPart - id: VisorMithrilPlate - slots: - - Visor - sourcePart: CP14ScrapMithril - rsiPath: _CP14/Clothing/Head/ModularArmor/Visor/plate.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseVisorPlate - - !type:EditArmor - modifiers: - coefficients: - Blunt: -0.06 - Slash: -0.03 - Piercing: -0.08 - Heat: -0.08 - - !type:EditClothingSpeed - walkModifier: 0.99 - sprintModifier: 0.99 diff --git a/Resources/Prototypes/_CP14/ModularCraft/Inlay/quartz.yml b/Resources/Prototypes/_CP14/ModularCraft/Inlay/quartz.yml deleted file mode 100644 index 0a058bab33..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Inlay/quartz.yml +++ /dev/null @@ -1,129 +0,0 @@ -- type: modularPart - id: InlayQuartzWater - slots: - - BladeInlay - rsiPath: _CP14/Objects/ModularTools/Inlay/quartz.rsi - color: "#5eabeb" - modifiers: - - !type:AddComponents - components: - - type: CP14SpellEffectOnHit - effects: - - !type:CP14SpellSpawnEntityOnTarget - spawns: - - CP14ImpactEffectFreeze - - !type:CP14SpellApplyEntityEffect - effects: - - !type:MovespeedModifier - walkSpeedModifier: 0.75 - sprintSpeedModifier: 0.75 - statusLifetime: 2 - - !type:AdjustTemperature - amount: -6000 - - !type:ExtinguishReaction - -- type: modularPart - id: InlayQuartzHealing - slots: - - BladeInlay - rsiPath: _CP14/Objects/ModularTools/Inlay/quartz.rsi - color: "#79b330" - modifiers: - - !type:AddComponents - components: - - type: CP14SpellEffectOnHit - effects: - - !type:CP14SpellApplyEntityEffect - effects: - - !type:HealthChange - damage: - types: - Slash: -0.5 - Blunt: -0.5 - Piercing: -0.5 - Poison: -0.5 - Bloodloss: -0.5 - Caustic: -0.5 - Cold: -0.5 - Heat: -0.5 - Shock: -0.5 - - !type:Jitter - - !type:CP14SpellSpawnEntityOnTarget - spawns: - - CP14ImpactEffectCureWounds - -- type: modularPart - id: InlayQuartzFire - slots: - - BladeInlay - rsiPath: _CP14/Objects/ModularTools/Inlay/quartz.rsi - color: "#ed731c" - modifiers: - - !type:AddComponents - components: - - type: CP14SpellEffectOnHit - whitelist: - components: - - MobState #Please dont burn all map - effects: - - !type:CP14SpellApplyEntityEffect - effects: - - !type:FlammableReaction - multiplier: 0.5 - - !type:AdjustTemperature - amount: 6000 - - !type:Ignite - - !type:CP14SpellSpawnEntityOnTarget - spawns: - - CP14ImpactEffectFlameCreation - -- type: modularPart - id: InlayQuartzLight - slots: - - BladeInlay - rsiPath: _CP14/Objects/ModularTools/Inlay/quartz.rsi - color: "#f1c7ff" - modifiers: - - !type:AddComponents - components: - - type: PointLight - color: "#f1c7ff" - radius: 3 - -- type: modularPart - id: InlayQuartzElectric - slots: - - BladeInlay - rsiPath: _CP14/Objects/ModularTools/Inlay/quartz.rsi - color: "#e6ff6b" - modifiers: - - !type:AddComponents - components: - - type: CP14SpellEffectOnHit - effects: - - !type:CP14SpellSpawnEntityOnTarget - spawns: - - CP14ElectrifiedEffect - - !type:CP14SpellApplyEntityEffect - effects: - - !type:Jitter - - !type:CP14StaminaChange - staminaDelta: -5 - -- type: modularPart - id: InlayQuartzDarkness - slots: - - BladeInlay - rsiPath: _CP14/Objects/ModularTools/Inlay/quartz.rsi - color: "#391c57" - modifiers: - - !type:AddComponents - components: - - type: CP14SpellEffectOnHit - effects: - - !type:CP14SpellThrowFromUser - throwPower: 9 - - !type:CP14SpellSpawnEntityOnTarget - spawns: - - CP14ImpactEffectShadowGrab - diff --git a/Resources/Prototypes/_CP14/ModularCraft/Tip/arrow.yml b/Resources/Prototypes/_CP14/ModularCraft/Tip/arrow.yml deleted file mode 100644 index fb1ada2ac6..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/Tip/arrow.yml +++ /dev/null @@ -1,96 +0,0 @@ -- type: modularPart - id: BaseTipArrow - modifiers: - - !type:Inherit - copyFrom: - - BaseWeaponRangedChemical - - !type:EditMeleeWeapon - resetOnHandSelected: true # Disable fast swap #Ed: Wtf? Why arrows have melee buffs?? - attackRateMultiplier: 1.4 - bonusDamage: - types: - Piercing: 3 - - !type:EditItem - newSize: Small - - !type:EditModularSlots - addSlots: - - Rod - -- type: modularPart - id: TipIronArrow - slots: - - ArrowTip - rsiPath: _CP14/Objects/ModularTools/Tip/arrow.rsi - modifiers: - - !type:Inherit - copyFrom: - - BaseTipArrow - - BaseBladeIron - - !type:AddComponents - components: - - type: Projectile - deleteOnCollide: false - onlyCollideWhenShot: true - damage: - types: - Piercing: 25 - -- type: modularPart - id: TipGoldArrow - slots: - - ArrowTip - rsiPath: _CP14/Objects/ModularTools/Tip/arrow.rsi - color: "#ffe269" - modifiers: - - !type:Inherit - copyFrom: - - BaseTipArrow - - BaseBladeGold - - !type:AddComponents - components: - - type: Projectile - deleteOnCollide: false - onlyCollideWhenShot: true - damage: - types: - Piercing: 15 - -- type: modularPart - id: TipCopperArrow - slots: - - ArrowTip - rsiPath: _CP14/Objects/ModularTools/Tip/arrow.rsi - color: "#e28f08" - modifiers: - - !type:Inherit - copyFrom: - - BaseTipArrow - - BaseBladeCopper - - !type:AddComponents - components: - - type: Projectile - deleteOnCollide: false - onlyCollideWhenShot: true - damage: - types: - Piercing: 15 - -- type: modularPart - id: TipMithrilArrow - slots: - - ArrowTip - rsiPath: _CP14/Objects/ModularTools/Tip/arrow.rsi - color: "#38f0b3" - modifiers: - - !type:Inherit - copyFrom: - - BaseTipArrow - - BaseBladeMithril - - !type:AddComponents - components: - - type: Projectile - deleteOnCollide: false - onlyCollideWhenShot: true - damage: - types: - Piercing: 30 diff --git a/Resources/Prototypes/_CP14/ModularCraft/baseModularModifier.yml b/Resources/Prototypes/_CP14/ModularCraft/baseModularModifier.yml deleted file mode 100644 index 89f3fe70aa..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/baseModularModifier.yml +++ /dev/null @@ -1,116 +0,0 @@ -- type: modularPart - id: BaseWeaponChemical - modifiers: - - !type:AddComponents - components: - - type: SolutionContainerManager - solutions: - melee: - maxVol: 4 - - type: MeleeChemicalInjector - solution: melee - - type: RefillableSolution - solution: melee - - type: InjectableSolution - solution: melee - - type: SolutionInjectOnEmbed - transferAmount: 2 - solution: melee - - type: SolutionTransfer - maxTransferAmount: 2 - -- type: modularPart - id: BaseWeaponThrowable - modifiers: - - !type:AddComponents - components: - - type: LandAtCursor - - type: DamageOtherOnHit - damage: - types: - Piercing: 10 - - type: DamageOnLand - damage: - types: - Piercing: 3 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - vertices: - - -0.40,-0.30 - - -0.30,-0.40 - - 0.40,0.30 - - 0.30,0.40 - density: 10 - mask: - - ItemMask - restitution: 0.3 - friction: 0.2 - -- type: modularPart - id: BaseWeaponSharp - modifiers: - - !type:AddComponents - components: - - type: Sharp - - type: CP14Sharpened - - type: CP14SharpeningStone - - type: UseDelay - - type: Tool - qualities: - - Slicing - useSound: - path: /Audio/Items/Culinary/chop.ogg - - type: Utensil - types: - - Knife - - type: CP14WallpaperRemover - - type: Execution - -- type: modularPart - id: BaseWeaponRangedChemical - modifiers: - - !type:AddComponents - components: - - type: SolutionContainerManager - solutions: - ammo: - maxVol: 2 - - type: MeleeChemicalInjector - solution: ammo - - type: RefillableSolution - solution: ammo - - type: InjectableSolution - solution: ammo - - type: SolutionInjectOnEmbed - transferAmount: 2 - solution: ammo - - type: SolutionTransfer - maxTransferAmount: 2 - - type: SolutionContainerVisuals - maxFillLevels: 1 - fillBaseName: solution - -- type: modularPart - id: BaseClothingArmor - modifiers: - - !type:AddComponents - components: - - type: Item - size: Small - -- type: modularPart - id: BaseWeaponExecution - modifiers: - - !type:AddComponents - components: - - type: Execution - internalMeleeExecutionMessage: "cp14-execution-popup-melee-initial-internal" - externalMeleeExecutionMessage: "cp14-execution-popup-melee-initial-external" - completeInternalMeleeExecutionMessage: "cp14-execution-popup-melee-complete-internal" - completeExternalMeleeExecutionMessage: "cp14-execution-popup-melee-complete-external" - internalSelfExecutionMessage: "cp14-execution-popup-self-initial-internal" - externalSelfExecutionMessage: "cp14-execution-popup-self-initial-external" - completeInternalSelfExecutionMessage: "cp14-execution-popup-self-complete-internal" - completeExternalSelfExecutionMessage: "cp14-execution-popup-self-complete-external" diff --git a/Resources/Prototypes/_CP14/ModularCraft/slots.yml b/Resources/Prototypes/_CP14/ModularCraft/slots.yml deleted file mode 100644 index 2a1919c706..0000000000 --- a/Resources/Prototypes/_CP14/ModularCraft/slots.yml +++ /dev/null @@ -1,35 +0,0 @@ -- type: modularSlot - id: Blade - name: cp14-modular-slot-blade - -- type: modularSlot - id: Garde - name: cp14-modular-slot-garde - -- type: modularSlot - id: BladeInlay - name: cp14-modular-slot-blade-inlay - -- type: modularSlot - id: Rod - name: cp14-modular-slot-rod - -- type: modularSlot - id: ArrowTip - name: cp14-modular-slot-arrow-tip - -- type: modularSlot - id: Cuisses - name: cp14-modular-slot-cuisses - -- type: modularSlot - id: Greave - name: cp14-modular-slot-greave - -- type: modularSlot - id: Visor - name: cp14-modular-slot-visor - -- type: modularSlot - id: Aventail - name: cp14-modular-slot-aventail diff --git a/Resources/Prototypes/_CP14/Procedural/Demiplane/Modifiers/Danger/mobs.yml b/Resources/Prototypes/_CP14/Procedural/Demiplane/Modifiers/Danger/mobs.yml index e38f7295dc..4d01e47265 100644 --- a/Resources/Prototypes/_CP14/Procedural/Demiplane/Modifiers/Danger/mobs.yml +++ b/Resources/Prototypes/_CP14/Procedural/Demiplane/Modifiers/Danger/mobs.yml @@ -130,11 +130,11 @@ - type: cp14LocationModifier id: EnemySpineguard levels: - min: 3 + min: 2 max: 7 name: cp14-modifier-spineguard categories: - Danger: 0.5 + Danger: 0.3 requiredTags: - CP14DemiplaneUnderground layers: diff --git a/Resources/Prototypes/_CP14/Reagents/Target Effects/damage_effects.yml b/Resources/Prototypes/_CP14/Reagents/Target Effects/damage_effects.yml new file mode 100644 index 0000000000..46568a0e8f --- /dev/null +++ b/Resources/Prototypes/_CP14/Reagents/Target Effects/damage_effects.yml @@ -0,0 +1,151 @@ +- type: reagent + id: CP14DamageEffectDamageBrute + name: cp14-reagent-name-basic-damage-brute + desc: cp14-reagent-desc-basic-damage-brute + group: CP14DamageEffect + flavor: CP14Stinging + color: "#633223" + physicalDesc: cp14-reagent-physical-desc-ferrous + worksOnTheDead: true + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + groups: + Brute: 3 + pricePerUnit: 3.0 # Similar to healing but with Chaos instead of Order + + +- type: reagent + id: CP14DamageEffectDamageHeat + name: cp14-reagent-name-basic-damage-heat + desc: cp14-reagent-desc-basic-damage-heat + group: CP14DamageEffect + flavor: CP14Stinging + color: "#d4772a" + tileReactions: + - !type:CreateEntityTileReaction + entity: CP14Fire + physicalDesc: cp14-reagent-physical-desc-sparkling + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:FlammableReaction + multiplier: 1.5 + - !type:AdjustTemperature + amount: 4000 + - !type:Ignite + pricePerUnit: 3.5 # Similar to healing but with Chaos instead of Order + + +- type: reagent + id: CP14DamageEffectDamageCold + name: cp14-reagent-name-basic-damage-cold + desc: cp14-reagent-desc-basic-damage-cold + group: CP14DamageEffect + flavor: CP14Stinging + color: "#1a95a3" + physicalDesc: cp14-reagent-physical-desc-sparkling + worksOnTheDead: true + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + Cold: 1.5 + - !type:AdjustTemperature + amount: -5000 + - !type:PopupMessage + type: Local + visualType: Medium + messages: [ "leporazine-effect-temperature-adjusting" ] + probability: 0.1 + pricePerUnit: 4.0 # Similar to healing but with Chaos instead of Order + + +- type: reagent + id: CP14DamageEffectDamagePoison + name: cp14-reagent-name-basic-damage-poison + desc: cp14-reagent-desc-basic-damage-poison + group: CP14DamageEffect + flavor: CP14Bitterly + color: "#768551" + physicalDesc: cp14-reagent-physical-desc-viscous + worksOnTheDead: true + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + Poison: 3 + pricePerUnit: 3.5 # Similar to healing but with Chaos instead of Order + + +- type: reagent + id: CP14DamageEffectDamageAirloss + name: cp14-reagent-name-basic-damage-airloss + desc: cp14-reagent-desc-basic-damage-airloss + group: CP14DamageEffect + flavor: horrible + color: "#73091e" + worksOnTheDead: true + physicalDesc: reagent-physical-desc-viscous + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + Asphyxiation: 3 + pricePerUnit: 4.0 # Similar to healing but with Chaos instead of Order + + +- type: reagent + id: CP14DamageEffectDamageManaDepletion + name: cp14-reagent-name-basic-damage-manadepletion + desc: cp14-reagent-desc-basic-damage-manadepletion + group: CP14DamageEffect + flavor: CP14Bitterly + color: "#2f6b62" + physicalDesc: cp14-reagent-physical-desc-viscous + worksOnTheDead: true + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + CP14ManaDepletion: 3 + pricePerUnit: 3.0 # 2×Energia (0.4) + 1×Poison (0.2) + Water (0.1) = 0.7 → x4.28 + + +- type: reagent + id: CP14DamageEffectBloodAbsorption + name: cp14-reagent-name-basic-blood-absorption + desc: cp14-reagent-desc-basic-blood-absorption + group: CP14DamageEffect + flavor: CP14Metallic + color: "#2b0e0b" + worksOnTheDead: true + physicalDesc: cp14-reagent-physical-desc-scarlet + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:ModifyBloodLevel + amount: -10 + - !type:HealthChange + damage: + types: + Bloodloss: 2 + pricePerUnit: 4.0 # Similar to restoration but with Chaos instead of Order diff --git a/Resources/Prototypes/_CP14/Reagents/Target Effects/healing_effects.yml b/Resources/Prototypes/_CP14/Reagents/Target Effects/healing_effects.yml new file mode 100644 index 0000000000..b26852ce0a --- /dev/null +++ b/Resources/Prototypes/_CP14/Reagents/Target Effects/healing_effects.yml @@ -0,0 +1,162 @@ +# T1 / Simple healing effects +- type: reagent + id: CP14HealingEffectHealBrute + name: cp14-reagent-name-basic-heal-brute + desc: cp14-reagent-desc-basic-heal-brute + group: CP14HealingEffect + flavor: CP14Metallic + color: "#e31010" + physicalDesc: cp14-reagent-physical-desc-scarlet + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:ModifyBleedAmount + amount: -2 + - !type:EvenHealthChange + damage: + Brute: -6 + pricePerUnit: 3.0 # 2×Life (0.4) + Order (0.25) + Water (0.1) = 1.05 → x3 for balance + +- type: reagent + id: CP14HealingEffectHealHeat + name: cp14-reagent-name-basic-heal-heat + desc: cp14-reagent-desc-basic-heal-heat + group: CP14HealingEffect + flavor: CP14Stinging + color: "#BF361E" + physicalDesc: cp14-reagent-physical-desc-sparkling + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + Heat: -10 + - !type:AdjustTemperature + conditions: + - !type:Temperature + min: 295 + amount: -5000 + - !type:PopupMessage + conditions: + - !type:Temperature + min: 295 + type: Local + visualType: Medium + messages: [ "leporazine-effect-temperature-adjusting" ] + probability: 0.1 + pricePerUnit: 3.5 # 1×Life (0.2) + 1×Fire (0.25) + 1×Order (0.25) + Water (0.1) = 0.8 → x4.375 + +- type: reagent + id: CP14HealingEffectHealCold + name: cp14-reagent-name-basic-heal-cold + desc: cp14-reagent-desc-basic-heal-cold + group: CP14HealingEffect + flavor: CP14Stinging + color: "#a3511a" + physicalDesc: cp14-reagent-physical-desc-sparkling + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + Cold: -10 + - !type:AdjustTemperature + conditions: + - !type:Temperature + max: 293.15 + amount: 5000 + - !type:PopupMessage + conditions: + - !type:Temperature + max: 293.15 + type: Local + visualType: Medium + messages: [ "leporazine-effect-temperature-adjusting" ] + probability: 0.1 + pricePerUnit: 4.0 # 1×Life (0.2) + 1×Frost (0.2) + 1×Order (0.25) + Water (0.1) = 0.75 → x5.33 + +- type: reagent + id: CP14HealingEffectHealPoison + name: cp14-reagent-name-basic-heal-poison + desc: cp14-reagent-desc-basic-heal-poison + group: CP14HealingEffect + flavor: CP14Bitterly + color: "#82ba3d" + physicalDesc: cp14-reagent-physical-desc-viscous + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + Poison: -10 + pricePerUnit: 3.5 # 1×Life (0.2) + 1×Poison (0.2) + 1×Order (0.25) + Water (0.1) = 0.75 → x4.66 + +- type: reagent + id: CP14HealingEffectHealAirloss + name: cp14-reagent-name-basic-heal-airloss + desc: cp14-reagent-desc-basic-heal-airloss + group: CP14HealingEffect + flavor: fizzy + color: "#e6f4f5" + worksOnTheDead: true + physicalDesc: reagent-physical-desc-milky + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + Asphyxiation: -10 + pricePerUnit: 4.0 # 1×Life (0.2) + 1×Air (0.25) + 1×Order (0.25) + Water (0.1) = 0.8 → x5 + +- type: reagent + id: CP14HealingEffectHealManaDepletion + name: cp14-reagent-name-basic-heal-manadepletion + desc: cp14-reagent-desc-basic-heal-manadepletion + group: CP14HealingEffect + flavor: CP14Bitterly + color: "#2d4d79" + physicalDesc: cp14-reagent-physical-desc-viscous + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:HealthChange + damage: + types: + CP14ManaDepletion: -10 + pricePerUnit: 3.0 # 1×Life (0.2) + 2×Energia (0.4) + Water (0.1) = 0.7 → x4.28 + +- type: reagent + id: CP14HealingEffectBloodRestore + name: cp14-reagent-name-basic-blood-restore + desc: cp14-reagent-desc-basic-blood-restore + group: CP14HealingEffect + flavor: CP14Metallic + color: "#e31010" + worksOnTheDead: true + physicalDesc: cp14-reagent-physical-desc-scarlet + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:ModifyBloodLevel + amount: 20 + - !type:HealthChange + damage: + types: + Bloodloss: -5 + pricePerUnit: 4.0 # 1×Life (0.2) + 1×Water (0.25) + 1×Order (0.25) + Water (0.1) = 0.8 → x5 diff --git a/Resources/Prototypes/_CP14/Reagents/Target Effects/negative_effects.yml b/Resources/Prototypes/_CP14/Reagents/Target Effects/negative_effects.yml new file mode 100644 index 0000000000..a4c98e8dd9 --- /dev/null +++ b/Resources/Prototypes/_CP14/Reagents/Target Effects/negative_effects.yml @@ -0,0 +1,75 @@ +- type: reagent + id: CP14NegativeEffectDamageMana + name: cp14-reagent-name-basic-damage-mana + desc: cp14-reagent-desc-basic-damage-mana + group: CP14NegativeEffect + flavor: CP14Bitterly + color: "#6014e3" + physicalDesc: cp14-reagent-physical-desc-iridescent + metabolisms: + Poison: + metabolismRate: 0.05 + effects: + - !type:CP14ManaChange + manaDelta: -1.5 + safe: false + pricePerUnit: 5.0 # 2×Energia (0.4) + 1×Void (0.2) + Water (0.1) = 0.7 → x7.14 + +- type: reagent + id: CP14NegativeEffectDamageStam + name: cp14-reagent-name-basic-damage-stam + desc: cp14-reagent-desc-basic-damage-stam + group: CP14NegativeEffect + flavor: CP14Magic + color: "#686400" + physicalDesc: cp14-reagent-physical-desc-iridescent + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:CP14StaminaChange + staminaDelta: -3 + pricePerUnit: 5.0 # 1×Void (0.2) + 1×Motion (0.2) + 1xAir (0.25) + Water (0.1) = 0.75 → x6.67 (high value) + +- type: reagent + id: CP14NegativeEffectSpeedDown + name: cp14-reagent-name-basic-speed-down + desc: cp14-reagent-desc-basic-speed-down + group: CP14NegativeEffect + flavor: CP14Sweetly + color: "#1e4166" + physicalDesc: cp14-reagent-physical-desc-viscous + metabolisms: + Poison: + metabolismRate: 0.1 + effects: + - !type:MovespeedModifier + walkSpeedModifier: 0.65 + sprintSpeedModifier: 0.65 + statusLifetime: 1.5 + - !type:GenericStatusEffect + key: Stutter + component: StutteringAccent + pricePerUnit: 4.0 # Similar to speed up but with Chaos instead of Order + +- type: reagent + id: CP14NegativeEffectSleep + name: cp14-reagent-name-basic-sleep + desc: cp14-reagent-desc-basic-sleep + group: CP14NegativeEffect + flavor: CP14VerySweet + color: "#425e8a" + physicalDesc: cp14-reagent-physical-desc-viscous + metabolisms: + Narcotic: + metabolismRate: 0.1 + effects: + - !type:Emote + emote: Yawn + showInChat: true + probability: 0.2 + - !type:GenericStatusEffect + key: ForcedSleep + component: ForcedSleeping + type: Add + pricePerUnit: 6.0 # High cost due to powerful effect diff --git a/Resources/Prototypes/_CP14/Reagents/Target Effects/positive_effects.yml b/Resources/Prototypes/_CP14/Reagents/Target Effects/positive_effects.yml new file mode 100644 index 0000000000..af1775ed97 --- /dev/null +++ b/Resources/Prototypes/_CP14/Reagents/Target Effects/positive_effects.yml @@ -0,0 +1,142 @@ +- type: reagent + id: CP14PositiveEffectSatiateHunger + name: cp14-reagent-name-basic-satiate-hunger + desc: cp14-reagent-desc-basic-satiate-hunger + group: CP14PositiveEffect + flavor: CP14Sweetly + color: "#a35629" + physicalDesc: cp14-reagent-physical-desc-viscous + metabolisms: + Food: + metabolismRate: 0.05 + effects: + - !type:SatiateHunger + factor: 15 + conditions: + - !type:OrganType + type: CP14Vampire + shouldHave: false + pricePerUnit: 1.5 # Simple effect, low cost + +- type: reagent + id: CP14PositiveEffectSatiateThirst + name: cp14-reagent-name-basic-satiate-thirst + desc: cp14-reagent-desc-basic-satiate-thirst + group: CP14PositiveEffect + flavor: CP14Water + color: "#2b7fed" + physicalDesc: cp14-reagent-physical-desc-colorless + metabolisms: + Drink: + metabolismRate: 0.05 + effects: + - !type:SatiateThirst + factor: 15 + pricePerUnit: 1.0 # Most basic effect + +- type: reagent + id: CP14PositiveEffectHealMana + name: cp14-reagent-name-basic-heal-mana + desc: cp14-reagent-desc-basic-heal-mana + group: CP14PositiveEffect + flavor: CP14Magic + color: "#1497e3" + physicalDesc: cp14-reagent-physical-desc-iridescent + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:CP14ManaChange + manaDelta: 1.5 + safe: true + pricePerUnit: 5.0 # 2×Energia (0.4) + 1×Motion (0.2) + Water (0.1) = 0.7 → x7.14 (high value) + +- type: reagent + id: CP14PositiveEffectHealStam + name: cp14-reagent-name-basic-heal-stam + desc: cp14-reagent-desc-basic-heal-stam + group: CP14PositiveEffect + flavor: CP14Magic + color: "#ebff6f" + physicalDesc: cp14-reagent-physical-desc-iridescent + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:CP14StaminaChange + staminaDelta: 3 + pricePerUnit: 5.0 # 1×Life (0.2) + 1×Motion (0.2) + 1xAir (0.25) + Water (0.1) = 0.75 → x6.67 (high value) + +- type: reagent + id: CP14PositiveEffectSpeedUp + name: cp14-reagent-name-basic-speed-up + desc: cp14-reagent-desc-basic-speed-up + group: CP14PositiveEffect + flavor: CP14Sweetly + color: "#dbff9c" + physicalDesc: cp14-reagent-physical-desc-viscous + metabolisms: + Poison: + metabolismRate: 0.1 + effects: + - !type:MovespeedModifier + walkSpeedModifier: 1.35 + sprintSpeedModifier: 1.35 + statusLifetime: 1.5 + - !type:GenericStatusEffect + key: Stutter + component: StutteringAccent + pricePerUnit: 4.0 # 2×Motion (0.4) + 1×Order (0.25) + Water (0.1) = 0.75 → x5.33 + +- type: reagent + id: CP14PositiveEffectUnsleep + name: cp14-reagent-name-basic-unsleep + desc: cp14-reagent-desc-basic-unsleep + group: CP14PositiveEffect + flavor: CP14VerySweet + color: "#6bc97e" + physicalDesc: cp14-reagent-physical-desc-viscous + metabolisms: + Narcotic: + metabolismRate: 0.1 + effects: + - !type:ResetNarcolepsy + - !type:GenericStatusEffect + key: Stun + time: 3 + type: Remove + - !type:GenericStatusEffect + key: KnockedDown + time: 3 + type: Remove + - !type:GenericStatusEffect + key: ForcedSleep + time: 3 + type: Remove + - !type:AdjustReagent + conditions: + - !type:ReagentThreshold + reagent: CP14NegativeEffectSleep + min: 1 + reagent: CP14NegativeEffectSleep + amount: -10 + pricePerUnit: 2.0 # Cheaper than sleep as it's less in demand + +- type: reagent + id: CP14PositiveEffectConfuseAura + name: cp14-reagent-name-basic-confuse-aura + desc: cp14-reagent-desc-basic-confuse-aura + group: CP14PositiveEffect + flavor: CP14Vomit + color: "#eb34b7" + physicalDesc: cp14-reagent-physical-desc-colorless + metabolisms: + Food: + metabolismRate: 0.05 + effects: + - !type:ModifyStatusEffect + effectProto: MobStatusEffectMagicAuraConfused + type: Add + time: 2 + refresh: false + pricePerUnit: 0.6 diff --git a/Resources/Prototypes/_CP14/Reagents/Target Effects/side_effects.yml b/Resources/Prototypes/_CP14/Reagents/Target Effects/side_effects.yml new file mode 100644 index 0000000000..dbac1f0b0e --- /dev/null +++ b/Resources/Prototypes/_CP14/Reagents/Target Effects/side_effects.yml @@ -0,0 +1,95 @@ +- type: reagent + id: CP14SideEffectEmpty + name: cp14-reagent-name-basic-empty + desc: cp14-reagent-desc-basic-empty + group: CP14SideEffect + flavor: CP14Bitterly + color: "#858585" + physicalDesc: cp14-reagent-physical-desc-colorless + pricePerUnit: 0 # Basic empty solution, should cost nothing + +# Side effects (gimmick) +- type: reagent + id: CP14SideEffectRainbow + name: cp14-reagent-name-see-rainbow + desc: cp14-reagent-desc-see-rainbow + group: CP14SideEffect + flavor: CP14Bitterly + color: "#d442db" + physicalDesc: cp14-reagent-physical-desc-colorless + metabolisms: + Narcotic: + metabolismRate: 0.05 + effects: + - !type:GenericStatusEffect + key: SeeingRainbows + component: SeeingRainbows + type: Add + time: 25 + refresh: false + pricePerUnit: 0.5 # Purely decorative effect + +- type: reagent + id: CP14SideEffectEmoteCough + name: cp14-reagent-name-basic-emote-cough + desc: cp14-reagent-desc-basic-emote-cough + group: CP14SideEffect + flavor: CP14Water + color: "#2b7fed" + physicalDesc: cp14-reagent-physical-desc-colorless + metabolisms: + Medicine: + metabolismRate: 0.05 + effects: + - !type:Emote + showInChat: false + emote: Cough + probability: 0.3 + pricePerUnit: 0.3 # Minimal cost + +- type: reagent + id: CP14SideEffectVomit + name: cp14-reagent-name-basic-vomit + desc: cp14-reagent-desc-basic-vomit + group: CP14SideEffect + flavor: CP14Vomit + color: "#87a667" + physicalDesc: cp14-reagent-physical-desc-colorless + metabolisms: + Food: + metabolismRate: 0.05 + effects: + - !type:ChemVomit + probability: 0.25 + pricePerUnit: 0.5 # Negative effect but not lethal + +- type: reagent + id: CP14SideEffectDrunk + name: cp14-reagent-name-basic-drunk + desc: cp14-reagent-desc-basic-drunk + group: CP14SideEffect + flavor: CP14Vomit + color: "#ae64c4" + physicalDesc: cp14-reagent-physical-desc-colorless + metabolisms: + Food: + metabolismRate: 0.05 + effects: + - !type:Drunk + boozePower: 15 + pricePerUnit: 0.5 # Similar to vomit + +- type: reagent + id: CP14SideEffectJitter + name: cp14-reagent-name-basic-jitter + desc: cp14-reagent-desc-basic-jitter + group: CP14SideEffect + flavor: CP14Vomit + color: "#347d70" + physicalDesc: cp14-reagent-physical-desc-colorless + metabolisms: + Food: + metabolismRate: 0.05 + effects: + - !type:Jitter + pricePerUnit: 0.3 # Weakest negative effect diff --git a/Resources/Prototypes/_CP14/Reagents/target_effects.yml b/Resources/Prototypes/_CP14/Reagents/target_effects.yml deleted file mode 100644 index 7574d1982a..0000000000 --- a/Resources/Prototypes/_CP14/Reagents/target_effects.yml +++ /dev/null @@ -1,623 +0,0 @@ -- type: reagent - id: CP14BasicEffectEmpty - name: cp14-reagent-name-basic-empty - desc: cp14-reagent-desc-basic-empty - group: CP14BasicEffect - flavor: CP14Bitterly - color: "#858585" - physicalDesc: cp14-reagent-physical-desc-colorless - pricePerUnit: 0 # Basic empty solution, should cost nothing - -# T1 / Simple effects (basic) -- type: reagent - id: CP14BasicEffectHealBrute - name: cp14-reagent-name-basic-heal-brute - desc: cp14-reagent-desc-basic-heal-brute - group: CP14BasicEffect - flavor: CP14Metallic - color: "#e31010" - physicalDesc: cp14-reagent-physical-desc-scarlet - worksOnTheDead: true - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:ModifyBleedAmount - amount: -2 - - !type:EvenHealthChange - damage: - Brute: -6 - pricePerUnit: 3.0 # 2×Life (0.4) + Order (0.25) + Water (0.1) = 1.05 → x3 for balance - -- type: reagent - id: CP14BasicEffectDamageBrute - name: cp14-reagent-name-basic-damage-brute - desc: cp14-reagent-desc-basic-damage-brute - group: CP14BasicEffect - flavor: CP14Stinging - color: "#633223" - physicalDesc: cp14-reagent-physical-desc-ferrous - worksOnTheDead: true - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - groups: - Brute: 3 - pricePerUnit: 3.0 # Similar to healing but with Chaos instead of Order - -- type: reagent - id: CP14BasicEffectHealHeat - name: cp14-reagent-name-basic-heal-heat - desc: cp14-reagent-desc-basic-heal-heat - group: CP14BasicEffect - flavor: CP14Stinging - color: "#BF361E" - physicalDesc: cp14-reagent-physical-desc-sparkling - worksOnTheDead: true - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - Heat: -10 - - !type:AdjustTemperature - conditions: - - !type:Temperature - min: 295 - amount: -5000 - - !type:PopupMessage - conditions: - - !type:Temperature - min: 295 - type: Local - visualType: Medium - messages: [ "leporazine-effect-temperature-adjusting" ] - probability: 0.1 - pricePerUnit: 3.5 # 1×Life (0.2) + 1×Fire (0.25) + 1×Order (0.25) + Water (0.1) = 0.8 → x4.375 - -- type: reagent - id: CP14BasicEffectDamageHeat - name: cp14-reagent-name-basic-damage-heat - desc: cp14-reagent-desc-basic-damage-heat - group: CP14BasicEffect - flavor: CP14Stinging - color: "#d4772a" - tileReactions: - - !type:CreateEntityTileReaction - entity: CP14Fire - physicalDesc: cp14-reagent-physical-desc-sparkling - worksOnTheDead: true - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:FlammableReaction - multiplier: 1.5 - - !type:AdjustTemperature - amount: 4000 - - !type:Ignite - pricePerUnit: 3.5 # Similar to healing but with Chaos instead of Order - -- type: reagent - id: CP14BasicEffectHealCold - name: cp14-reagent-name-basic-heal-cold - desc: cp14-reagent-desc-basic-heal-cold - group: CP14BasicEffect - flavor: CP14Stinging - color: "#a3511a" - physicalDesc: cp14-reagent-physical-desc-sparkling - worksOnTheDead: true - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - Cold: -10 - - !type:AdjustTemperature - conditions: - - !type:Temperature - max: 293.15 - amount: 5000 - - !type:PopupMessage - conditions: - - !type:Temperature - max: 293.15 - type: Local - visualType: Medium - messages: [ "leporazine-effect-temperature-adjusting" ] - probability: 0.1 - pricePerUnit: 4.0 # 1×Life (0.2) + 1×Frost (0.2) + 1×Order (0.25) + Water (0.1) = 0.75 → x5.33 - -- type: reagent - id: CP14BasicEffectDamageCold - name: cp14-reagent-name-basic-damage-cold - desc: cp14-reagent-desc-basic-damage-cold - group: CP14BasicEffect - flavor: CP14Stinging - color: "#1a95a3" - physicalDesc: cp14-reagent-physical-desc-sparkling - worksOnTheDead: true - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - Cold: 1.5 - - !type:AdjustTemperature - amount: -5000 - - !type:PopupMessage - type: Local - visualType: Medium - messages: [ "leporazine-effect-temperature-adjusting" ] - probability: 0.1 - pricePerUnit: 4.0 # Similar to healing but with Chaos instead of Order - -- type: reagent - id: CP14BasicEffectHealPoison - name: cp14-reagent-name-basic-heal-poison - desc: cp14-reagent-desc-basic-heal-poison - group: CP14BasicEffect - flavor: CP14Bitterly - color: "#82ba3d" - physicalDesc: cp14-reagent-physical-desc-viscous - worksOnTheDead: true - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - Poison: -10 - pricePerUnit: 3.5 # 1×Life (0.2) + 1×Poison (0.2) + 1×Order (0.25) + Water (0.1) = 0.75 → x4.66 - -- type: reagent - id: CP14BasicEffectDamagePoison - name: cp14-reagent-name-basic-damage-poison - desc: cp14-reagent-desc-basic-damage-poison - group: CP14BasicEffect - flavor: CP14Bitterly - color: "#768551" - physicalDesc: cp14-reagent-physical-desc-viscous - worksOnTheDead: true - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - Poison: 3 - pricePerUnit: 3.5 # Similar to healing but with Chaos instead of Order - -- type: reagent - id: CP14BasicEffectHealAirloss - name: cp14-reagent-name-basic-heal-airloss - desc: cp14-reagent-desc-basic-heal-airloss - group: CP14BasicEffect - flavor: fizzy - color: "#e6f4f5" - worksOnTheDead: true - physicalDesc: reagent-physical-desc-milky - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - Asphyxiation: -10 - pricePerUnit: 4.0 # 1×Life (0.2) + 1×Air (0.25) + 1×Order (0.25) + Water (0.1) = 0.8 → x5 - -- type: reagent - id: CP14BasicEffectDamageAirloss - name: cp14-reagent-name-basic-damage-airloss - desc: cp14-reagent-desc-basic-damage-airloss - group: CP14BasicEffect - flavor: horrible - color: "#73091e" - worksOnTheDead: true - physicalDesc: reagent-physical-desc-viscous - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - Asphyxiation: 3 - pricePerUnit: 4.0 # Similar to healing but with Chaos instead of Order - -- type: reagent - id: CP14BasicEffectHealManaDepletion - name: cp14-reagent-name-basic-heal-manadepletion - desc: cp14-reagent-desc-basic-heal-manadepletion - group: CP14BasicEffect - flavor: CP14Bitterly - color: "#2d4d79" - physicalDesc: cp14-reagent-physical-desc-viscous - worksOnTheDead: true - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - CP14ManaDepletion: -10 - pricePerUnit: 3.0 # 1×Life (0.2) + 2×Energia (0.4) + Water (0.1) = 0.7 → x4.28 - -- type: reagent - id: CP14BasicEffectDamageManaDepletion - name: cp14-reagent-name-basic-damage-manadepletion - desc: cp14-reagent-desc-basic-damage-manadepletion - group: CP14BasicEffect - flavor: CP14Bitterly - color: "#2f6b62" - physicalDesc: cp14-reagent-physical-desc-viscous - worksOnTheDead: true - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:HealthChange - damage: - types: - CP14ManaDepletion: 3 - pricePerUnit: 3.0 # 2×Energia (0.4) + 1×Poison (0.2) + Water (0.1) = 0.7 → x4.28 - -- type: reagent - id: CP14BasicEffectBloodRestore - name: cp14-reagent-name-basic-blood-restore - desc: cp14-reagent-desc-basic-blood-restore - group: CP14BasicEffect - flavor: CP14Metallic - color: "#e31010" - worksOnTheDead: true - physicalDesc: cp14-reagent-physical-desc-scarlet - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:ModifyBloodLevel - amount: 20 - - !type:HealthChange - damage: - types: - Bloodloss: -5 - pricePerUnit: 4.0 # 1×Life (0.2) + 1×Water (0.25) + 1×Order (0.25) + Water (0.1) = 0.8 → x5 - -- type: reagent - id: CP14BasicEffectBloodAbsorption - name: cp14-reagent-name-basic-blood-absorption - desc: cp14-reagent-desc-basic-blood-absorption - group: CP14BasicEffect - flavor: CP14Metallic - color: "#2b0e0b" - worksOnTheDead: true - physicalDesc: cp14-reagent-physical-desc-scarlet - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:ModifyBloodLevel - amount: -10 - - !type:HealthChange - damage: - types: - Bloodloss: 2 - pricePerUnit: 4.0 # Similar to restoration but with Chaos instead of Order - -- type: reagent - id: CP14BasicEffectSatiateHunger - name: cp14-reagent-name-basic-satiate-hunger - desc: cp14-reagent-desc-basic-satiate-hunger - group: CP14BasicEffect - flavor: CP14Sweetly - color: "#a35629" - physicalDesc: cp14-reagent-physical-desc-viscous - metabolisms: - Food: - metabolismRate: 0.05 - effects: - - !type:SatiateHunger - factor: 15 - conditions: - - !type:OrganType - type: CP14Vampire - shouldHave: false - pricePerUnit: 1.5 # Simple effect, low cost - -- type: reagent - id: CP14BasicEffectSatiateThirst - name: cp14-reagent-name-basic-satiate-thirst - desc: cp14-reagent-desc-basic-satiate-thirst - group: CP14BasicEffect - flavor: CP14Water - color: "#2b7fed" - physicalDesc: cp14-reagent-physical-desc-colorless - metabolisms: - Drink: - metabolismRate: 0.05 - effects: - - !type:SatiateThirst - factor: 15 - pricePerUnit: 1.0 # Most basic effect - -- type: reagent - id: CP14BasicEffectHealMana - name: cp14-reagent-name-basic-heal-mana - desc: cp14-reagent-desc-basic-heal-mana - group: CP14BasicEffect - flavor: CP14Magic - color: "#1497e3" - physicalDesc: cp14-reagent-physical-desc-iridescent - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:CP14ManaChange - manaDelta: 1.5 - safe: true - pricePerUnit: 5.0 # 2×Energia (0.4) + 1×Motion (0.2) + Water (0.1) = 0.7 → x7.14 (high value) - -- type: reagent - id: CP14BasicEffectDamageMana - name: cp14-reagent-name-basic-damage-mana - desc: cp14-reagent-desc-basic-damage-mana - group: CP14BasicEffect - flavor: CP14Bitterly - color: "#6014e3" - physicalDesc: cp14-reagent-physical-desc-iridescent - metabolisms: - Poison: - metabolismRate: 0.05 - effects: - - !type:CP14ManaChange - manaDelta: -1.5 - safe: false - pricePerUnit: 5.0 # 2×Energia (0.4) + 1×Void (0.2) + Water (0.1) = 0.7 → x7.14 - -- type: reagent - id: CP14BasicEffectHealStam - name: cp14-reagent-name-basic-heal-stam - desc: cp14-reagent-desc-basic-heal-stam - group: CP14BasicEffect - flavor: CP14Magic - color: "#ebff6f" - physicalDesc: cp14-reagent-physical-desc-iridescent - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:CP14StaminaChange - staminaDelta: 3 - pricePerUnit: 5.0 # 1×Life (0.2) + 1×Motion (0.2) + 1xAir (0.25) + Water (0.1) = 0.75 → x6.67 (high value) - -- type: reagent - id: CP14BasicEffectDamageStam - name: cp14-reagent-name-basic-damage-stam - desc: cp14-reagent-desc-basic-damage-stam - group: CP14BasicEffect - flavor: CP14Magic - color: "#686400" - physicalDesc: cp14-reagent-physical-desc-iridescent - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:CP14StaminaChange - staminaDelta: -3 - pricePerUnit: 5.0 # 1×Void (0.2) + 1×Motion (0.2) + 1xAir (0.25) + Water (0.1) = 0.75 → x6.67 (high value) - -- type: reagent - id: CP14BasicEffectSpeedUp - name: cp14-reagent-name-basic-speed-up - desc: cp14-reagent-desc-basic-speed-up - group: CP14BasicEffect - flavor: CP14Sweetly - color: "#dbff9c" - physicalDesc: cp14-reagent-physical-desc-viscous - metabolisms: - Poison: - metabolismRate: 0.1 - effects: - - !type:MovespeedModifier - walkSpeedModifier: 1.35 - sprintSpeedModifier: 1.35 - statusLifetime: 1.5 - - !type:GenericStatusEffect - key: Stutter - component: StutteringAccent - pricePerUnit: 4.0 # 2×Motion (0.4) + 1×Order (0.25) + Water (0.1) = 0.75 → x5.33 - -- type: reagent - id: CP14BasicEffectSpeedDown - name: cp14-reagent-name-basic-speed-down - desc: cp14-reagent-desc-basic-speed-down - group: CP14BasicEffect - flavor: CP14Sweetly - color: "#1e4166" - physicalDesc: cp14-reagent-physical-desc-viscous - metabolisms: - Poison: - metabolismRate: 0.1 - effects: - - !type:MovespeedModifier - walkSpeedModifier: 0.65 - sprintSpeedModifier: 0.65 - statusLifetime: 1.5 - - !type:GenericStatusEffect - key: Stutter - component: StutteringAccent - pricePerUnit: 4.0 # Similar to speed up but with Chaos instead of Order - -- type: reagent - id: CP14BasicEffectSleep - name: cp14-reagent-name-basic-sleep - desc: cp14-reagent-desc-basic-sleep - group: CP14BasicEffect - flavor: CP14VerySweet - color: "#425e8a" - physicalDesc: cp14-reagent-physical-desc-viscous - metabolisms: - Narcotic: - metabolismRate: 0.1 - effects: - - !type:Emote - emote: Yawn - showInChat: true - probability: 0.2 - - !type:GenericStatusEffect - key: ForcedSleep - component: ForcedSleeping - type: Add - pricePerUnit: 6.0 # High cost due to powerful effect - -- type: reagent - id: CP14BasicEffectUnsleep - name: cp14-reagent-name-basic-unsleep - desc: cp14-reagent-desc-basic-unsleep - group: CP14BasicEffect - flavor: CP14VerySweet - color: "#6bc97e" - physicalDesc: cp14-reagent-physical-desc-viscous - metabolisms: - Narcotic: - metabolismRate: 0.1 - effects: - - !type:ResetNarcolepsy - - !type:GenericStatusEffect - key: Stun - time: 3 - type: Remove - - !type:GenericStatusEffect - key: KnockedDown - time: 3 - type: Remove - - !type:GenericStatusEffect - key: ForcedSleep - time: 3 - type: Remove - - !type:AdjustReagent - conditions: - - !type:ReagentThreshold - reagent: CP14BasicEffectSleep - min: 1 - reagent: CP14BasicEffectSleep - amount: -10 - pricePerUnit: 2.0 # Cheaper than sleep as it's less in demand - -# Side effects (gimmick) -- type: reagent - id: CP14BasicEffectRainbow - name: cp14-reagent-name-see-rainbow - desc: cp14-reagent-desc-see-rainbow - group: CP14BasicEffect - flavor: CP14Bitterly - color: "#d442db" - physicalDesc: cp14-reagent-physical-desc-colorless - metabolisms: - Narcotic: - metabolismRate: 0.05 - effects: - - !type:GenericStatusEffect - key: SeeingRainbows - component: SeeingRainbows - type: Add - time: 25 - refresh: false - pricePerUnit: 0.5 # Purely decorative effect - -- type: reagent - id: CP14BasicEffectEmoteCough - name: cp14-reagent-name-basic-emote-cough - desc: cp14-reagent-desc-basic-emote-cough - group: CP14BasicEffect - flavor: CP14Water - color: "#2b7fed" - physicalDesc: cp14-reagent-physical-desc-colorless - metabolisms: - Medicine: - metabolismRate: 0.05 - effects: - - !type:Emote - showInChat: false - emote: Cough - probability: 0.3 - pricePerUnit: 0.3 # Minimal cost - -- type: reagent - id: CP14BasicEffectVomit - name: cp14-reagent-name-basic-vomit - desc: cp14-reagent-desc-basic-vomit - group: CP14BasicEffect - flavor: CP14Vomit - color: "#87a667" - physicalDesc: cp14-reagent-physical-desc-colorless - metabolisms: - Food: - metabolismRate: 0.05 - effects: - - !type:ChemVomit - probability: 0.25 - pricePerUnit: 0.5 # Negative effect but not lethal - -- type: reagent - id: CP14BasicEffectDrunk - name: cp14-reagent-name-basic-drunk - desc: cp14-reagent-desc-basic-drunk - group: CP14BasicEffect - flavor: CP14Vomit - color: "#ae64c4" - physicalDesc: cp14-reagent-physical-desc-colorless - metabolisms: - Food: - metabolismRate: 0.05 - effects: - - !type:Drunk - boozePower: 15 - pricePerUnit: 0.5 # Similar to vomit - -- type: reagent - id: CP14BasicEffectJitter - name: cp14-reagent-name-basic-jitter - desc: cp14-reagent-desc-basic-jitter - group: CP14BasicEffect - flavor: CP14Vomit - color: "#347d70" - physicalDesc: cp14-reagent-physical-desc-colorless - metabolisms: - Food: - metabolismRate: 0.05 - effects: - - !type:Jitter - pricePerUnit: 0.3 # Weakest negative effect - -- type: reagent - id: CP14BasicEffectConfuseAura - name: cp14-reagent-name-basic-confuse-aura - desc: cp14-reagent-desc-basic-confuse-aura - group: CP14BasicEffect - flavor: CP14Vomit - color: "#eb34b7" - physicalDesc: cp14-reagent-physical-desc-colorless - metabolisms: - Food: - metabolismRate: 0.05 - effects: - - !type:ModifyStatusEffect - effectProto: MobStatusEffectMagicAuraConfused - type: Add - time: 2 - refresh: false - pricePerUnit: 0.6 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Recipes/Construction/Graphs/Furniture/orders_border.yml b/Resources/Prototypes/_CP14/Recipes/Construction/Graphs/Furniture/orders_border.yml index 9a8e185606..8229f5a7e7 100644 --- a/Resources/Prototypes/_CP14/Recipes/Construction/Graphs/Furniture/orders_border.yml +++ b/Resources/Prototypes/_CP14/Recipes/Construction/Graphs/Furniture/orders_border.yml @@ -1,16 +1,16 @@ - type: constructionGraph - id: CP14WallmountOrdersBorder + id: CP14OrderBoard start: start graph: - node: start actions: - !type:DestroyEntity {} edges: - - to: CP14WallmountOrdersBorder + - to: CP14OrderBoard steps: - stackGroup: WoodenPlanks - amount: 1 + amount: 3 doAfter: 3 - - node: CP14WallmountOrdersBorder - entity: CP14WallmountOrdersBorder + - node: CP14OrderBoard + entity: CP14OrderBoard diff --git a/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml b/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml index f88ad44993..075e598264 100644 --- a/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/_CP14/Recipes/Construction/furniture.yml @@ -130,10 +130,10 @@ - type: construction crystallPunkAllowed: true - id: CP14WallmountOrdersBorder - graph: CP14WallmountOrdersBorder + id: CP14OrderBoard + graph: CP14OrderBoard startNode: start - targetNode: CP14WallmountOrdersBorder + targetNode: CP14OrderBoard category: construction-category-furniture objectType: Structure placementMode: SnapgridCenter diff --git a/Resources/Prototypes/_CP14/Recipes/Crafting/Graphs/improvised/armor.yml b/Resources/Prototypes/_CP14/Recipes/Crafting/Graphs/improvised/armor.yml deleted file mode 100644 index 5f5cd58a12..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Crafting/Graphs/improvised/armor.yml +++ /dev/null @@ -1,16 +0,0 @@ -- type: constructionGraph - id: CP14BoneArmor - start: start - graph: - - node: start - edges: - - to: cp14bonearmor - steps: - - material: CP14Bone - amount: 10 - - material: CP14Bone - amount: 5 - doAfter: 8 - - - node: cp14bonearmor - entity: CP14ClothingOuterClothingBoneArmor diff --git a/Resources/Prototypes/_CP14/Recipes/Crafting/Graphs/improvised/bone_weapon.yml b/Resources/Prototypes/_CP14/Recipes/Crafting/Graphs/improvised/bone_weapon.yml deleted file mode 100644 index d45211684d..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Crafting/Graphs/improvised/bone_weapon.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: constructionGraph - id: CP14BoneSword - start: start - graph: - - node: start - edges: - - to: cp14bonesword - steps: - - material: CP14Bone - amount: 5 - doAfter: 4 - - - node: cp14bonesword - entity: CP14ModularBladeBoneSword diff --git a/Resources/Prototypes/_CP14/Recipes/Crafting/improvised.yml b/Resources/Prototypes/_CP14/Recipes/Crafting/improvised.yml index 92e7899629..ca5e5d1c6f 100644 --- a/Resources/Prototypes/_CP14/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/_CP14/Recipes/Crafting/improvised.yml @@ -23,22 +23,4 @@ startNode: start targetNode: cp14torch category: construction-category-tools - objectType: Item - -- type: construction - crystallPunkAllowed: true - id: cp14bladebonesword - graph: CP14BoneSword - startNode: start - targetNode: cp14bonesword - category: construction-category-weapons - objectType: Item - -- type: construction - crystallPunkAllowed: true - id: cp14bonearmor - graph: CP14BoneArmor - startNode: start - targetNode: cp14bonearmor - category: construction-category-clothing - objectType: Item + objectType: Item \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/agaric.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/agaric.yml index 1a61ddadae..3800728bd1 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/agaric.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/agaric.yml @@ -22,13 +22,13 @@ reactants: CP14AgaricMushroom: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectHealBrute: + CP14HealingEffectHealBrute: amount: 1 products: - CP14BasicEffectDamageBrute: 2 - CP14BasicEffectRainbow: 1 + CP14DamageEffectDamageBrute: 2 + CP14SideEffectRainbow: 1 - type: reaction id: CP14AgaricShroomAdmixture2 @@ -36,11 +36,11 @@ reactants: CP14AgaricMushroom: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectDamageBrute: + CP14DamageEffectDamageBrute: amount: 1 products: - CP14BasicEffectHealBrute: 2 - CP14BasicEffectRainbow: 1 + CP14HealingEffectHealBrute: 2 + CP14SideEffectRainbow: 1 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/air_lily.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/air_lily.yml index 4641e92c9b..d6a083a1ba 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/air_lily.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/air_lily.yml @@ -22,11 +22,11 @@ reactants: CP14AirLily: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectEmoteCough: + CP14SideEffectEmoteCough: amount: 1 products: - CP14BasicEffectHealAirloss: 2 - CP14BasicEffectDrunk: 1 + CP14HealingEffectHealAirloss: 2 + CP14SideEffectDrunk: 1 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/blue_amanita.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/blue_amanita.yml index 74a23c373c..7b774c54cc 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/blue_amanita.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/blue_amanita.yml @@ -20,11 +20,11 @@ reactants: CP14BlueAmanita: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectRainbow: + CP14SideEffectRainbow: amount: 1 products: - CP14BasicEffectHealMana: 2 - CP14BasicEffectDrunk: 1 + CP14PositiveEffectHealMana: 2 + CP14SideEffectDrunk: 1 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/chromium_slime.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/chromium_slime.yml index f430d8eaf1..1118bc95bf 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/chromium_slime.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/chromium_slime.yml @@ -23,43 +23,43 @@ CP14ChromiumSlime: amount: 1 products: - CP14BasicEffectEmpty: 1 + CP14SideEffectEmpty: 1 effects: - !type:CP14InverseEffect inversion: - CP14BasicEffectHealBrute: CP14BasicEffectDamageBrute - CP14BasicEffectDamageBrute: CP14BasicEffectHealBrute + CP14HealingEffectHealBrute: CP14DamageEffectDamageBrute + CP14DamageEffectDamageBrute: CP14HealingEffectHealBrute # - CP14BasicEffectHealPoison: CP14BasicEffectDamagePoison - CP14BasicEffectDamagePoison: CP14BasicEffectHealPoison + CP14HealingEffectHealPoison: CP14DamageEffectDamagePoison + CP14DamageEffectDamagePoison: CP14HealingEffectHealPoison # - CP14BasicEffectDamageHeat: CP14BasicEffectHealHeat - CP14BasicEffectHealHeat: CP14BasicEffectDamageHeat + CP14DamageEffectDamageHeat: CP14HealingEffectHealHeat + CP14HealingEffectHealHeat: CP14DamageEffectDamageHeat # - CP14BasicEffectDamageCold: CP14BasicEffectHealCold - CP14BasicEffectHealCold: CP14BasicEffectDamageCold + CP14DamageEffectDamageCold: CP14HealingEffectHealCold + CP14HealingEffectHealCold: CP14DamageEffectDamageCold # - CP14BasicEffectSatiateHunger: CP14BasicEffectVomit - CP14BasicEffectSatiateThirst: CP14BasicEffectSatiateHunger - CP14BasicEffectVomit: CP14BasicEffectSatiateThirst + CP14PositiveEffectSatiateHunger: CP14SideEffectVomit + CP14PositiveEffectSatiateThirst: CP14PositiveEffectSatiateHunger + CP14SideEffectVomit: CP14PositiveEffectSatiateThirst # - CP14BasicEffectDamageMana: CP14BasicEffectHealMana - CP14BasicEffectHealMana: CP14BasicEffectDamageMana + CP14NegativeEffectDamageMana: CP14PositiveEffectHealMana + CP14PositiveEffectHealMana: CP14NegativeEffectDamageMana # - CP14BasicEffectBloodAbsorption: CP14BasicEffectBloodRestore - CP14BasicEffectBloodRestore: CP14BasicEffectBloodAbsorption + CP14DamageEffectBloodAbsorption: CP14HealingEffectBloodRestore + CP14HealingEffectBloodRestore: CP14DamageEffectBloodAbsorption # - CP14BasicEffectSpeedDown: CP14BasicEffectSpeedUp - CP14BasicEffectSpeedUp: CP14BasicEffectSpeedDown + CP14NegativeEffectSpeedDown: CP14PositiveEffectSpeedUp + CP14PositiveEffectSpeedUp: CP14NegativeEffectSpeedDown # - CP14BasicEffectDamageAirloss: CP14BasicEffectHealAirloss - CP14BasicEffectHealAirloss: CP14BasicEffectDamageAirloss + CP14DamageEffectDamageAirloss: CP14HealingEffectHealAirloss + CP14HealingEffectHealAirloss: CP14DamageEffectDamageAirloss # - CP14BasicEffectUnsleep: CP14BasicEffectSleep - CP14BasicEffectSleep: CP14BasicEffectUnsleep + CP14PositiveEffectUnsleep: CP14NegativeEffectSleep + CP14NegativeEffectSleep: CP14PositiveEffectUnsleep # - CP14BasicEffectRainbow: CP14BasicEffectEmoteCough - CP14BasicEffectEmoteCough: CP14BasicEffectRainbow + CP14SideEffectRainbow: CP14SideEffectEmoteCough + CP14SideEffectEmoteCough: CP14SideEffectRainbow # - CP14BasicEffectHealStam: CP14BasicEffectDamageStam - CP14BasicEffectDamageStam: CP14BasicEffectHealStam + CP14PositiveEffectHealStam: CP14NegativeEffectDamageStam + CP14NegativeEffectDamageStam: CP14PositiveEffectHealStam diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/dayflin.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/dayflin.yml index 6ef3446cdf..028cb5b4f4 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/dayflin.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/dayflin.yml @@ -20,13 +20,13 @@ reactants: CP14YellowDayflinPulp: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectSatiateThirst: + CP14PositiveEffectSatiateThirst: amount: 1 products: - CP14BasicEffectSpeedUp: 2 - CP14BasicEffectJitter: 1 + CP14PositiveEffectSpeedUp: 2 + CP14SideEffectJitter: 1 - type: reaction id: CP14DayflinAdmixture2 @@ -34,13 +34,13 @@ reactants: CP14YellowDayflinPulp: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectSatiateHunger: + CP14PositiveEffectSatiateHunger: amount: 1 products: - CP14BasicEffectSpeedUp: 2 - CP14BasicEffectJitter: 1 + CP14PositiveEffectSpeedUp: 2 + CP14SideEffectJitter: 1 - type: reaction id: CP14DayflinAdmixture3 @@ -48,13 +48,13 @@ reactants: CP14YellowDayflinPulp: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectHealStam: + CP14PositiveEffectHealStam: amount: 1 products: - CP14BasicEffectDamageStam: 2 - CP14BasicEffectJitter: 1 + CP14NegativeEffectDamageStam: 2 + CP14SideEffectJitter: 1 - type: reaction id: CP14DayflinAdmixture4 @@ -62,10 +62,10 @@ reactants: CP14YellowDayflinPulp: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectDamageStam: + CP14NegativeEffectDamageStam: amount: 1 products: - CP14BasicEffectHealStam: 2 - CP14BasicEffectJitter: 1 + CP14PositiveEffectHealStam: 2 + CP14SideEffectJitter: 1 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/ground_quartz.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/ground_quartz.yml index d55ccd3d2e..1c1105707c 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/ground_quartz.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/ground_quartz.yml @@ -22,12 +22,12 @@ reactants: CP14GroundQuartz: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectJitter: + CP14SideEffectJitter: amount: 1 products: - CP14BasicEffectEmpty: 3 + CP14SideEffectEmpty: 3 - type: reaction id: CP14GroundQuartzAdmixture2 @@ -35,12 +35,12 @@ reactants: CP14GroundQuartz: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectDrunk: + CP14SideEffectDrunk: amount: 1 products: - CP14BasicEffectEmpty: 3 + CP14SideEffectEmpty: 3 - type: reaction id: CP14GroundQuartzAdmixture3 @@ -48,12 +48,12 @@ reactants: CP14GroundQuartz: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectEmoteCough: + CP14SideEffectEmoteCough: amount: 1 products: - CP14BasicEffectEmpty: 3 + CP14SideEffectEmpty: 3 - type: reaction id: CP14GroundQuartzAdmixture4 @@ -61,10 +61,10 @@ reactants: CP14GroundQuartz: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectRainbow: + CP14SideEffectRainbow: amount: 1 products: - CP14BasicEffectEmpty: 3 + CP14SideEffectEmpty: 3 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/silver_needle.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/silver_needle.yml index bca3e27de2..0f0993312a 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/silver_needle.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/silver_needle.yml @@ -20,10 +20,10 @@ reactants: CP14SilverNeedle: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectHealMana: + CP14PositiveEffectHealMana: amount: 1 products: - CP14BasicEffectHealCold: 2 - CP14BasicEffectSpeedDown: 1 + CP14HealingEffectHealCold: 2 + CP14NegativeEffectSpeedDown: 1 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/wild_sage.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/wild_sage.yml index 3f4f632700..5640147979 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/wild_sage.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Precursor/wild_sage.yml @@ -20,11 +20,11 @@ reactants: CP14WildSageSap: amount: 1 - CP14BasicEffectEmpty: + CP14SideEffectEmpty: amount: 1 - CP14BasicEffectHealManaDepletion: + CP14HealingEffectHealManaDepletion: amount: 1 products: - CP14BasicEffectRainbow: 2 - CP14BasicEffectEmoteCough: 1 + CP14SideEffectRainbow: 2 + CP14SideEffectEmoteCough: 1 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/damage_effect_creation.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/damage_effect_creation.yml new file mode 100644 index 0000000000..9123b7534d --- /dev/null +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/damage_effect_creation.yml @@ -0,0 +1,146 @@ +# Simple recipes made from T0 and T1 essences and water +# T1 +# The result is always 75% empty solution + +- type: reaction + id: CP14WaterBrewingDamageBrute + minTemp: 500 + priority: 1 + reactants: + CP14EssenceLife: + amount: 2 + CP14EssenceChaos: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14DamageEffectDamageBrute: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingDamageHeat + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceFire: + amount: 1 + CP14EssenceChaos: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14DamageEffectDamageHeat: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingDamageCold + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceFrost: + amount: 1 + CP14EssenceChaos: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14DamageEffectDamageCold: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingDamagePoison + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssencePoison: + amount: 1 + CP14EssenceChaos: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14DamageEffectDamagePoison: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingDamageAirloss + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceAir: + amount: 1 + CP14EssenceChaos: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14DamageEffectDamageAirloss: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingBloodAbsorption + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceWater: + amount: 1 + CP14EssenceChaos: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectRainbow: 1 + CP14DamageEffectBloodAbsorption: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingDamageManaDepletion + minTemp: 500 + priority: 1 + reactants: + CP14EssenceEnergia: + amount: 2 + CP14EssencePoison: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectDrunk: 1 + CP14DamageEffectDamageManaDepletion: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/healing_effects_creation.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/healing_effects_creation.yml new file mode 100644 index 0000000000..777206c37c --- /dev/null +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/healing_effects_creation.yml @@ -0,0 +1,146 @@ +# Simple recipes made from T0 and T1 essences and water +# T1 +# The result is always 75% empty solution + +- type: reaction + id: CP14WaterBrewingHealBrute + minTemp: 500 + priority: 1 + reactants: + CP14EssenceLife: + amount: 2 + CP14EssenceOrder: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14HealingEffectHealBrute: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingHealHeat + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceFire: + amount: 1 + CP14EssenceOrder: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14HealingEffectHealHeat: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingHealCold + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceFrost: + amount: 1 + CP14EssenceOrder: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14HealingEffectHealCold: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingHealPoison + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssencePoison: + amount: 1 + CP14EssenceOrder: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14HealingEffectHealPoison: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingHealAirloss + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceAir: + amount: 1 + CP14EssenceOrder: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14HealingEffectHealAirloss: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingBloodRestore + minTemp: 500 + priority: 2 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceWater: + amount: 1 + CP14EssenceOrder: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectRainbow: 1 + CP14HealingEffectBloodRestore: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingHealManaDepletion + minTemp: 500 + priority: 1 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceEnergia: + amount: 2 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectDrunk: 1 + CP14HealingEffectHealManaDepletion: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/negative_effect_creation.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/negative_effect_creation.yml new file mode 100644 index 0000000000..31ce8a18eb --- /dev/null +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/negative_effect_creation.yml @@ -0,0 +1,62 @@ +# Simple recipes made from T0 and T1 essences and water +# T1 +# The result is always 75% empty solution + +- type: reaction + id: CP14WaterBrewingDamageMana + minTemp: 500 + priority: 1 + reactants: + CP14EssenceEnergia: + amount: 2 + CP14EssenceVoid: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectDrunk: 1 + CP14NegativeEffectDamageMana: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingDamageStam + minTemp: 500 + priority: 1 + reactants: + CP14EssenceVoid: + amount: 1 + CP14EssenceMotion: + amount: 1 + CP14EssenceAir: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectDrunk: 1 + CP14NegativeEffectDamageStam: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingSpeedDown + minTemp: 500 + priority: 2 + reactants: + CP14EssenceMotion: + amount: 2 + CP14EssenceChaos: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectJitter: 1 + CP14NegativeEffectSpeedDown: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/positive_effect_creation.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/positive_effect_creation.yml new file mode 100644 index 0000000000..da1fa7c90c --- /dev/null +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/positive_effect_creation.yml @@ -0,0 +1,100 @@ +# Simple recipes made from T0 and T1 essences and water +# T1 +# The result is always 75% empty solution + +- type: reaction + id: CP14WaterBrewingSatiateHunger + minTemp: 500 + priority: 2 + reactants: + CP14EssenceBeast: + amount: 2 + CP14EssenceLife: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectEmoteCough: 1 + CP14PositiveEffectSatiateHunger: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingSatiateThirst + minTemp: 500 + priority: 1 + reactants: + CP14EssenceWater: + amount: 1 + CP14EssenceLife: + amount: 1 + Water: + amount: 2 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectRainbow: 1 + CP14PositiveEffectSatiateThirst: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingHealMana + minTemp: 500 + priority: 1 + reactants: + CP14EssenceEnergia: + amount: 2 + CP14EssenceMotion: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14HealingEffectHealManaDepletion: 1 + CP14PositiveEffectHealMana: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingHealStam + minTemp: 500 + priority: 1 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceMotion: + amount: 1 + CP14EssenceAir: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectDrunk: 1 + CP14PositiveEffectHealStam: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingSpeedUp + minTemp: 500 + priority: 2 + reactants: + CP14EssenceMotion: + amount: 2 + CP14EssenceOrder: + amount: 1 + Water: + amount: 1 + products: + CP14SideEffectEmpty: 2 + CP14SideEffectJitter: 1 + CP14PositiveEffectSpeedUp: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/side_effect_creation.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/side_effect_creation.yml new file mode 100644 index 0000000000..739378adda --- /dev/null +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/Target effects/side_effect_creation.yml @@ -0,0 +1,5 @@ +# Simple recipes made from T0 and T1 essences and water +# T1 +# The result is always 75% empty solution + +#this just exists incase if anyone wants to add something here diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/target_effect_creation_on_water.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/target_effect_creation_on_water.yml deleted file mode 100644 index 0e777b9597..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/target_effect_creation_on_water.yml +++ /dev/null @@ -1,448 +0,0 @@ -# Simple recipes made from T0 and T1 essences and water -# T1 -# The result is always 75% empty solution - -- type: reaction - id: CP14WaterBrewingHealBrute - minTemp: 500 - priority: 1 - reactants: - CP14EssenceLife: - amount: 2 - CP14EssenceOrder: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectHealBrute: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamageBrute - minTemp: 500 - priority: 1 - reactants: - CP14EssenceLife: - amount: 2 - CP14EssenceChaos: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectDamageBrute: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingHealHeat - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceFire: - amount: 1 - CP14EssenceOrder: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectHealHeat: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamageHeat - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceFire: - amount: 1 - CP14EssenceChaos: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectDamageHeat: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingHealCold - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceFrost: - amount: 1 - CP14EssenceOrder: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectHealCold: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamageCold - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceFrost: - amount: 1 - CP14EssenceChaos: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectDamageCold: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingHealPoison - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssencePoison: - amount: 1 - CP14EssenceOrder: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectHealPoison: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamagePoison - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssencePoison: - amount: 1 - CP14EssenceChaos: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectDamagePoison: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingHealAirloss - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceAir: - amount: 1 - CP14EssenceOrder: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectHealAirloss: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamageAirloss - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceAir: - amount: 1 - CP14EssenceChaos: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectDamageAirloss: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingBloodRestore - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceWater: - amount: 1 - CP14EssenceOrder: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectRainbow: 1 - CP14BasicEffectBloodRestore: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingBloodAbsorption - minTemp: 500 - priority: 2 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceWater: - amount: 1 - CP14EssenceChaos: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectRainbow: 1 - CP14BasicEffectBloodAbsorption: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingSatiateHunger - minTemp: 500 - priority: 2 - reactants: - CP14EssenceBeast: - amount: 2 - CP14EssenceLife: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectEmoteCough: 1 - CP14BasicEffectSatiateHunger: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingSatiateThirst - minTemp: 500 - priority: 1 - reactants: - CP14EssenceWater: - amount: 1 - CP14EssenceLife: - amount: 1 - Water: - amount: 2 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectRainbow: 1 - CP14BasicEffectSatiateThirst: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingHealMana - minTemp: 500 - priority: 1 - reactants: - CP14EssenceEnergia: - amount: 2 - CP14EssenceMotion: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectHealManaDepletion: 1 - CP14BasicEffectHealMana: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamageMana - minTemp: 500 - priority: 1 - reactants: - CP14EssenceEnergia: - amount: 2 - CP14EssenceVoid: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectDrunk: 1 - CP14BasicEffectDamageMana: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingHealStam - minTemp: 500 - priority: 1 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceMotion: - amount: 1 - CP14EssenceAir: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectDrunk: 1 - CP14BasicEffectHealStam: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamageStam - minTemp: 500 - priority: 1 - reactants: - CP14EssenceVoid: - amount: 1 - CP14EssenceMotion: - amount: 1 - CP14EssenceAir: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectDrunk: 1 - CP14BasicEffectDamageStam: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingSpeedUp - minTemp: 500 - priority: 2 - reactants: - CP14EssenceMotion: - amount: 2 - CP14EssenceOrder: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectJitter: 1 - CP14BasicEffectSpeedUp: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingSpeedDown - minTemp: 500 - priority: 2 - reactants: - CP14EssenceMotion: - amount: 2 - CP14EssenceChaos: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectJitter: 1 - CP14BasicEffectSpeedDown: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -# CP14BasicEffectSleep -# CP14BasicEffectUnsleep - -- type: reaction - id: CP14WaterBrewingHealManaDepletion - minTemp: 500 - priority: 1 - reactants: - CP14EssenceLife: - amount: 1 - CP14EssenceEnergia: - amount: 2 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectDrunk: 1 - CP14BasicEffectHealManaDepletion: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 - -- type: reaction - id: CP14WaterBrewingDamageManaDepletion - minTemp: 500 - priority: 1 - reactants: - CP14EssenceEnergia: - amount: 2 - CP14EssencePoison: - amount: 1 - Water: - amount: 1 - products: - CP14BasicEffectEmpty: 2 - CP14BasicEffectDrunk: 1 - CP14BasicEffectDamageManaDepletion: 1 - effects: - - !type:CP14AffectSolutionTemperature - addTemperature: -150 diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml index 6747a72474..e021a8ff75 100644 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml @@ -1,10 +1,8 @@ - type: CP14Recipe - id: CP14BaseShield + id: CP14WeaponShieldWooden tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14WoodenPlanks @@ -12,27 +10,37 @@ - !type:StackResource stack: CP14IronBar count: 2 - result: CP14BaseShield + result: CP14WeaponShieldWooden + +- type: CP14Recipe + id: CP14WeaponTowerShieldWooden + tag: CP14RecipeAnvil + category: Weapon + craftTime: 1 + requirements: + - !type:StackResource + stack: CP14WoodenPlanks + count: 5 + - !type:StackResource + stack: CP14IronBar + count: 4 + result: CP14WeaponTowerShieldWooden - type: CP14Recipe id: CP14BaseWrench tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar - count: 2 + count: 1 result: CP14BaseWrench - type: CP14Recipe id: CP14PlatePie tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar # Physical Composition in item @@ -44,9 +52,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - IronMelting - - CopperMelting requirements: - !type:StackResource stack: CP14CopperBar # Physical Composition in item @@ -61,8 +66,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -74,8 +77,6 @@ tag: CP14RecipeAnvil category: Armor craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -87,8 +88,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - CopperMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -101,8 +100,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -115,8 +112,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - GoldMelting requirements: - !type:StackResource stack: CP14GoldBar @@ -129,8 +124,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - MithrilMelting requirements: - !type:StackResource stack: CP14MithrilBar @@ -143,8 +136,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - CopperMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -157,8 +148,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -171,8 +160,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - GoldMelting requirements: - !type:StackResource stack: CP14GoldBar @@ -185,8 +172,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - MithrilMelting requirements: - !type:StackResource stack: CP14MithrilBar @@ -199,8 +184,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -212,8 +195,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - MithrilMelting requirements: - !type:StackResource stack: CP14MithrilBar @@ -225,9 +206,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - CopperMelting - - IronMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -245,8 +223,6 @@ tag: CP14RecipeAnvil category: Weapon craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -261,8 +237,6 @@ tag: CP14RecipeAnvil category: Armor craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -274,8 +248,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - CopperMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -287,8 +259,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -300,8 +270,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - GoldMelting requirements: - !type:StackResource stack: CP14GoldBar @@ -313,8 +281,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - MithrilMelting requirements: - !type:StackResource stack: CP14MithrilBar @@ -326,8 +292,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -339,8 +303,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - CopperMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -352,8 +314,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -365,8 +325,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - GoldMelting requirements: - !type:StackResource stack: CP14GoldBar @@ -378,8 +336,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - MithrilMelting requirements: - !type:StackResource stack: CP14MithrilBar @@ -391,8 +347,6 @@ tag: CP14RecipeAnvil category: Tools craftTime: 1 - requiredSkills: - - CopperMelting requirements: - !type:ProtoIdResource protoId: CP14CrystalShardQuartz @@ -406,8 +360,6 @@ id: CP14Fork tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -419,8 +371,6 @@ id: CP14Spoon tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -432,8 +382,6 @@ id: CP14SteelGobletCopper tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - CopperMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -444,8 +392,6 @@ id: CP14SteelGobletIron tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -456,8 +402,6 @@ id: CP14SteelGobletGold tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - GoldMelting requirements: - !type:StackResource stack: CP14GoldBar @@ -468,8 +412,6 @@ id: CP14FryingPan tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -483,8 +425,6 @@ id: CP14CookingPot tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar @@ -495,8 +435,6 @@ id: CP14IronBuckleRecipe tag: CP14RecipeAnvil craftTime: 1 - requiredSkills: - - IronMelting requirements: - !type:StackResource stack: CP14IronBar diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_aventail.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_aventail.yml deleted file mode 100644 index 8d761c1b2c..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_aventail.yml +++ /dev/null @@ -1,108 +0,0 @@ - -# Plate - -- type: CP14Recipe - id: CP14ModularAventailIronPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularAventailIronPlate - -- type: CP14Recipe - id: CP14ModularAventailGoldPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularAventailGoldPlate - -- type: CP14Recipe - id: CP14ModularAventailCopperPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularAventailCopperPlate - -- type: CP14Recipe - id: CP14ModularAventailMithrilPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularAventailMithrilPlate - -# Chainmail - -- type: CP14Recipe - id: CP14ModularAventailIronChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularAventailIronChainmail - -- type: CP14Recipe - id: CP14ModularAventailGoldChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularAventailGoldChainmail - -- type: CP14Recipe - id: CP14ModularAventailCopperChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularAventailCopperChainmail - -- type: CP14Recipe - id: CP14ModularAventailMithrilChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularAventailMithrilChainmail diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_blade.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_blade.yml deleted file mode 100644 index dfe105ef6d..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_blade.yml +++ /dev/null @@ -1,758 +0,0 @@ - -# Dagger - -- type: CP14Recipe - id: CP14ModularBladeIronDagger - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularBladeIronDagger - -- type: CP14Recipe - id: CP14ModularBladeGoldDagger - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularBladeGoldDagger - -- type: CP14Recipe - id: CP14ModularBladeCopperDagger - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularBladeCopperDagger - -- type: CP14Recipe - id: CP14ModularBladeMithrilDagger - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularBladeMithrilDagger - -# Spear - -- type: CP14Recipe - id: CP14ModularBladeIronSpear - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularBladeIronSpear - -- type: CP14Recipe - id: CP14ModularBladeCopperSpear - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularBladeCopperSpear - -- type: CP14Recipe - id: CP14ModularBladeGoldSpear - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularBladeGoldSpear - -- type: CP14Recipe - id: CP14ModularBladeMithrilSpear - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularBladeMithrilSpear - -# Mace - -- type: CP14Recipe - id: CP14ModularBladeIronMace - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularBladeIronMace - -- type: CP14Recipe - id: CP14ModularBladeGoldMace - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularBladeGoldMace - -- type: CP14Recipe - id: CP14ModularBladeCopperMace - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularBladeCopperMace - -- type: CP14Recipe - id: CP14ModularBladeMithrilMace - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularBladeMithrilMace - -# Sword - -- type: CP14Recipe - id: CP14ModularBladeIronSword - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularBladeIronSword - -- type: CP14Recipe - id: CP14ModularBladeGoldSword - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularBladeGoldSword - -- type: CP14Recipe - id: CP14ModularBladeCopperSword - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularBladeCopperSword - -- type: CP14Recipe - id: CP14ModularBladeMithrilSword - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularBladeMithrilSword - -# Sickle - -- type: CP14Recipe - id: CP14ModularBladeIronSickle - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularBladeIronSickle - -- type: CP14Recipe - id: CP14ModularBladeCopperSickle - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularBladeCopperSickle - -- type: CP14Recipe - id: CP14ModularBladeGoldSickle - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularBladeGoldSickle - -- type: CP14Recipe - id: CP14ModularBladeMithrilSickle - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularBladeMithrilSickle - -# Shovel - -- type: CP14Recipe - id: CP14ModularBladeIronShovel - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularBladeIronShovel - -- type: CP14Recipe - id: CP14ModularBladeGoldShovel - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularBladeGoldShovel - - -- type: CP14Recipe - id: CP14ModularBladeCopperShovel - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularBladeCopperShovel - -- type: CP14Recipe - id: CP14ModularBladeMithrilShovel - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularBladeMithrilShovel - -# Pickaxe - -- type: CP14Recipe - id: CP14ModularBladeIronPickaxe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularBladeIronPickaxe - -- type: CP14Recipe - id: CP14ModularBladeGoldPickaxe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularBladeGoldPickaxe - -- type: CP14Recipe - id: CP14ModularBladeCopperPickaxe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularBladeCopperPickaxe - -- type: CP14Recipe - id: CP14ModularBladeMithrilPickaxe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularBladeMithrilPickaxe - -# Grip - -- type: CP14Recipe - id: CP14ModularGripIron - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularGripIron - -- type: CP14Recipe - id: CP14ModularGripCopper - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularGripCopper - -- type: CP14Recipe - id: CP14ModularGripGolden - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularGripGolden - -- type: CP14Recipe - id: CP14ModularGripMithril - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularGripMithril - -# Grip long - -- type: CP14Recipe - id: CP14ModularGripIronLong - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularGripIronLong - -- type: CP14Recipe - id: CP14ModularGripCopperLong - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularGripCopperLong - -- type: CP14Recipe - id: CP14ModularGripGoldLong - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularGripGoldLong - -- type: CP14Recipe - id: CP14ModularGripMithrilLong - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularGripMithrilLong - -# Rapier - -- type: CP14Recipe - id: CP14ModularBladeIronRapier - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularBladeIronRapier - -- type: CP14Recipe - id: CP14ModularBladeGoldRapier - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularBladeGoldRapier - -- type: CP14Recipe - id: CP14ModularBladeCopperRapier - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularBladeCopperRapier - -- type: CP14Recipe - id: CP14ModularBladeMithrilRapier - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularBladeMithrilRapier - -# Axe - -- type: CP14Recipe - id: CP14ModularBladeIronAxe - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularBladeIronAxe - -- type: CP14Recipe - id: CP14ModularBladeCopperAxe - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularBladeCopperAxe - -- type: CP14Recipe - id: CP14ModularBladeGoldAxe - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularBladeGoldAxe - -- type: CP14Recipe - id: CP14ModularBladeMithrilAxe - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularBladeMithrilAxe - -# Hammer - -- type: CP14Recipe - id: CP14ModularBladeIronHammer - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularBladeIronHammer - -- type: CP14Recipe - id: CP14ModularBladeCopperHammer - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularBladeCopperHammer - -- type: CP14Recipe - id: CP14ModularBladeGoldHammer - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularBladeGoldHammer - -- type: CP14Recipe - id: CP14ModularBladeMithrilHammer - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularBladeMithrilHammer - -# Hoe - -- type: CP14Recipe - id: CP14ModularBladeIronHoe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularBladeIronHoe - -- type: CP14Recipe - id: CP14ModularBladeCopperHoe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularBladeCopperHoe - -- type: CP14Recipe - id: CP14ModularBladeGoldHoe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularBladeGoldHoe - -- type: CP14Recipe - id: CP14ModularBladeMithrilHoe - tag: CP14RecipeAnvil - category: Tools - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularBladeMithrilHoe - -# Skimitar - -- type: CP14Recipe - id: CP14ModularBladeIronSkimitar - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularBladeIronSkimitar - -- type: CP14Recipe - id: CP14ModularBladeGoldSkimitar - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularBladeGoldSkimitar - -- type: CP14Recipe - id: CP14ModularBladeCopperSkimitar - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularBladeCopperSkimitar - -- type: CP14Recipe - id: CP14ModularBladeMithrilSkimitar - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularBladeMithrilSkimitar - diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_breastplate.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_breastplate.yml deleted file mode 100644 index 313c647f38..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_breastplate.yml +++ /dev/null @@ -1,162 +0,0 @@ - -# Cuirass - -- type: CP14Recipe - id: CP14ArmorIronCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 5 - result: CP14ArmorIronCuirass - -- type: CP14Recipe - id: CP14ArmorGoldCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 5 - result: CP14ArmorGoldCuirass - -- type: CP14Recipe - id: CP14ArmorCopperCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 5 - result: CP14ArmorCopperCuirass - -- type: CP14Recipe - id: CP14ArmorMithrilCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 5 - result: CP14ArmorMithrilCuirass - -# Infantry cuirass - -- type: CP14Recipe - id: CP14ArmorIronInfantryCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 6 - result: CP14ArmorIronInfantryCuirass - -- type: CP14Recipe - id: CP14ArmorGoldInfantryCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 6 - result: CP14ArmorGoldInfantryCuirass - -- type: CP14Recipe - id: CP14ArmorCopperInfantryCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 6 - result: CP14ArmorCopperInfantryCuirass - -- type: CP14Recipe - id: CP14ArmorMithrilInfantryCuirass - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 6 - result: CP14ArmorMithrilInfantryCuirass - -# Chainmail - -- type: CP14Recipe - id: CP14ArmorIronChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 4 - result: CP14ArmorIronChainmail - -- type: CP14Recipe - id: CP14ArmorGoldChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 4 - result: CP14ArmorGoldChainmail - -- type: CP14Recipe - id: CP14ArmorCopperChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 4 - result: CP14ArmorCopperChainmail - -- type: CP14Recipe - id: CP14ArmorMithrilChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 4 - result: CP14ArmorMithrilChainmail diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_cuisses.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_cuisses.yml deleted file mode 100644 index d64eb1e8e6..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_cuisses.yml +++ /dev/null @@ -1,108 +0,0 @@ - -# Cuirass - -- type: CP14Recipe - id: CP14ModularCuissesIronPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularCuissesIronPlate - -- type: CP14Recipe - id: CP14ModularCuissesGoldPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularCuissesGoldPlate - -- type: CP14Recipe - id: CP14ModularCuissesCopperPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularCuissesCopperPlate - -- type: CP14Recipe - id: CP14ModularCuissesMithrilPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularCuissesMithrilPlate - -# Chainmail - -- type: CP14Recipe - id: CP14ModularCuissesIronChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularCuissesIronChainmail - -- type: CP14Recipe - id: CP14ModularCuissesGoldChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularCuissesGoldChainmail - -- type: CP14Recipe - id: CP14ModularCuissesCopperChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularCuissesCopperChainmail - -- type: CP14Recipe - id: CP14ModularCuissesMithrilChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularCuissesMithrilChainmail diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_garde.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_garde.yml deleted file mode 100644 index a9d48a93cc..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_garde.yml +++ /dev/null @@ -1,108 +0,0 @@ -# Sharp garde - -- type: CP14Recipe - id: CP14ModularGardeSharpCopper - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularGardeSharpCopper - -- type: CP14Recipe - id: CP14ModularGardeSharpIron - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularGardeSharpIron - -- type: CP14Recipe - id: CP14ModularGardeSharpGold - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularGardeSharpGold - -- type: CP14Recipe - id: CP14ModularGardeSharpMithril - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularGardeSharpMithril - -# Sturdy garde - -- type: CP14Recipe - id: CP14ModularGardeSturdyCopper - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularGardeSturdyCopper - -- type: CP14Recipe - id: CP14ModularGardeSturdyIron - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularGardeSturdyIron - -- type: CP14Recipe - id: CP14ModularGardeSturdyGold - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularGardeSturdyGold - -- type: CP14Recipe - id: CP14ModularGardeSturdyMithril - tag: CP14RecipeAnvil - category: Weapon - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularGardeSturdyMithril - diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_greave.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_greave.yml deleted file mode 100644 index 035f24c6aa..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_greave.yml +++ /dev/null @@ -1,108 +0,0 @@ - -# Cuirass - -- type: CP14Recipe - id: CP14ModularGreaveIronPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14ModularGreaveIronPlate - -- type: CP14Recipe - id: CP14ModularGreaveGoldPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14ModularGreaveGoldPlate - -- type: CP14Recipe - id: CP14ModularGreaveCopperPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14ModularGreaveCopperPlate - -- type: CP14Recipe - id: CP14ModularGreaveMithrilPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14ModularGreaveMithrilPlate - -# Chainmail - -- type: CP14Recipe - id: CP14ModularGreaveIronChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularGreaveIronChainmail - -- type: CP14Recipe - id: CP14ModularGreaveGoldChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularGreaveGoldChainmail - -- type: CP14Recipe - id: CP14ModularGreaveCopperChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularGreaveCopperChainmail - -- type: CP14Recipe - id: CP14ModularGreaveMithrilChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularGreaveMithrilChainmail diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_helmet.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_helmet.yml deleted file mode 100644 index e4d42f6621..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_helmet.yml +++ /dev/null @@ -1,108 +0,0 @@ - -# Capellina - -- type: CP14Recipe - id: CP14HelmetIronCapellina - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14HelmetIronCapellina - -- type: CP14Recipe - id: CP14HelmetGoldCapellina - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14HelmetGoldCapellina - -- type: CP14Recipe - id: CP14HelmetCopperCapellina - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14HelmetCopperCapellina - -- type: CP14Recipe - id: CP14HelmetMithrilCapellina - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14HelmetMithrilCapellina - -# Palm Helmet - -- type: CP14Recipe - id: CP14HelmetIronPalmHelmet - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 2 - result: CP14HelmetIronPalmHelmet - -- type: CP14Recipe - id: CP14HelmetGoldPalmHelmet - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 2 - result: CP14HelmetGoldPalmHelmet - -- type: CP14Recipe - id: CP14HelmetCopperPalmHelmet - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 2 - result: CP14HelmetCopperPalmHelmet - -- type: CP14Recipe - id: CP14HelmetMithrilPalmHelmet - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 2 - result: CP14HelmetMithrilPalmHelmet diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_tip.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_tip.yml deleted file mode 100644 index d068a48f0b..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_tip.yml +++ /dev/null @@ -1,58 +0,0 @@ - -# Tip - -- type: CP14Recipe - id: CP14ModularTipCopperArrow - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularTipCopperArrow - resultCount: 5 - -- type: CP14Recipe - id: CP14ModularTipIronArrow - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularTipIronArrow - resultCount: 5 - -- type: CP14Recipe - id: CP14ModularTipGoldArrow - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularTipGoldArrow - resultCount: 5 - -- type: CP14Recipe - id: CP14ModularTipMithrilArrow - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularTipMithrilArrow - resultCount: 5 diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_visor.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_visor.yml deleted file mode 100644 index eac135e93f..0000000000 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/modular_visor.yml +++ /dev/null @@ -1,108 +0,0 @@ - -# Plate - -- type: CP14Recipe - id: CP14ModularVisorIronPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularVisorIronPlate - -- type: CP14Recipe - id: CP14ModularVisorGoldPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularVisorGoldPlate - -- type: CP14Recipe - id: CP14ModularVisorCopperPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularVisorCopperPlate - -- type: CP14Recipe - id: CP14ModularVisorMithrilPlate - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularVisorMithrilPlate - -# Chainmail - -- type: CP14Recipe - id: CP14ModularVisorIronChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - IronMelting - requirements: - - !type:StackResource - stack: CP14IronBar - count: 1 - result: CP14ModularVisorIronChainmail - -- type: CP14Recipe - id: CP14ModularVisorGoldChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - GoldMelting - requirements: - - !type:StackResource - stack: CP14GoldBar - count: 1 - result: CP14ModularVisorGoldChainmail - -- type: CP14Recipe - id: CP14ModularVisorCopperChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - CopperMelting - requirements: - - !type:StackResource - stack: CP14CopperBar - count: 1 - result: CP14ModularVisorCopperChainmail - -- type: CP14Recipe - id: CP14ModularVisorMithrilChainmail - tag: CP14RecipeAnvil - category: Armor - craftTime: 1 - requiredSkills: - - MithrilMelting - requirements: - - !type:StackResource - stack: CP14MithrilBar - count: 1 - result: CP14ModularVisorMithrilChainmail diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Workbench/misc.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Workbench/misc.yml index f11e95a07c..4972b67b4d 100644 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Workbench/misc.yml +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/Workbench/misc.yml @@ -89,34 +89,6 @@ count: 2 result: CP14BowlWooden -- type: CP14Recipe - id: CP14ModularBladeWoodMop - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackGroupResource - group: WoodenPlanks - count: 1 - - !type:StackResource - stack: CP14Cloth - count: 1 - result: CP14ModularBladeWoodMop - -- type: CP14Recipe - id: CP14ModularBladeLucensMop - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackResource - stack: CP14LucensWoodenPlanks - count: 1 - - !type:StackResource - stack: CP14Cloth - count: 1 - result: CP14ModularBladeLucensMop - - type: CP14Recipe id: CP14Lighter tag: CP14RecipeWorkbench @@ -131,72 +103,6 @@ count: 1 result: CP14Lighter -- type: CP14Recipe - id: CP14ModularGripWooden - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackResource - stack: CP14WoodenPlanks - count: 2 - result: CP14ModularGripWooden - -- type: CP14Recipe - id: CP14ModularGripBirchShort - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackResource - stack: CP14BirchWoodenPlanks - count: 2 - result: CP14ModularGripBirch - -- type: CP14Recipe - id: CP14ModularGripWoodenLong - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackResource - stack: CP14WoodenPlanks - count: 4 - result: CP14ModularGripWoodenLong - -- type: CP14Recipe - id: CP14ModularGripBirchLong - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackResource - stack: CP14BirchWoodenPlanks - count: 4 - result: CP14ModularGripBirchLong - -- type: CP14Recipe - id: CP14ModularGripLucens - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackResource - stack: CP14LucensWoodenPlanks - count: 2 - result: CP14ModularGripLucens - -- type: CP14Recipe - id: CP14ModularGripLucensLong - tag: CP14RecipeWorkbench - category: Tools - craftTime: 2 - requirements: - - !type:StackResource - stack: CP14LucensWoodenPlanks - count: 4 - result: CP14ModularGripLucensLong - - type: CP14Recipe id: CP14Bow tag: CP14RecipeWorkbench @@ -211,30 +117,6 @@ count: 1 result: CP14BowCombat -- type: CP14Recipe - id: CP14ModularRodWooden - tag: CP14RecipeWorkbench - category: Tools - craftTime: 3 - requirements: - - !type:StackResource - stack: CP14WoodenPlanks - count: 1 - result: CP14ModularRodWooden - resultCount: 5 - -- type: CP14Recipe - id: CP14ModularRodLucens - tag: CP14RecipeWorkbench - category: Tools - craftTime: 3 - requirements: - - !type:StackResource - stack: CP14LucensWoodenPlanks - count: 1 - result: CP14ModularRodLucens - resultCount: 5 - - type: CP14Recipe id: CP14CrayonWhite tag: CP14RecipeWorkbench @@ -307,8 +189,9 @@ category: Tools craftTime: 1 requirements: - - !type:ProtoIdResource - protoId: CP14ModularGripWooden + - !type:StackGroupResource + group: WoodenPlanks + count: 1 - !type:ProtoIdResource protoId: CP14CrossboltIron result: CP14Screwdriver @@ -318,9 +201,9 @@ tag: CP14RecipeWorkbench craftTime: 2 requirements: - - !type:ProtoIdResource - protoId: CP14ModularGripWooden - count: 2 + - !type:StackGroupResource + group: WoodenPlanks + count: 1 result: CP14FluteInstrument - type: CP14Recipe @@ -367,64 +250,4 @@ - !type:StackResource stack: CP14Cloth count: 2 - result: CP14Rope - -- type: CP14Recipe - id: CP14ModularBladeWoodenAxe - tag: CP14RecipeWorkbench - craftTime: 2 - requirements: - - !type:StackGroupResource - group: WoodenPlanks - count: 2 - result: CP14ModularBladeWoodenAxe - -- type: CP14Recipe - id: CP14ModularBladeWoodenRapier - tag: CP14RecipeWorkbench - craftTime: 2 - requirements: - - !type:StackGroupResource - group: WoodenPlanks - count: 1 - result: CP14ModularBladeWoodenRapier - -- type: CP14Recipe - id: CP14ModularBladeWoodenSpear - tag: CP14RecipeWorkbench - craftTime: 2 - requirements: - - !type:StackGroupResource - group: WoodenPlanks - count: 1 - result: CP14ModularBladeWoodenSpear - -- type: CP14Recipe - id: CP14ModularBladeWoodenSword - tag: CP14RecipeWorkbench - craftTime: 2 - requirements: - - !type:StackGroupResource - group: WoodenPlanks - count: 2 - result: CP14ModularBladeWoodenSword - -- type: CP14Recipe - id: CP14ModularGardeSharpWooden - tag: CP14RecipeWorkbench - craftTime: 2 - requirements: - - !type:StackGroupResource - group: WoodenPlanks - count: 1 - result: CP14ModularGardeSharpWooden - -- type: CP14Recipe - id: CP14ModularGardeSturdyWooden - tag: CP14RecipeWorkbench - craftTime: 2 - requirements: - - !type:StackGroupResource - group: WoodenPlanks - count: 1 - result: CP14ModularGardeSturdyWooden + result: CP14Rope \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/furnace.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/furnace.yml index 9b9de1a534..814b7dea3f 100644 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/furnace.yml +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/furnace.yml @@ -3,8 +3,6 @@ tag: CP14RecipeMeltingFurnace craftTime: 1 category: Materials - requiredSkills: - - CopperMelting requirements: - !type:MaterialResource material: CP14Copper @@ -16,8 +14,6 @@ tag: CP14RecipeMeltingFurnace craftTime: 1 category: Materials - requiredSkills: - - IronMelting requirements: - !type:MaterialResource material: CP14Iron @@ -29,8 +25,6 @@ tag: CP14RecipeMeltingFurnace craftTime: 1 category: Materials - requiredSkills: - - GoldMelting requirements: - !type:MaterialResource material: CP14Gold @@ -42,8 +36,6 @@ tag: CP14RecipeMeltingFurnace craftTime: 1 category: Materials - requiredSkills: - - MithrilMelting requirements: - !type:MaterialResource material: CP14Mithril @@ -55,8 +47,6 @@ tag: CP14RecipeMeltingFurnace craftTime: 1 category: Materials - requiredSkills: - - GlassMelting requirements: - !type:ProtoIdResource protoId: CP14CrystalShardQuartz @@ -68,8 +58,6 @@ tag: CP14RecipeMeltingFurnace craftTime: 1 category: Materials - requiredSkills: - - GlassMelting requirements: - !type:ProtoIdResource protoId: CP14GlassShard @@ -80,8 +68,6 @@ id: CP14VialTiny tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14GlassSheet @@ -92,8 +78,6 @@ id: CP14VialTinyReinforced tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -107,8 +91,6 @@ id: CP14VialSmall tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14GlassSheet @@ -119,8 +101,6 @@ id: CP14VialSmallReinforced tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -134,8 +114,6 @@ id: CP14VialMedium tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14GlassSheet @@ -146,8 +124,6 @@ id: CP14VialMediumReinforced tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -161,8 +137,6 @@ id: CP14VialStar tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14GlassSheet @@ -173,8 +147,6 @@ id: CP14VialStarReinforced tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14CopperBar @@ -188,8 +160,6 @@ id: CP14BaseAlchemyBomb tag: CP14RecipeMeltingFurnace craftTime: 1 - requiredSkills: - - GlassMelting requirements: - !type:StackResource stack: CP14GlassSheet diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/apprentice.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/apprentice.yml index 1acdd40e8d..997edef0b0 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/apprentice.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/apprentice.yml @@ -17,7 +17,7 @@ - Dairy - !type:CP14LearnSkillsSpecial skills: - - CopperMelting + #- CopperMelting - AlchemyVision - type: startingGear diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/blacksmith.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/blacksmith.yml index 60805cda28..7251b07822 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/blacksmith.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Artisan/blacksmith.yml @@ -6,6 +6,7 @@ startingGear: CP14BlacksmithGear icon: "CP14JobIconBlacksmith" supervisors: cp14-job-supervisors-command + setPreference: false canBeAntag: false special: - !type:CP14AddTradingReputationSpecial @@ -17,11 +18,11 @@ - Tailors - !type:CP14LearnSkillsSpecial skills: - - CopperMelting - - IronMelting - - GoldMelting - - GlassMelting - - MithrilMelting + #- CopperMelting + #- IronMelting + #- GoldMelting + #- GlassMelting + #- MithrilMelting - TraderWit # Craftsmen have always taken this perk. The main purpose of craftsmen is trade. requirements: - !type:DepartmentTimeRequirement diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Fun/misc_startinggear.yml index de3de8fa41..2e5ed439af 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Fun/misc_startinggear.yml @@ -5,7 +5,4 @@ shirt: CP14ClothingShirtCottonBlack pants: CP14ClothingPantsLoincloth shoes: CP14ClothingShoesSandals - inhand: - - CP14ModularIronDagger - - CP14ModularIronDagger diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard.yml index 8ae6350c75..d938e6c8fb 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard.yml @@ -9,9 +9,9 @@ supervisors: cp14-job-supervisors-guard-commander canBeAntag: false special: - - !type:CP14LearnSkillsSpecial - skills: - - SwordMastery + #- !type:CP14LearnSkillsSpecial + # skills: + # - SwordMastery - !type:AddComponentSpecial components: - type: CP14SalaryCounter diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard_commander.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard_commander.yml index 1e6ca65be6..3e8061ad95 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard_commander.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Guard/guard_commander.yml @@ -16,13 +16,13 @@ department: CP14Guard time: 10980 # 3 hours special: - - !type:CP14LearnSkillsSpecial - skills: - - SwordMastery + #- !type:CP14LearnSkillsSpecial + # skills: + # - SwordMastery - !type:AddComponentSpecial components: - type: CP14SalaryCounter - salary: 400 + salary: 200 - !type:CP14AddTradingReputationSpecial factions: - Guards diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Mercenary/guild_worker.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Mercenary/guild_worker.yml new file mode 100644 index 0000000000..c00b069c65 --- /dev/null +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Mercenary/guild_worker.yml @@ -0,0 +1,28 @@ +- type: job + id: CP14GuildWorker + name: cp14-job-name-guildworker + description: cp14-job-desc-guildworker + playTimeTracker: CP14JobGuildWorker + startingGear: CP14GuildWorkerGear + icon: "CP14JobIconGuildWorker" + supervisors: cp14-job-supervisors-guildmaster + weight: 2 + requirements: + - !type:RoleTimeRequirement + role: CP14JobAdventurer + time: 7200 # 2 hours + special: + - !type:AddComponentSpecial + components: + - type: CP14SalaryCounter + salary: 50 + +- type: startingGear + id: CP14GuildWorkerGear + storage: + back: + - CP14EnergyCrystalMedium + - CP14EnergyCrystalMedium + equipment: + keys: CP14KeyRingGuildworker + belt: CP14WalletFilledTest diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Mercenary/guildmaster.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Mercenary/guildmaster.yml index 5800f6f78f..c0e1c77ddb 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/Mercenary/guildmaster.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Mercenary/guildmaster.yml @@ -1,6 +1,6 @@ - type: job id: CP14Guildmaster - setPreference: false + setPreference: true name: cp14-job-name-guildmaster description: cp14-job-desc-guildmaster playTimeTracker: CP14JobGuildmaster @@ -10,21 +10,19 @@ joinNotifyCrew: true canBeAntag: false supervisors: cp14-job-supervisors-command - weight: 2 + weight: 3 requirements: - - !type:RoleTimeRequirement - role: CP14JobBlacksmith - time: 3600 # 1 hours - - !type:RoleTimeRequirement - role: CP14JobAlchemist - time: 3600 # 1 hours + #- !type:RoleTimeRequirement + # role: CP14JobGuildWorker + # time: 7200 # 2 hours - !type:RoleTimeRequirement role: CP14JobAdventurer - time: 7200 # 2 hours - - !type:TraitsRequirement - inverted: true - traits: - - CP14ManaWasting + time: 18000 # 5 hours + special: + - !type:AddComponentSpecial + components: + - type: CP14SalaryCounter + salary: 200 - type: startingGear id: CP14GuildmasterGear @@ -33,6 +31,4 @@ - CP14EnergyCrystalMedium equipment: belt: CP14WalletFilledTest - keys: CP14KeyRingGuildmaster - belt2: CP14ModularGuildmasterRapier - + keys: CP14KeyRingGuildmaster \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/Traders/merchant.yml b/Resources/Prototypes/_CP14/Roles/Jobs/Traders/merchant.yml index eba06b0d63..33e212ca11 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/Traders/merchant.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/Traders/merchant.yml @@ -23,6 +23,7 @@ - Butchers - Dairy - Tailors + - HelmirChild - !type:CP14LearnSkillsSpecial skills: - TraderWit diff --git a/Resources/Prototypes/_CP14/Roles/Jobs/departments.yml b/Resources/Prototypes/_CP14/Roles/Jobs/departments.yml index bf61469660..81c13377f3 100644 --- a/Resources/Prototypes/_CP14/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/_CP14/Roles/Jobs/departments.yml @@ -54,4 +54,5 @@ color: "#588151" roles: - CP14Guildmaster + - CP14GuildWorker - CP14Adventurer \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Roles/play_time_tracker.yml b/Resources/Prototypes/_CP14/Roles/play_time_tracker.yml index 4dc431ff9e..1a7747d604 100644 --- a/Resources/Prototypes/_CP14/Roles/play_time_tracker.yml +++ b/Resources/Prototypes/_CP14/Roles/play_time_tracker.yml @@ -18,6 +18,9 @@ - type: playTimeTracker id: CP14JobGuildmaster +- type: playTimeTracker + id: CP14JobGuildWorker + - type: playTimeTracker id: CP14JobAdventurer diff --git a/Resources/Prototypes/_CP14/Skill/Basic/athletic.yml b/Resources/Prototypes/_CP14/Skill/Basic/athletic.yml index 2a732ee713..a52d5e62d1 100644 --- a/Resources/Prototypes/_CP14/Skill/Basic/athletic.yml +++ b/Resources/Prototypes/_CP14/Skill/Basic/athletic.yml @@ -41,6 +41,20 @@ - !type:NeedPrerequisite prerequisite: AthleticT1 +- type: cp14Skill + id: CP14ActionToggleKeenEye + skillUiPosition: 0, 4 + tree: Athletic + icon: + sprite: _CP14/Actions/Spells/physical.rsi + state: keen_eye + effects: + - !type:AddAction + action: CP14ActionToggleKeenEye + restrictions: + - !type:NeedPrerequisite + prerequisite: AthleticT1 + # T2 - type: cp14Skill diff --git a/Resources/Prototypes/_CP14/Skill/Basic/craftsmanship.yml b/Resources/Prototypes/_CP14/Skill/Basic/craftsmanship.yml index 1319dd4bc1..dfc470e485 100644 --- a/Resources/Prototypes/_CP14/Skill/Basic/craftsmanship.yml +++ b/Resources/Prototypes/_CP14/Skill/Basic/craftsmanship.yml @@ -13,74 +13,74 @@ components: - type: CP14PriceScanner -- type: cp14Skill - id: CopperMelting - skillUiPosition: 4, 0 - tree: Craftsmanship - name: cp14-skill-copper-melt-name - learnCost: 0.5 - icon: - sprite: _CP14/Objects/Materials/copper_ore.rsi - state: ore3 - effects: - - !type:UnlockRecipes - -- type: cp14Skill - id: IronMelting - skillUiPosition: 4, 2 - tree: Craftsmanship - name: cp14-skill-iron-melt-name - learnCost: 0.5 - icon: - sprite: _CP14/Objects/Materials/iron_ore.rsi - state: ore3 - effects: - - !type:UnlockRecipes - restrictions: - - !type:NeedPrerequisite - prerequisite: CopperMelting - -- type: cp14Skill - id: GoldMelting - skillUiPosition: 3, 4 - tree: Craftsmanship - name: cp14-skill-gold-melt-name - learnCost: 0.5 - icon: - sprite: _CP14/Objects/Materials/gold_ore.rsi - state: ore3 - effects: - - !type:UnlockRecipes - restrictions: - - !type:NeedPrerequisite - prerequisite: IronMelting - -- type: cp14Skill - id: MithrilMelting - skillUiPosition: 5, 4 - tree: Craftsmanship - name: cp14-skill-mithril-melt-name - learnCost: 0.5 - icon: - sprite: _CP14/Objects/Materials/mithril_ore.rsi - state: ore3 - effects: - - !type:UnlockRecipes - restrictions: - - !type:NeedPrerequisite - prerequisite: IronMelting - -- type: cp14Skill - id: GlassMelting - skillUiPosition: 6, 0 - tree: Craftsmanship - name: cp14-skill-glass-melt-name - learnCost: 0.5 - icon: - sprite: _CP14/Objects/Materials/glass.rsi - state: glass_3 - effects: - - !type:UnlockRecipes +#- type: cp14Skill +# id: CopperMelting +# skillUiPosition: 4, 0 +# tree: Craftsmanship +# name: cp14-skill-copper-melt-name +# learnCost: 0.5 +# icon: +# sprite: _CP14/Objects/Materials/copper_ore.rsi +# state: ore3 +# effects: +# - !type:UnlockRecipes +# +#- type: cp14Skill +# id: IronMelting +# skillUiPosition: 4, 2 +# tree: Craftsmanship +# name: cp14-skill-iron-melt-name +# learnCost: 0.5 +# icon: +# sprite: _CP14/Objects/Materials/iron_ore.rsi +# state: ore3 +# effects: +# - !type:UnlockRecipes +# restrictions: +# - !type:NeedPrerequisite +# prerequisite: CopperMelting +# +#- type: cp14Skill +# id: GoldMelting +# skillUiPosition: 3, 4 +# tree: Craftsmanship +# name: cp14-skill-gold-melt-name +# learnCost: 0.5 +# icon: +# sprite: _CP14/Objects/Materials/gold_ore.rsi +# state: ore3 +# effects: +# - !type:UnlockRecipes +# restrictions: +# - !type:NeedPrerequisite +# prerequisite: IronMelting +# +#- type: cp14Skill +# id: MithrilMelting +# skillUiPosition: 5, 4 +# tree: Craftsmanship +# name: cp14-skill-mithril-melt-name +# learnCost: 0.5 +# icon: +# sprite: _CP14/Objects/Materials/mithril_ore.rsi +# state: ore3 +# effects: +# - !type:UnlockRecipes +# restrictions: +# - !type:NeedPrerequisite +# prerequisite: IronMelting +# +#- type: cp14Skill +# id: GlassMelting +# skillUiPosition: 6, 0 +# tree: Craftsmanship +# name: cp14-skill-glass-melt-name +# learnCost: 0.5 +# icon: +# sprite: _CP14/Objects/Materials/glass.rsi +# state: glass_3 +# effects: +# - !type:UnlockRecipes - type: cp14Skill id: AlchemyVision diff --git a/Resources/Prototypes/_CP14/Skill/Basic/martial_arts.yml b/Resources/Prototypes/_CP14/Skill/Basic/martial_arts.yml index c474dcd195..b733f36111 100644 --- a/Resources/Prototypes/_CP14/Skill/Basic/martial_arts.yml +++ b/Resources/Prototypes/_CP14/Skill/Basic/martial_arts.yml @@ -1,33 +1,33 @@ -- type: cp14Skill - id: SwordMastery - skillUiPosition: 0, 0 - name: cp14-skill-sword-mastery-name - desc: cp14-skill-mastery-desc - learnCost: 0.5 - tree: MartialArts - icon: - sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi - state: preview - -- type: cp14Skill - id: RapierMastery - skillUiPosition: 2, 0 - name: cp14-skill-parier-mastery-name - desc: cp14-skill-mastery-desc - learnCost: 0.5 - tree: MartialArts - icon: - sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi - state: preview - -- type: cp14Skill - id: SkimitarMastery - skillUiPosition: 4, 0 - name: cp14-skill-skimitar-mastery-name - desc: cp14-skill-mastery-desc - learnCost: 0.5 - tree: MartialArts - icon: - sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi - state: preview +#- type: cp14Skill +# id: SwordMastery +# skillUiPosition: 0, 0 +# name: cp14-skill-sword-mastery-name +# desc: cp14-skill-mastery-desc +# learnCost: 0.5 +# tree: MartialArts +# icon: +# sprite: _CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi +# state: preview +# +#- type: cp14Skill +# id: RapierMastery +# skillUiPosition: 2, 0 +# name: cp14-skill-parier-mastery-name +# desc: cp14-skill-mastery-desc +# learnCost: 0.5 +# tree: MartialArts +# icon: +# sprite: _CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi +# state: preview +# +#- type: cp14Skill +# id: SkimitarMastery +# skillUiPosition: 4, 0 +# name: cp14-skill-skimitar-mastery-name +# desc: cp14-skill-mastery-desc +# learnCost: 0.5 +# tree: MartialArts +# icon: +# sprite: _CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi +# state: preview diff --git a/Resources/Prototypes/_CP14/Skill/Basic/trees.yml b/Resources/Prototypes/_CP14/Skill/Basic/trees.yml index 7c2b14adaf..f42377d1ae 100644 --- a/Resources/Prototypes/_CP14/Skill/Basic/trees.yml +++ b/Resources/Prototypes/_CP14/Skill/Basic/trees.yml @@ -38,7 +38,7 @@ name: cp14-skill-tree-athletic-name desc: cp14-skill-tree-athletic-desc skillType: Memory - color: "#b32e37" + color: "#8bdb7f" #- type: cp14SkillTree # id: Dimension diff --git a/Resources/Prototypes/_CP14/Skill/Vampire/vampire.yml b/Resources/Prototypes/_CP14/Skill/Vampire/vampire.yml index f56f6877bd..2dd6a8570d 100644 --- a/Resources/Prototypes/_CP14/Skill/Vampire/vampire.yml +++ b/Resources/Prototypes/_CP14/Skill/Vampire/vampire.yml @@ -238,7 +238,7 @@ - type: cp14Skill id: BloodEnemySearch - skillUiPosition: 10, 10 + skillUiPosition: 6, 10 learnCost: 1 tree: Vampire icon: @@ -251,7 +251,7 @@ - !type:NeedPrerequisite prerequisite: BloodConnection - !type:VampireClanLevel - level: 3 + level: 2 - type: cp14Skill id: PortalToVampireHome diff --git a/Resources/Prototypes/_CP14/StatusIcon/job.yml b/Resources/Prototypes/_CP14/StatusIcon/job.yml index e44c6bb7c1..8e98aec33a 100644 --- a/Resources/Prototypes/_CP14/StatusIcon/job.yml +++ b/Resources/Prototypes/_CP14/StatusIcon/job.yml @@ -84,3 +84,11 @@ sprite: /Textures/_CP14/Interface/Misc/job_icons.rsi state: Guildmaster jobName: cp14-job-name-guildmaster + +- type: jobIcon + parent: CP14JobIcon + id: CP14JobIconGuildWorker + icon: + sprite: /Textures/_CP14/Interface/Misc/job_icons.rsi + state: GuildWorker + jobName: cp14-job-name-guildworker diff --git a/Resources/Prototypes/_CP14/Trading/BuyPositions/dwarf_mining.yml b/Resources/Prototypes/_CP14/Trading/BuyPositions/dwarf_mining.yml index f473161276..3520c4e524 100644 --- a/Resources/Prototypes/_CP14/Trading/BuyPositions/dwarf_mining.yml +++ b/Resources/Prototypes/_CP14/Trading/BuyPositions/dwarf_mining.yml @@ -22,26 +22,6 @@ service: !type:CP14BuyItemsService product: CP14CrystalShardQuartz -- type: cp14TradingPosition - id: CP14ModularIronPickaxe - faction: DwarfMining - uiPosition: 3 - icon: - sprite: _CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi - state: tool - service: !type:CP14BuyItemsService - product: CP14ModularIronPickaxe - -- type: cp14TradingPosition - id: CP14ModularIronShovel - faction: DwarfMining - uiPosition: 4 - icon: - sprite: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi - state: tool - service: !type:CP14BuyItemsService - product: CP14ModularIronShovel - - type: cp14TradingPosition id: CP14BaseSharpeningStone faction: DwarfMining diff --git a/Resources/Prototypes/_CP14/Trading/BuyPositions/guards.yml b/Resources/Prototypes/_CP14/Trading/BuyPositions/guards.yml index 5b598ac690..d83fab0f84 100644 --- a/Resources/Prototypes/_CP14/Trading/BuyPositions/guards.yml +++ b/Resources/Prototypes/_CP14/Trading/BuyPositions/guards.yml @@ -10,27 +10,6 @@ service: !type:CP14BuyItemsService product: CP14TradeContractGuards -- type: cp14TradingPosition - id: CP14BaseCrossbow - faction: Guards - uiPosition: 1 - icon: - sprite: _CP14/Objects/Weapons/Ranged/crossbow.rsi - state: unwielded - service: !type:CP14BuyItemsService - product: CP14BaseCrossbow - -- type: cp14TradingPosition - id: CP14BigCrossboltIron - faction: Guards - uiPosition: 2 - icon: - sprite: _CP14/Objects/Weapons/Ranged/Projectiles/crossbolt.rsi - state: big_rod - service: !type:CP14BuyItemsService - product: CP14BigCrossboltIron - count: 5 - - type: cp14TradingPosition id: Bola faction: Guards @@ -63,26 +42,4 @@ state: icon service: !type:CP14BuyItemsService product: CP14MagicGuardElectroStaff - count: 1 - -- type: cp14TradingPosition - id: CP14ModularGripIronGuard - faction: Guards - uiPosition: 6 - icon: - sprite: _CP14/Objects/ModularTools/Grip/iron_guard_grip.rsi - state: icon - service: !type:CP14BuyItemsService - product: CP14ModularGripIronGuard - count: 1 - -- type: cp14TradingPosition - id: CP14ModularGripIronLongGuard - faction: Guards - uiPosition: 7 - icon: - sprite: _CP14/Objects/ModularTools/GripLong/iron_grip_long_guard.rsi - state: icon - service: !type:CP14BuyItemsService - product: CP14ModularGripIronLongGuard - count: 1 + count: 1 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Trading/BuyPositions/helmir_child.yml b/Resources/Prototypes/_CP14/Trading/BuyPositions/helmir_child.yml new file mode 100644 index 0000000000..1a328b7d72 --- /dev/null +++ b/Resources/Prototypes/_CP14/Trading/BuyPositions/helmir_child.yml @@ -0,0 +1,167 @@ +# Reputation Level 0 + +- type: cp14TradingPosition + id: CP14WeaponHammerIron + faction: HelmirChild + uiPosition: 0 + icon: + sprite: _CP14/Objects/Weapons/Melee/Hammer/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponHammerIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponPickaxeIronHelmir + faction: HelmirChild + uiPosition: 1 + icon: + sprite: _CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponPickaxeIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponShovelIron + faction: HelmirChild + uiPosition: 2 + icon: + sprite: _CP14/Objects/Weapons/Melee/Shovel/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponShovelIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponDaggerIron + faction: HelmirChild + uiPosition: 4 + icon: + sprite: _CP14/Objects/Weapons/Melee/Dagger/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponDaggerIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponShieldWooden + faction: HelmirChild + uiPosition: 5 + icon: + sprite: _CP14/Objects/Weapons/Melee/Shield/shield.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponShieldWooden + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponShieldBuckler + faction: HelmirChild + uiPosition: 6 + icon: + sprite: _CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponShieldBuckler + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponSkimitarIron + faction: HelmirChild + uiPosition: 7 + icon: + sprite: _CP14/Objects/Weapons/Melee/Skimitar/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponSkimitarIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponSpearIron + faction: HelmirChild + uiPosition: 8 + icon: + sprite: _CP14/Objects/Weapons/Melee/Spear/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponSpearIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponSwordIron + faction: HelmirChild + uiPosition: 9 + icon: + sprite: _CP14/Objects/Weapons/Melee/Sword/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponSwordIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponTowerShieldWooden + faction: HelmirChild + uiPosition: 10 + icon: + sprite: _CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponTowerShieldWooden + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponTwoHandedSwordIron + faction: HelmirChild + uiPosition: 11 + icon: + sprite: _CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponTwoHandedSwordIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponWarAxeIron + faction: HelmirChild + uiPosition: 12 + icon: + sprite: _CP14/Objects/Weapons/Melee/WarAxe/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponWarAxeIron + count: 1 + +- type: cp14TradingPosition + id: CP14WeaponWarHammerIron + faction: HelmirChild + uiPosition: 13 + icon: + sprite: _CP14/Objects/Weapons/Melee/WarHammer/iron.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponWarHammerIron + count: 1 + +- type: cp14TradingPosition + id: CP14Arrow + faction: HelmirChild + uiPosition: 14 + icon: + sprite: _CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi + state: rod + service: !type:CP14BuyItemsService + product: CP14Arrow + count: 4 + +- type: cp14TradingPosition + id: CP14BowCombat + faction: HelmirChild + uiPosition: 15 + icon: + sprite: _CP14/Objects/Weapons/Ranged/bow.rsi + state: unwielded + service: !type:CP14BuyItemsService + product: CP14BowCombat + count: 1 + priceMarkup: 3 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Trading/BuyPositions/horticulture.yml b/Resources/Prototypes/_CP14/Trading/BuyPositions/horticulture.yml index cda234f97f..7c878e91ec 100644 --- a/Resources/Prototypes/_CP14/Trading/BuyPositions/horticulture.yml +++ b/Resources/Prototypes/_CP14/Trading/BuyPositions/horticulture.yml @@ -32,17 +32,6 @@ product: CP14VialYellowDayflinPulp count: 1 -- type: cp14TradingPosition - id: CP14ModularIronHoe - faction: Horticulture - uiPosition: 4 - icon: - sprite: _CP14/Objects/ModularTools/Blade/Hoe/metall_hoe.rsi - state: icon - service: !type:CP14BuyItemsService - product: CP14ModularIronHoe - count: 1 - - type: cp14TradingPosition id: CP14CrystalLampBlueEmpty faction: Horticulture @@ -124,18 +113,6 @@ product: CP14VialAgaricMushroom count: 1 -- type: cp14TradingPosition - id: CP14ModularIronSickle - faction: Horticulture - reputationLevel: 1 - uiPosition: 4 - icon: - sprite: _CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi - state: icon - service: !type:CP14BuyItemsService - product: CP14ModularIronSickle - count: 1 - - type: cp14TradingPosition id: CP14CrystalLampOrangeEmpty faction: Horticulture diff --git a/Resources/Prototypes/_CP14/Trading/BuyPositions/victoria_gardens.yml b/Resources/Prototypes/_CP14/Trading/BuyPositions/victoria_gardens.yml index 7ebaf31212..dba003b907 100644 --- a/Resources/Prototypes/_CP14/Trading/BuyPositions/victoria_gardens.yml +++ b/Resources/Prototypes/_CP14/Trading/BuyPositions/victoria_gardens.yml @@ -77,6 +77,17 @@ product: CP14Wheat count: 3 +- type: cp14TradingPosition + id: CP14WeaponDaggerHatchet + faction: VictoriaGardens + uiPosition: 7 + icon: + sprite: _CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi + state: icon + service: !type:CP14BuyItemsService + product: CP14WeaponDaggerHatchet + count: 3 + - type: cp14TradingPosition id: CP14FloorTileGrassBag diff --git a/Resources/Prototypes/_CP14/Trading/SellRequests/brad_potions.yml b/Resources/Prototypes/_CP14/Trading/SellRequests/brad_potions.yml index bde71c6b45..0d84445a24 100644 --- a/Resources/Prototypes/_CP14/Trading/SellRequests/brad_potions.yml +++ b/Resources/Prototypes/_CP14/Trading/SellRequests/brad_potions.yml @@ -1,219 +1,219 @@ - type: cp14TradingRequest - id: CP14BasicEffectHealBrute + id: CP14HealingEffectHealBrute possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealBrute + reagent: CP14HealingEffectHealBrute amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamageBrute + id: CP14DamageEffectDamageBrute possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamageBrute + reagent: CP14DamageEffectDamageBrute amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectHealHeat + id: CP14HealingEffectHealHeat possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealHeat + reagent: CP14HealingEffectHealHeat amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamageHeat + id: CP14DamageEffectDamageHeat possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamageHeat + reagent: CP14DamageEffectDamageHeat amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectHealCold + id: CP14HealingEffectHealCold possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealCold + reagent: CP14HealingEffectHealCold amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamageCold + id: CP14DamageEffectDamageCold possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamageCold + reagent: CP14DamageEffectDamageCold amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectHealPoison + id: CP14HealingEffectHealPoison possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealPoison + reagent: CP14HealingEffectHealPoison amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamagePoison + id: CP14DamageEffectDamagePoison possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamagePoison + reagent: CP14DamageEffectDamagePoison amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectHealAirloss + id: CP14HealingEffectHealAirloss possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealAirloss + reagent: CP14HealingEffectHealAirloss amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamageAirloss + id: CP14DamageEffectDamageAirloss possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamageAirloss + reagent: CP14DamageEffectDamageAirloss amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectHealManaDepletion + id: CP14HealingEffectHealManaDepletion possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealManaDepletion + reagent: CP14HealingEffectHealManaDepletion amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamageManaDepletion + id: CP14DamageEffectDamageManaDepletion possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamageManaDepletion + reagent: CP14DamageEffectDamageManaDepletion amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectBloodRestore + id: CP14HealingEffectBloodRestore possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectBloodRestore + reagent: CP14HealingEffectBloodRestore amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectBloodAbsorption + id: CP14DamageEffectBloodAbsorption possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectBloodAbsorption + reagent: CP14DamageEffectBloodAbsorption amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectSatiateHunger + id: CP14PositiveEffectSatiateHunger possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectSatiateHunger + reagent: CP14PositiveEffectSatiateHunger amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectSatiateThirst + id: CP14PositiveEffectSatiateThirst possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectSatiateThirst + reagent: CP14PositiveEffectSatiateThirst amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectHealMana + id: CP14PositiveEffectHealMana possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealMana + reagent: CP14PositiveEffectHealMana amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamageMana + id: CP14NegativeEffectDamageMana possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamageMana + reagent: CP14NegativeEffectDamageMana amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectHealStam + id: CP14PositiveEffectHealStam possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectHealStam + reagent: CP14PositiveEffectHealStam amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectDamageStam + id: CP14NegativeEffectDamageStam possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectDamageStam + reagent: CP14NegativeEffectDamageStam amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectSpeedUp + id: CP14PositiveEffectSpeedUp possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectSpeedUp + reagent: CP14PositiveEffectSpeedUp amount: 10 purity: 0.75 - type: cp14TradingRequest - id: CP14BasicEffectSpeedDown + id: CP14NegativeEffectSpeedDown possibleFactions: - BradPotions requirements: - !type:SolutionResource - reagent: CP14BasicEffectSpeedDown + reagent: CP14NegativeEffectSpeedDown amount: 10 - purity: 0.75 \ No newline at end of file + purity: 0.75 diff --git a/Resources/Prototypes/_CP14/Trading/contracts.yml b/Resources/Prototypes/_CP14/Trading/contracts.yml index 8014c27ce6..c7c1f04c1a 100644 --- a/Resources/Prototypes/_CP14/Trading/contracts.yml +++ b/Resources/Prototypes/_CP14/Trading/contracts.yml @@ -95,4 +95,15 @@ state: tailors service: !type:CP14BuyItemsService product: CP14TradeContractTailors + count: 1 + +- type: cp14TradingPosition + id: CP14TradeContractHelmirChild + faction: ContractGuild + uiPosition: 9 + icon: + sprite: _CP14/Objects/Specific/Economy/trade_contracts.rsi + state: helmir_child + service: !type:CP14BuyItemsService + product: CP14TradeContractHelmirChild count: 1 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Trading/factions.yml b/Resources/Prototypes/_CP14/Trading/factions.yml index 78952f47e6..4ac83d798d 100644 --- a/Resources/Prototypes/_CP14/Trading/factions.yml +++ b/Resources/Prototypes/_CP14/Trading/factions.yml @@ -53,6 +53,11 @@ color: "#385573" name: cp14-trade-faction-guard +- type: cp14TradingFaction + id: HelmirChild + color: "#cc0707" + name: cp14-trade-faction-helmir-child + - type: cp14TradingFaction id: VampireMarket color: "#6b1934" diff --git a/Resources/Prototypes/_CP14/tools.yml b/Resources/Prototypes/_CP14/tools.yml index 6b47286f8a..34b4ffb77f 100644 --- a/Resources/Prototypes/_CP14/tools.yml +++ b/Resources/Prototypes/_CP14/tools.yml @@ -2,13 +2,12 @@ id: CP14Digging name: cp14-tool-quality-digging-name toolName: cp14-tool-quality-digging-tool-name - spawn: CP14ModularIronShovel - icon: { sprite: _CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi, state: tool} + spawn: CP14WeaponShovelIron + icon: { sprite: _CP14/Objects/Weapons/Melee/Shovel/iron.rsi, state: icon} -- type: tool +- type: tool id: CP14Hammering name: cp14-tool-quality-hammering-name toolName: cp14-tool-quality-hammering-tool-name - spawn: CP14ModularIronHammer - icon: { sprite: _CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi, state: tool} - + spawn: CP14WeaponHammerIron + icon: { sprite: _CP14/Objects/Weapons/Melee/Hammer/iron.rsi, state: icon} diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/Alchemy.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/Alchemy.xml index f5dc47090e..55455a4ec7 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/Alchemy.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/Alchemy.xml @@ -72,10 +72,6 @@ - ## Random Reaction Generation - - Beyond fixed recipes, some reactions have random outcomes generated at round start. You'll need to experiment to discover results. - ## Dyes Alchemists can create dyes for coloring fabrics: diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml new file mode 100644 index 0000000000..a63d09dc97 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml @@ -0,0 +1,9 @@ + + +# Damaging solutions + +Counterparts to the healing solutions opening up new wounds and wreaking havoc on an organic body. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml new file mode 100644 index 0000000000..f27496a00e --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml @@ -0,0 +1,9 @@ + + +# Healing solutions + +Most alchemical solutions reverse damage sustained in organic bodies. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml new file mode 100644 index 0000000000..a686fe2109 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml @@ -0,0 +1,9 @@ + + +# Negative solutions + +Alchemical solutions that do not specifically damage but harm in another way. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml new file mode 100644 index 0000000000..32f3ddb9ff --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml @@ -0,0 +1,9 @@ + + +# Positive solutions + +Alchemical solutions that do not specifically reverse damage but help in another way. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml new file mode 100644 index 0000000000..5cab881e87 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml @@ -0,0 +1,9 @@ + + +# Contaminants + +Alchemy often comes with unwanted effects while being mostly harmless. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml index a7585882e8..cc89ba234f 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml @@ -4,6 +4,19 @@ Using combinations of thaumaturgical essences in the right proportions, you can create a variety of alchemical substances, from powerful medicines to deadly poisons: - +## Healing + + +## Damaging + + +## Positive + + +## Negative + + +## Contaminants + diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/InnkeeperTabs/Cooking.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/InnkeeperTabs/Cooking.xml index a3267d00fb..2fbb2f3e9c 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/InnkeeperTabs/Cooking.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/InnkeeperTabs/Cooking.xml @@ -13,7 +13,7 @@ - + And of course, don't forget about frying pan and a cooking pot. It is in them that all the dishes that you will serve are prepared! diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/Innkeepers.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/Innkeepers.xml index 92f79faed5..f02e6c1342 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/Innkeepers.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/JobsTabs/Innkeepers.xml @@ -61,7 +61,6 @@ In the event your delightful cooking or your generous portions of ale makes a customer vomit, a mop can be found near the stairs to the cellar. Dip the mop inside one of your water barrels and wipe up the mess. Be careful to avoid serving water from your mopping barrel - customers generally don't enjoy the taste of vomit. - diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/Alchemy.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/Alchemy.xml index b36c1c76b8..25fbf0accb 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/Alchemy.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/Alchemy.xml @@ -72,10 +72,6 @@ - ## Случайная генерация реакций - - Кроме заранее заготовленных рецептов с известным выходом, существуют реакции, которые могут иметь случайный выход. Такие реакции генерируются в начале раунда и действуют весь раунд. Вам придется экспериментировать с этим рецептом, чтобы узнать, что получится в итоге. - ## Красители Кроме приготовления лечебных или не очень зельев, алхимики могут создавать красители, которые могут продавать. Красители можно использовать для окрашивания тканей. @@ -98,4 +94,4 @@ - Заклинание Заморозка позволяет затушить печь, чтобы не тратить лишнее топливо. - Хромиевая слизь может выручить вас в трудную минуту. При нагреве её и пустого раствора, инвертирует эффекты реагентов. Это может позволить вам сделать из 200 ядовитого раствора 200 ядовыводящего раствора! - \ No newline at end of file + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml new file mode 100644 index 0000000000..781f130b54 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/DamageEffects.xml @@ -0,0 +1,9 @@ + + +# Ядовитые растворы + +Противоположности лечебных растворов, наносящие ущерб живому существу. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml new file mode 100644 index 0000000000..a14d76e5d5 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/HealingEffects.xml @@ -0,0 +1,9 @@ + + +# Лечебные растворы + +Алхимические растворы, лечащие живых существ + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml new file mode 100644 index 0000000000..8d080f3a70 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/NegativeEffects.xml @@ -0,0 +1,9 @@ + + +# Растворы с негативными эффектами + +Алхимические растворы, которые обладают негативными эффектами. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml new file mode 100644 index 0000000000..d2ff662a16 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/PositiveEffects.xml @@ -0,0 +1,9 @@ + + +# Растворы с положительными эффектами + +Алхимические растворы, которые обладают положительными эффектами. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml new file mode 100644 index 0000000000..4da36beae3 --- /dev/null +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/Effects/SideEffects.xml @@ -0,0 +1,9 @@ + + +# Загрязняющие вещества + +В основном безвредные вещества, которые уменьшают чистоту раствора. + + + + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml index 5d733ab477..39c0df13b5 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/AlchemistTabs/AlchemyTabs/TargetEffects.xml @@ -2,8 +2,21 @@ # Целевые алхимические растворы -Используя комбинации тауматургических эссенций в правильных пропорциях, вы можете создавать различные алхимические вещества, от мощных лекарств до смертельных ядов: +Используя комбинации тауматургических эссенций в правильных пропорциях, можно создавать разнообразные алхимические вещества — от мощных лекарств до смертельных ядов: - +## Лечащие + + +## Яды + + +## Положительные эффекты + + +## Негативные эффекты + + +## Загрязняющие вещества + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/InnkeeperTabs/Cooking.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/InnkeeperTabs/Cooking.xml index acc8030b24..c417bd6ef3 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/InnkeeperTabs/Cooking.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/InnkeeperTabs/Cooking.xml @@ -14,7 +14,7 @@ - + И конечно же, как же можно забыть - сковорода и кастрюля. Именно в них готовятся все блюда, которые вы будете подавать! diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/Innkeepers.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/Innkeepers.xml index 92f79faed5..f02e6c1342 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/Innkeepers.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/JobsTabs/Innkeepers.xml @@ -61,7 +61,6 @@ In the event your delightful cooking or your generous portions of ale makes a customer vomit, a mop can be found near the stairs to the cellar. Dip the mop inside one of your water barrels and wipe up the mess. Be careful to avoid serving water from your mopping barrel - customers generally don't enjoy the taste of vomit. - diff --git a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/dash.png b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/dash.png index 759abad7a2..f22eb813e1 100644 Binary files a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/dash.png and b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/dash.png differ diff --git a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/keen_eye.png b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/keen_eye.png new file mode 100644 index 0000000000..aba5d78277 Binary files /dev/null and b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/keen_eye.png differ diff --git a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/kick.png b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/kick.png index cadbc3025e..7a15bf92c2 100644 Binary files a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/kick.png and b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/kick.png differ diff --git a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/meta.json b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/meta.json index ab0b61f088..c2a062fdcc 100644 --- a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/meta.json +++ b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/meta.json @@ -18,6 +18,9 @@ }, { "name": "sprint" + }, + { + "name": "keen_eye" } ] } \ No newline at end of file diff --git a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/second_wind.png b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/second_wind.png index 1094a3a5cb..6ef3c43770 100644 Binary files a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/second_wind.png and b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/second_wind.png differ diff --git a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/sprint.png b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/sprint.png index b6fa964256..7af17dafe6 100644 Binary files a/Resources/Textures/_CP14/Actions/Spells/physical.rsi/sprint.png and b/Resources/Textures/_CP14/Actions/Spells/physical.rsi/sprint.png differ diff --git a/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic.png b/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic.png index 08d392968f..25a4d9fb6f 100644 Binary files a/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic.png and b/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic.png differ diff --git a/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic2.png b/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic2.png index 63a5060763..368d1b5bf2 100644 Binary files a/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic2.png and b/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic2.png differ diff --git a/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic3.png b/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic3.png index 383a902979..6f0e1d6a50 100644 Binary files a/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic3.png and b/Resources/Textures/_CP14/Actions/skill_tree.rsi/athletic3.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK-goblin.png index 9fc5909d79..35fb780da3 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK.png index e97207bb07..d36454f84d 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT.png index 24b9aabcad..8928cddec2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT2.png index d8ffb23bae..50822e155b 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT2.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/icon.png index a36d43c113..6cf374a968 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/inhand-left.png index f339573f2a..8651f8df87 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t0.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK-goblin.png index ae3a4929a4..f2a474ef7e 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK.png index e0d70987e6..fdcca67d35 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/icon.png index 71a71e07db..16c2d7be91 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-left.png index 03ea4caca1..250ccfe9bc 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-right.png index 07abdab740..8a96629f6d 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t1.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK-goblin.png index ffac7df804..dd72d4e99b 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK.png index 2b1b9a4f8e..05bcf4e36a 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/icon.png index 17b4595a47..28f3f1ccb7 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-left.png index 30e09376e6..40bf51eae6 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-right.png index 28a0dcdab9..37dfffd649 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK-goblin.png index 55d4053bd9..1d920faee5 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK.png index 179a0b0174..2bf75efc72 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/icon.png index 4cb7a324a7..0a501f0bb2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-left.png index 56d76159cb..b7fce3d994 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-right.png index 2e168480e6..62497f6da1 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/meta.json index d80790f4b4..98579c39c8 100644 --- a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_cargo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand)", + "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand) & resprite omsoyk", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK-goblin.png index cae0d20d41..79de6ebfe7 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK.png index 7dc8ed7cae..0e267403cf 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/icon.png index 9704ac5243..ebbdbbb52b 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-left.png index 65b8e31fc5..5f79400d55 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-right.png index 8e30fe8f9b..db209c9ed2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t2_reinforced.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK-goblin.png index 0927e05391..3fe47b4cc0 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK.png index 5ed1c55813..ba6ac5f9d7 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/icon.png index 823852d139..4edd7ef393 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-left.png index 96748f1930..7b310ea094 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-right.png index 3fa2216d9e..7b6906dd3a 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Backpacks/backpack_t3.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK-goblin.png index 8f0036591d..bac70358d2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK.png index d5f763270c..8727691626 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT.png index bf72501002..1a4cb8e8d8 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT2.png index 31ee56ca6d..0a3d48a23f 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT2.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK-goblin.png index 7b6027b4f2..42cf9aa3b9 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK.png index fd16e99be1..271339650d 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT.png index 31ee56ca6d..0a3d48a23f 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT2.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT2.png index bf72501002..1a4cb8e8d8 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT2.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-left.png index d9437bc041..8e3e265196 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-right.png index b1610cc1b1..45445d4b75 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/flipped-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/icon.png index 65aad87aa7..37d6804029 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-left.png index d9437bc041..8e3e265196 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-right.png index b1610cc1b1..45445d4b75 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/meta.json index 2e6b0be7bb..a954a3e994 100644 --- a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t0.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand)", + "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand) & resprite omsoyk", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK-goblin.png index 33534ab899..d0be70bd74 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK.png index fa2d476ad1..ac7eebe9f0 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT.png index 65627a5798..5ddcd28717 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT2.png index fb1d1033f8..289d1bda00 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT2.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK-goblin.png index 3a6e7dd7cc..abf2ab3d22 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK.png index 59896d09db..dd862689f2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT.png index fb1d1033f8..289d1bda00 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT2.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT2.png index 65627a5798..5ddcd28717 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT2.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-left.png index 7f43c1ee5b..f574e5a972 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-right.png index 912be89679..577b725170 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/flipped-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/icon.png index 6a878176ca..9683b030c8 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-left.png index 7f43c1ee5b..f574e5a972 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-right.png index 912be89679..577b725170 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/meta.json index 2e6b0be7bb..a954a3e994 100644 --- a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t1.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand)", + "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand) & resprite omsoyk", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK-goblin.png index 0bad81a1c3..1b9386a766 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK.png index 2c951dda2a..8b62a4d7ae 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK-goblin.png index 2d545354e5..2303106d88 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK.png index 8bfee9d62e..04bd906f8b 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-left.png index b4e664c6a6..ec1e1cc0b2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-right.png index 7acd3572ab..6af393fa3b 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/flipped-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/icon.png index a12ca8504f..7e9ab95809 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-left.png index b4e664c6a6..ec1e1cc0b2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-right.png index 7acd3572ab..6af393fa3b 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/meta.json index d2f4b84a0f..f3a9767353 100644 --- a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand)", + "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand) & resprite omsoyk", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK-goblin.png index b0f5bd5bf2..e6724bd7cb 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK.png index 48f80edc35..cae3790b47 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK-goblin.png index c62d53ed80..e1127322b2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK.png index 8d411a74ec..ed8f31362d 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-left.png index c97fa6dc4b..3d4d4debdc 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-right.png index af3734d2ff..5a19728708 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/flipped-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/icon.png index 0c2834db70..f6c298d1b0 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-left.png index c97fa6dc4b..3d4d4debdc 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-right.png index af3734d2ff..5a19728708 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/meta.json index d2f4b84a0f..f3a9767353 100644 --- a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t2_reinforced.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand)", + "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand) & resprite omsoyk", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK-goblin.png index 2bda2e3af2..453378f28a 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK.png index 1b2aaab144..09e4ddd846 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK-goblin.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK-goblin.png index a5440f4f96..4038a58d33 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK-goblin.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK-goblin.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK.png index 773175da40..2458ddd667 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-equipped-BACKPACK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-left.png index c97fa6dc4b..3d4d4debdc 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-right.png index af3734d2ff..5a19728708 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/flipped-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/icon.png index 241547c56e..0124b8e51d 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-left.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-left.png index e7c096c199..5bf9d2ba79 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-left.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-right.png b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-right.png index 1d4bd4be6c..effc2b2b68 100644 Binary files a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-right.png and b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/meta.json index d2f4b84a0f..f3a9767353 100644 --- a/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Back/Satchel/satchel_t3.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand)", + "copyright": "Created by Ell_Good (icon) and PhantomRU (equiped, recolor, inhand) & resprite omsoyk", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Effects/sparks.rsi/1.png b/Resources/Textures/_CP14/Effects/sparks.rsi/1.png new file mode 100644 index 0000000000..d22f461f10 Binary files /dev/null and b/Resources/Textures/_CP14/Effects/sparks.rsi/1.png differ diff --git a/Resources/Textures/_CP14/Effects/sparks.rsi/2.png b/Resources/Textures/_CP14/Effects/sparks.rsi/2.png new file mode 100644 index 0000000000..5a5bd97d36 Binary files /dev/null and b/Resources/Textures/_CP14/Effects/sparks.rsi/2.png differ diff --git a/Resources/Textures/_CP14/Effects/sparks.rsi/meta.json b/Resources/Textures/_CP14/Effects/sparks.rsi/meta.json new file mode 100644 index 0000000000..5a201d5bff --- /dev/null +++ b/Resources/Textures/_CP14/Effects/sparks.rsi/meta.json @@ -0,0 +1,89 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd", + "size": { + "x": 17, + "y": 17 + }, + "states": [ + { + "name": "1", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "2", + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + } + ] +} diff --git a/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/GuildWorker.png b/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/GuildWorker.png new file mode 100644 index 0000000000..e990f7f69e Binary files /dev/null and b/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/GuildWorker.png differ diff --git a/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/meta.json index f33a34af70..195695fcc6 100644 --- a/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/meta.json @@ -34,6 +34,9 @@ { "name": "Guildmaster" }, + { + "name": "GuildWorker" + }, { "name": "Innkeeper" } diff --git a/Resources/Textures/_CP14/Mobs/Species/Carcat/displacement48.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Carcat/displacement48.rsi/meta.json index 37a039174a..27a6e91997 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Carcat/displacement48.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Carcat/displacement48.rsi/meta.json @@ -13,6 +13,10 @@ { "name": "head", "directions": 4 + }, + { + "name": "neck", + "directions": 4 } ] } diff --git a/Resources/Textures/_CP14/Mobs/Species/Carcat/displacement48.rsi/neck.png b/Resources/Textures/_CP14/Mobs/Species/Carcat/displacement48.rsi/neck.png new file mode 100644 index 0000000000..eb4f3cc04f Binary files /dev/null and b/Resources/Textures/_CP14/Mobs/Species/Carcat/displacement48.rsi/neck.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/full.png b/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/full.png index d486797953..68d8116cb7 100644 Binary files a/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/full.png and b/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/full.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/meta.json index e7ac49d80a..77c11e7cae 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/meta.json @@ -8,7 +8,8 @@ }, "states": [ { - "name": "full" + "name": "full", + "directions": 4 }, { "name": "head_f", diff --git a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/hands.png b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/hands.png index bb21f1063c..173c4b5ade 100644 Binary files a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/hands.png and b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/hands.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/meta.json index 8c328d7445..8a3dc139fe 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/meta.json @@ -42,6 +42,10 @@ "name": "mask", "directions": 4 }, + { + "name": "neck", + "directions": 4 + }, { "name": "pants", "directions": 4 diff --git a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/neck.png b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/neck.png new file mode 100644 index 0000000000..2cfc58f225 Binary files /dev/null and b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/neck.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/meta.json index 66a64ab75e..350a3f9339 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/meta.json @@ -17,6 +17,10 @@ { "name": "hair", "directions": 4 + }, + { + "name": "neck", + "directions": 4 } ] } diff --git a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/neck.png b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/neck.png new file mode 100644 index 0000000000..d11f15c3ea Binary files /dev/null and b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/neck.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/female_neck.png b/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/female_neck.png new file mode 100644 index 0000000000..b62b48403d Binary files /dev/null and b/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/female_neck.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/male_neck.png b/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/male_neck.png new file mode 100644 index 0000000000..3cc454ae8a Binary files /dev/null and b/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/male_neck.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/meta.json index 90fab72ceb..2b142ab234 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/meta.json @@ -14,6 +14,10 @@ "name": "female_cloak", "directions": 4 }, + { + "name": "female_neck", + "directions": 4 + }, { "name": "female_pants", "directions": 4 @@ -21,6 +25,10 @@ { "name": "female_shirt", "directions": 4 + }, + { + "name": "male_neck", + "directions": 4 } ] } diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/female_neck.png b/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/female_neck.png new file mode 100644 index 0000000000..2b570453c7 Binary files /dev/null and b/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/female_neck.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/male_neck.png b/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/male_neck.png new file mode 100644 index 0000000000..7d2e309fd6 Binary files /dev/null and b/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/male_neck.png differ diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/meta.json new file mode 100644 index 0000000000..01d70becef --- /dev/null +++ b/Resources/Textures/_CP14/Mobs/Species/Human/displacement48.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 48, + "y": 48 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "female_neck", + "directions": 4 + }, + { + "name": "male_neck", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-BELT.png deleted file mode 100644 index 8b20687d50..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-BELT2.png deleted file mode 100644 index 54d14ef3b7..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-NECK.png deleted file mode 100644 index 218946af4c..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/icon.png deleted file mode 100644 index c2763f1e75..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/inhand-left.png deleted file mode 100644 index 5b66e61bf3..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/inhand-right.png deleted file mode 100644 index 4bc6c8be39..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/wielded-inhand-left.png deleted file mode 100644 index 764bb24d8e..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/wielded-inhand-right.png deleted file mode 100644 index 18ac0acecf..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-BELT.png deleted file mode 100644 index 703e776142..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-BELT2.png deleted file mode 100644 index 99ffe592bb..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-NECK.png deleted file mode 100644 index 7bd49923a7..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/icon.png deleted file mode 100644 index 631220fd68..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/inhand-left.png deleted file mode 100644 index 51a1a66009..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/inhand-right.png deleted file mode 100644 index 56f45d5e04..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/meta.json b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/meta.json deleted file mode 100644 index 52baa4ce56..0000000000 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/meta.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd (Github) ", - "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "tool" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/tool.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/tool.png deleted file mode 100644 index 537d7a5c4c..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/tool.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/wielded-inhand-left.png deleted file mode 100644 index 62f81fdcbe..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/wielded-inhand-right.png deleted file mode 100644 index cf47206f2e..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Hammer/metall_hammer.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-BELT.png deleted file mode 100644 index c4c5169aa0..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-BELT2.png deleted file mode 100644 index 2c3cde0147..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-NECK.png deleted file mode 100644 index c3264c2b4d..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/icon.png deleted file mode 100644 index 4b39398ecb..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/inhand-left.png deleted file mode 100644 index 672e2e2870..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/inhand-right.png deleted file mode 100644 index 610360d1a5..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/wielded-inhand-left.png deleted file mode 100644 index 7e8a549f32..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/wielded-inhand-right.png deleted file mode 100644 index a3e18c375b..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-BELT.png deleted file mode 100644 index 950cd509a9..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-BELT2.png deleted file mode 100644 index 51f6f42c97..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-NECK.png deleted file mode 100644 index 02f0411e32..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/icon.png deleted file mode 100644 index ba7a88d0e2..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/inhand-left.png deleted file mode 100644 index fe32b3e474..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/inhand-right.png deleted file mode 100644 index 388deddbaf..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/meta.json b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/meta.json deleted file mode 100644 index 52baa4ce56..0000000000 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/meta.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd (Github) ", - "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "tool" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/tool.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/tool.png deleted file mode 100644 index bf76eeb893..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/tool.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/wielded-inhand-left.png deleted file mode 100644 index 3210135eb1..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/wielded-inhand-right.png deleted file mode 100644 index 3042cff758..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Pickaxe/metall_pickaxe.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-BELT.png deleted file mode 100644 index cda538ccd4..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-BELT2.png deleted file mode 100644 index caa9f978d7..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-NECK.png deleted file mode 100644 index 9aba9d63d6..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/icon.png deleted file mode 100644 index f9097040ac..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/inhand-left.png deleted file mode 100644 index 659ce09ab6..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/inhand-right.png deleted file mode 100644 index 331892bd4b..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/preview.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/preview.png deleted file mode 100644 index b51cba529e..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/preview.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/wielded-inhand-left.png deleted file mode 100644 index 800b94d684..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/wielded-inhand-right.png deleted file mode 100644 index bc381580bc..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-BELT1.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-BELT1.png deleted file mode 100644 index b084eae783..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-BELT1.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-BELT2.png deleted file mode 100644 index 6896f8cd71..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-NECK.png deleted file mode 100644 index cb25f14318..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/icon.png deleted file mode 100644 index 3fffc881b0..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/inhand-left.png deleted file mode 100644 index a37661ed01..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/inhand-right.png deleted file mode 100644 index dd3c76e83b..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/wielded-inhand-left.png deleted file mode 100644 index 2640f45379..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/wielded-inhand-right.png deleted file mode 100644 index 5c58607dd7..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-BELT.png deleted file mode 100644 index b67b3f3fc6..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-BELT2.png deleted file mode 100644 index 2b95da714a..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-NECK.png deleted file mode 100644 index 520813e750..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/icon.png deleted file mode 100644 index be90409ffc..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/inhand-left.png deleted file mode 100644 index a94a1fd069..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/inhand-right.png deleted file mode 100644 index 77e3f89991..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/meta.json b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/meta.json deleted file mode 100644 index 52baa4ce56..0000000000 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/meta.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd (Github) ", - "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "tool" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/tool.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/tool.png deleted file mode 100644 index 39ec6840b8..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/tool.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/wielded-inhand-left.png deleted file mode 100644 index f150ab9f19..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/wielded-inhand-right.png deleted file mode 100644 index 4f8def30ad..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Shovel/metall_shovel.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-BELT.png deleted file mode 100644 index 20b23da66a..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-BELT2.png deleted file mode 100644 index 6981924047..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-NECK.png deleted file mode 100644 index e3c685c425..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/icon.png deleted file mode 100644 index 8fcbfc40f7..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/inhand-left.png deleted file mode 100644 index 9a354e7b99..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/inhand-right.png deleted file mode 100644 index 1b7ee17278..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/wielded-inhand-left.png deleted file mode 100644 index 01e18a7282..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/wielded-inhand-right.png deleted file mode 100644 index 46e3206fdb..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-BELT.png deleted file mode 100644 index ed5a92db6d..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-BELT2.png deleted file mode 100644 index 5eb7b68b61..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-NECK.png deleted file mode 100644 index aa515db0d5..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/icon.png deleted file mode 100644 index bd25ad4a35..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/inhand-left.png deleted file mode 100644 index 7fdf1b11ca..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/inhand-right.png deleted file mode 100644 index 3c55843bd1..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/meta.json b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/meta.json deleted file mode 100644 index 56da788355..0000000000 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/meta.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": 1, - "size": { - "x": 48, - "y": 48 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by iwordoloni (Discord) ", - "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "preview" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/preview.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/preview.png deleted file mode 100644 index ada7e2858d..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/preview.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/wielded-inhand-left.png deleted file mode 100644 index 15f6491603..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/wielded-inhand-right.png deleted file mode 100644 index 730b1e8bc2..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Skimitar/metall_skimitar.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-BELT.png deleted file mode 100644 index 0fe7a31ce9..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-BELT2.png deleted file mode 100644 index 169595725d..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-NECK.png deleted file mode 100644 index d183a3f26b..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/icon.png deleted file mode 100644 index e36dcbe02e..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/inhand-left.png deleted file mode 100644 index 2a11fe88cc..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/inhand-right.png deleted file mode 100644 index ae3f668d79..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/wielded-inhand-left.png deleted file mode 100644 index d1ba530ab7..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/wielded-inhand-right.png deleted file mode 100644 index 4c3dee15b4..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-BELT1.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-BELT1.png deleted file mode 100644 index db95259339..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-BELT1.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-BELT2.png deleted file mode 100644 index cc85654750..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-NECK.png deleted file mode 100644 index 9fba91a9b9..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/icon.png deleted file mode 100644 index 37b8bd90c0..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/inhand-left.png deleted file mode 100644 index e77f4e486d..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/inhand-right.png deleted file mode 100644 index 4877898b70..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/meta.json b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/meta.json deleted file mode 100644 index 432e587362..0000000000 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/meta.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by Vojner (Discord) Original by TheShuEd (Github) ", - "states": [ - { - "name": "equipped-BELT1", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/wielded-inhand-left.png deleted file mode 100644 index 4b444ee342..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/wielded-inhand-right.png deleted file mode 100644 index 05cfac4f96..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/wooden_spear.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-BELT.png deleted file mode 100644 index 52ae822e3a..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-BELT2.png deleted file mode 100644 index 7c33175e6a..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-NECK.png deleted file mode 100644 index 904a2efe88..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/icon.png deleted file mode 100644 index bcad46d2a6..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/inhand-left.png deleted file mode 100644 index f67d361d43..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/inhand-right.png deleted file mode 100644 index 8066b11638..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/wielded-inhand-left.png deleted file mode 100644 index 41f6cd7729..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/wielded-inhand-right.png deleted file mode 100644 index cd045770c0..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-BELT.png deleted file mode 100644 index 45295ecbef..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-BELT.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-BELT2.png deleted file mode 100644 index 0e3c59b367..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-NECK.png deleted file mode 100644 index df63ea0e41..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/icon.png deleted file mode 100644 index f3c84ec4c8..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/inhand-left.png deleted file mode 100644 index fcdef88115..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/inhand-right.png deleted file mode 100644 index 49b83fe949..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/preview.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/preview.png deleted file mode 100644 index 1c2d968844..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/preview.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/wielded-inhand-left.png deleted file mode 100644 index f16af60f91..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/wielded-inhand-right.png deleted file mode 100644 index d52b19b18b..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-BELT1.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-BELT1.png deleted file mode 100644 index 1e30be4c4f..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-BELT1.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-BELT2.png deleted file mode 100644 index df2325559c..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-BELT2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-NECK.png deleted file mode 100644 index 32aed9d6da..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/icon.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/icon.png deleted file mode 100644 index 845a7495cf..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/inhand-left.png deleted file mode 100644 index 9d4b6c9519..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/inhand-right.png deleted file mode 100644 index a78e633433..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/wielded-inhand-left.png deleted file mode 100644 index 82cb8b5dfc..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/wielded-inhand-right.png deleted file mode 100644 index ff7cda0a85..0000000000 Binary files a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/Specific/Economy/trade_contracts.rsi/helmir_child.png b/Resources/Textures/_CP14/Objects/Specific/Economy/trade_contracts.rsi/helmir_child.png new file mode 100644 index 0000000000..044a49f9ec Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Specific/Economy/trade_contracts.rsi/helmir_child.png differ diff --git a/Resources/Textures/_CP14/Objects/Specific/Economy/trade_contracts.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Economy/trade_contracts.rsi/meta.json index 835c5e06df..48efa9494c 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Economy/trade_contracts.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Economy/trade_contracts.rsi/meta.json @@ -22,6 +22,9 @@ { "name": "guard" }, + { + "name": "helmir_child" + }, { "name": "magic" }, diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/equipped-BELT.png new file mode 100644 index 0000000000..d514e9ad5c Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/equipped-BELT2.png new file mode 100644 index 0000000000..f4c61f7e7b Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/icon.png new file mode 100644 index 0000000000..eec5441802 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/inhand-left.png new file mode 100644 index 0000000000..88c4c9c9f4 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/inhand-right.png new file mode 100644 index 0000000000..1dc71b4df4 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/meta.json similarity index 68% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/meta.json index 93aff700bd..9da2a51d82 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Dagger/metall_dagger.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/hatchet.rsi/meta.json @@ -15,10 +15,6 @@ "name": "equipped-BELT2", "directions": 4 }, - { - "name": "equipped-NECK", - "directions": 4 - }, { "name": "icon" }, @@ -29,14 +25,6 @@ { "name": "inhand-right", "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/equipped-BELT.png similarity index 100% rename from Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/equipped-BELT.png rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/equipped-BELT.png diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/equipped-BELT2.png similarity index 100% rename from Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/equipped-BELT2.png rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/equipped-BELT2.png diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/equipped-NECK.png similarity index 100% rename from Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/equipped-NECK.png rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/equipped-NECK.png diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/icon.png new file mode 100644 index 0000000000..095480c1ec Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/inhand-left.png rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/inhand-left.png diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/inhand-right.png rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/inhand-right.png diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/meta.json similarity index 100% rename from Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice.rsi/meta.json diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/equipped-BELT.png new file mode 100644 index 0000000000..eb90ab8767 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/equipped-BELT2.png new file mode 100644 index 0000000000..eeeea862d6 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/icon.png new file mode 100644 index 0000000000..79470068b1 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..e50b1c25e2 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..33d6295229 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/meta.json similarity index 68% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/meta.json index 93aff700bd..9da2a51d82 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Spear/metall_spear.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/iron.rsi/meta.json @@ -15,10 +15,6 @@ "name": "equipped-BELT2", "directions": 4 }, - { - "name": "equipped-NECK", - "directions": 4 - }, { "name": "icon" }, @@ -29,14 +25,6 @@ { "name": "inhand-right", "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/equipped-BELT.png new file mode 100644 index 0000000000..8e4efa1d01 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/equipped-BELT2.png new file mode 100644 index 0000000000..a6a61046ce Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/icon.png new file mode 100644 index 0000000000..4886e733b2 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/inhand-left.png new file mode 100644 index 0000000000..47c127473d Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/inhand-right.png new file mode 100644 index 0000000000..008760e05d Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/meta.json new file mode 100644 index 0000000000..9da2a51d82 --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/sickle.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github) ", + "states": [ + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-BELT2", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/equipped-NECK.png new file mode 100644 index 0000000000..b17a5ea61b Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/icon.png new file mode 100644 index 0000000000..37b65673ac Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/inhand-left.png new file mode 100644 index 0000000000..e0e1f341cc Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/inhand-right.png new file mode 100644 index 0000000000..409d24e5cf Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/meta.json similarity index 72% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/meta.json index a85319c765..91e4c5fb6b 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/bone_sword.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/meta.json @@ -1,24 +1,12 @@ { "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd (Github) ", "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, { "name": "icon" }, @@ -26,6 +14,10 @@ "name": "inhand-left", "directions": 4 }, + { + "name": "equipped-NECK", + "directions": 4 + }, { "name": "inhand-right", "directions": 4 @@ -39,4 +31,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..39623481a6 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..20aa311b4b Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Fork/fork.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/equipped-BELT.png new file mode 100644 index 0000000000..49abef536b Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/equipped-BELT2.png new file mode 100644 index 0000000000..28052a73c9 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/icon.png new file mode 100644 index 0000000000..8184ab7607 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..e39aff7e27 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..e5f80cba17 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/meta.json new file mode 100644 index 0000000000..9da2a51d82 --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hammer/iron.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github) ", + "states": [ + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-BELT2", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/equipped-NECK.png new file mode 100644 index 0000000000..18b6e1a956 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/icon.png new file mode 100644 index 0000000000..206ba2bd41 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/inhand-left.png new file mode 100644 index 0000000000..d5cb9118de Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/inhand-right.png new file mode 100644 index 0000000000..07b3c9bd56 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/meta.json similarity index 69% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/meta.json index 5180040901..91e4c5fb6b 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/wooden_sword.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/meta.json @@ -1,24 +1,12 @@ { "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by Vojner (Discord) Original by TheShuEd (Github) ", "states": [ - { - "name": "equipped-BELT1", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, { "name": "icon" }, @@ -26,6 +14,10 @@ "name": "inhand-left", "directions": 4 }, + { + "name": "equipped-NECK", + "directions": 4 + }, { "name": "inhand-right", "directions": 4 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..5ea5dbb5b8 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..525d3a7c77 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mop/mop.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..44c410203f Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/icon.png new file mode 100644 index 0000000000..c61f2f527b Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..6e18a6d7dd Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..d845d3e2d7 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/meta.json similarity index 69% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/meta.json index 5180040901..91e4c5fb6b 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/wooden_rapier.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/meta.json @@ -1,24 +1,12 @@ { "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by Vojner (Discord) Original by TheShuEd (Github) ", "states": [ - { - "name": "equipped-BELT1", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, { "name": "icon" }, @@ -26,6 +14,10 @@ "name": "inhand-left", "directions": 4 }, + { + "name": "equipped-NECK", + "directions": 4 + }, { "name": "inhand-right", "directions": 4 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..a0df817fe9 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..a0df817fe9 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/iron.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/equipped-BELT.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/equipped-BELT.png new file mode 100644 index 0000000000..1859bc93f3 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/equipped-BELT2.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/equipped-BELT2.png new file mode 100644 index 0000000000..c370b91e33 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/equipped-BELT2.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/icon.png new file mode 100644 index 0000000000..81b65af134 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..347a5007b6 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..2cad9cf8b6 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/meta.json similarity index 57% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/meta.json index 55c514f983..200de0ed46 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Rapier/metall_rapier.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Rapier/iron.rsi/meta.json @@ -1,12 +1,19 @@ { "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 }, - "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd (Github) ", "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, { "name": "equipped-BELT", "directions": 4 @@ -15,31 +22,9 @@ "name": "equipped-BELT2", "directions": 4 }, - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - }, - { - "name": "preview" - }, - { - "name": "inhand-left", - "directions": 4 - }, { "name": "inhand-right", "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/equipped-NECK.png index 187be1a65d..ebd252a300 100644 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/equipped-NECK.png and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/icon.png index 3b4762897a..8c4a632c56 100644 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/icon.png and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-left.png index b0193a2e1a..b20ebd1229 100644 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-left.png and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-right.png index 8a3e36bd65..0349a52a0e 100644 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-right.png and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..71f670ef95 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/icon.png new file mode 100644 index 0000000000..3193b75438 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..0a9e6b82c3 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..7f5764cdf4 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/meta.json new file mode 100644 index 0000000000..bea18fa819 --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/ShieldBuckler/iron.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..c34d8fc315 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/icon.png new file mode 100644 index 0000000000..ac809c0845 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..0fe1e50b8a Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..2fb284eb25 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/meta.json similarity index 68% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/meta.json index 93aff700bd..91e4c5fb6b 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Mace/metall_mace.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/meta.json @@ -1,24 +1,12 @@ { "version": 1, - "size": { - "x": 32, - "y": 32 - }, "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd (Github) ", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 48, + "y": 48 + }, "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, - { - "name": "equipped-NECK", - "directions": 4 - }, { "name": "icon" }, @@ -26,6 +14,10 @@ "name": "inhand-left", "directions": 4 }, + { + "name": "equipped-NECK", + "directions": 4 + }, { "name": "inhand-right", "directions": 4 @@ -39,4 +31,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..ebae2e6d33 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..ebae2e6d33 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/iron.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..290d06490f Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/icon.png new file mode 100644 index 0000000000..755826698e Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..aa6c23a55e Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..db3f134030 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/meta.json new file mode 100644 index 0000000000..3c81299c4f --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Skimitar/iron.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..63f5208b54 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/icon.png new file mode 100644 index 0000000000..d38dacc6b1 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..ad4e92b68c Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..b52bbc5205 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/meta.json new file mode 100644 index 0000000000..91e4c5fb6b --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..7bcff14d56 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..7bcff14d56 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Spear/iron.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..ed761812ed Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/icon.png new file mode 100644 index 0000000000..0630e29758 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..3c0b30b326 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..69fecffb92 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/meta.json new file mode 100644 index 0000000000..3c81299c4f --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/iron.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/equipped-NECK.png new file mode 100644 index 0000000000..ed87711b6f Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/icon.png new file mode 100644 index 0000000000..4c7b91327f Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/inhand-left.png new file mode 100644 index 0000000000..98ae6f4ee9 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/inhand-right.png new file mode 100644 index 0000000000..8dbc124986 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/meta.json similarity index 54% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/meta.json index 55c514f983..8ea3ca2f29 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sword/metall_sword.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/TowerShield/wooden.rsi/meta.json @@ -7,14 +7,6 @@ "license": "CC-BY-SA-4.0", "copyright": "Created by TheShuEd (Github) ", "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, { "name": "equipped-NECK", "directions": 4 @@ -22,9 +14,6 @@ { "name": "icon" }, - { - "name": "preview" - }, { "name": "inhand-left", "directions": 4 @@ -32,14 +21,6 @@ { "name": "inhand-right", "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..f972758185 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/icon.png new file mode 100644 index 0000000000..2b9d84e62d Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..21a7b50263 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..73cd5f4026 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/meta.json new file mode 100644 index 0000000000..91e4c5fb6b --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..7224c16be4 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..7224c16be4 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/iron.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..d5146fa781 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/icon.png new file mode 100644 index 0000000000..cdea029069 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..badf5e1ae8 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..32b2d8621a Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/meta.json new file mode 100644 index 0000000000..91e4c5fb6b --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd (Github)", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..636a2aa00c Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..d5219d9be3 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarAxe/iron.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/equipped-NECK.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/equipped-NECK.png new file mode 100644 index 0000000000..fd171b0b58 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/icon.png new file mode 100644 index 0000000000..29cc2a5ae1 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/inhand-left.png new file mode 100644 index 0000000000..208e2beb3f Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/inhand-right.png new file mode 100644 index 0000000000..bd3008624f Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/meta.json similarity index 79% rename from Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/meta.json rename to Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/meta.json index 93aff700bd..3d7dd534b1 100644 --- a/Resources/Textures/_CP14/Objects/ModularTools/Blade/Sickle/metall_sickle.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/meta.json @@ -7,14 +7,6 @@ "license": "CC-BY-SA-4.0", "copyright": "Created by TheShuEd (Github) ", "states": [ - { - "name": "equipped-BELT", - "directions": 4 - }, - { - "name": "equipped-BELT2", - "directions": 4 - }, { "name": "equipped-NECK", "directions": 4 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/wielded-inhand-left.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..553075d320 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/wielded-inhand-right.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..9b95a85565 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Melee/WarHammer/iron.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/icon.png b/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/icon.png deleted file mode 100644 index 6b6a70700d..0000000000 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Melee/ice_dagger.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/meta.json index 2a98eafa31..a8b819af73 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/meta.json @@ -7,15 +7,9 @@ "y": 32 }, "states": [ - { - "name": "tail" - }, { "name": "rod" }, - { - "name": "tip" - }, { "name": "solution1" }, diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/rod.png b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/rod.png index 1b934c3201..97e5421cfe 100644 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/rod.png and b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/rod.png differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/tail.png b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/tail.png deleted file mode 100644 index 96195c746f..0000000000 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/tail.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/tip.png b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/tip.png deleted file mode 100644 index bf5ae60899..0000000000 Binary files a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/arrows.rsi/tip.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi/meta.json index 7832ce87a7..dd23bc959c 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "icon" }, + { + "name": "solution1" + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi/solution1.png b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi/solution1.png new file mode 100644 index 0000000000..20e77e7f1f Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/ice_arrow.rsi/solution1.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/base.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/base.png new file mode 100644 index 0000000000..5b4b98ecdb Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/base.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_blue.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_blue.png new file mode 100644 index 0000000000..65af8fa4f9 Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_blue.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_green.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_green.png new file mode 100644 index 0000000000..8fc0e71b46 Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_green.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_purple.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_purple.png new file mode 100644 index 0000000000..ffdbd054a0 Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_purple.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_red.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_red.png new file mode 100644 index 0000000000..0c441446c9 Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_red.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_yellow.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_yellow.png new file mode 100644 index 0000000000..fc87bc436e Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/flag_yellow.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/meta.json new file mode 100644 index 0000000000..5081991390 --- /dev/null +++ b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by TheShuEd ", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "base" + }, + { + "name": "paper-0" + }, + { + "name": "paper-1" + }, + { + "name": "paper-2" + }, + { + "name": "paper-3" + }, + { + "name": "paper-4" + }, + { + "name": "flag_blue" + }, + { + "name": "flag_green" + }, + { + "name": "flag_purple" + }, + { + "name": "flag_red" + }, + { + "name": "flag_yellow" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-0.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-0.png new file mode 100644 index 0000000000..c1d1a38619 Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-0.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-1.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-1.png new file mode 100644 index 0000000000..c6095350b8 Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-1.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-2.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-2.png new file mode 100644 index 0000000000..59affd1e7a Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-2.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-3.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-3.png new file mode 100644 index 0000000000..f108e1f92a Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-3.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-4.png b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-4.png new file mode 100644 index 0000000000..503ecf3f33 Binary files /dev/null and b/Resources/Textures/_CP14/Structures/Furniture/order_board.rsi/paper-4.png differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/base.png b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/base.png deleted file mode 100644 index 2c342ebaa7..0000000000 Binary files a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/base.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/meta.json deleted file mode 100644 index b7caf52c7f..0000000000 --- a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/meta.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd ", - "size": { - "x": 46, - "y": 84 - }, - "states": [ - { - "name": "base", - "directions": 4 - }, - { - "name": "paper-0", - "directions": 4 - }, - { - "name": "paper-1", - "directions": 4 - }, - { - "name": "paper-2", - "directions": 4 - }, - { - "name": "paper-3", - "directions": 4 - }, - { - "name": "paper-4", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-0.png b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-0.png deleted file mode 100644 index 987de742be..0000000000 Binary files a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-0.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-1.png b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-1.png deleted file mode 100644 index dd1a5e0799..0000000000 Binary files a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-1.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-2.png b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-2.png deleted file mode 100644 index f8a73c3b89..0000000000 Binary files a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-2.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-3.png b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-3.png deleted file mode 100644 index 541f71e9cf..0000000000 Binary files a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-3.png and /dev/null differ diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-4.png b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-4.png deleted file mode 100644 index 0accfd6b30..0000000000 Binary files a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/paper-4.png and /dev/null differ diff --git a/Resources/migration.yml b/Resources/migration.yml index 35686eafba..ece11e5806 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -73,15 +73,6 @@ CP14ClothingCloakSimpleDarkBlue: null CP14ClothingCloakArmoredRed: CP14ClothingCloakGuardCommander CP14SpawnPointCaptain: null -#2024-27-11 -CP14BaseDagger: CP14ModularIronDagger -CP14BaseMace: CP14ModularIronMace -CP14BaseSickle: CP14ModularIronSickle -CP14BaseThrowableSpear: CP14ModularIronSpear -CP14BaseSword: CP14ModularIronSword -CP14BaseShovel: CP14ModularIronShovel -CP14BasePickaxe: CP14ModularIronPickaxe - #2024-02-12 CP14WoodenDoorTavernAlchemy: CP14WoodenDoorAlchemy1 CP14WoodenDoorTavernAlchemyMirrored: CP14WoodenDoorAlchemyMirrored1 @@ -95,9 +86,6 @@ CP14FenceIronGrilleCorner: null CP14ClothingShirtGuardsChainmailShirtWB: CP14ClothingShirtGuardsChainmailShirtB CP14KeyRingGuardCommandant: CP14KeyRingGuardCommander -#2024-08-12 -CP14BaseHandheldAxe: CP14ModularGripWoodenLong - #2024-12-12 CP14FloraTree01: CP14FloraTreeGreen CP14FloraTree02: CP14FloraTreeGreen @@ -132,10 +120,6 @@ CP14TwoHandedSwordScythe: null #2025-17-01 CP14ClothingCloakBrassArmor: null -CP14ClothingCloakCuirass: CP14ArmorIronCuirass -CP14ClothingCloakInfantryCuirass: CP14ArmorIronCuirass -CP14ClothingCloakCuirassLoincloth: CP14ArmorIronCuirass -CP14ClothingCloakCuirassLeg: CP14ArmorIronCuirass #2025-21-01 CP14PlateWooden: CP14PlateWooden @@ -143,10 +127,6 @@ CP14PlateWooden2: CP14PlateWooden CP14PlateCeramic: CP14PlateWooden CP14PlateIron: CP14PlateIron -#2025-22-01 -CP14BaseLightHammer: CP14ModularIronHammer -CP14BaseBattleHammer: CP14ModularIronHammer - #2025-30-01 CP14OreCopper: CP14OreCopper1 CP14OreIron: CP14OreIron1 @@ -167,8 +147,8 @@ C14IronCabinet: CP14IronCabinet C14IronCabinetCargo: CP14IronCabinet #2025-16-02 -CP14Arrow: CP14ModularIronArrow -CP14ClothingBeltQuiverArrow: CP14ClothingBeltQuiverIronArrow +CP14Arrow: null +CP14ClothingBeltQuiverArrow: CP14ClothingBeltQuiverArrows #2025-17-02 CP14Crossbolt: CP14CrossboltIron @@ -219,12 +199,6 @@ CP14IronDoorBankVault: null CP14BankStorageMarker: null CP14SpawnPointCommandant: null -#2025-07-03 -CP14ClothingOuterClothingCuirass: CP14ArmorIronCuirass -CP14ClothingOuterClothingInfantryCuirass: CP14ArmorIronCuirass -CP14ClothingOuterClothingCuirassLoincloth: CP14ArmorIronCuirass -CP14ClothingOuterClothingCuirassLeg: CP14ArmorIronCuirass - #2025-11-03 CP14BrassChest: CP14WoodenChest CP14BrassChestFilledEnergyCrystals: null @@ -252,7 +226,6 @@ CP14PlantPotatoDeath: CP14PlantPotato CP14PlantPumpkinDeath: CP14PlantPumpkin CP14PlantTomatoesDeath: CP14PlantTomatoes CP14PlantWheatDeath: CP14PlantWheat -CP14BaseHoe: CP14ModularIronHoe CP14PlantOnion: null #2025-14-04 @@ -265,8 +238,8 @@ CP14FenceWoodSmallGate: CP14FenceGateWooden CP14FenceIronGrilleStraight: CP14FenceBigIron CP14FenceIronGrilleGate: CP14FenceGateBigIron CP14FenceIronGrilleGateGuard: CP14FenceGateBigIronGuardBarracks -CP14FenceIronGrilleGateGuildmaster: CP14FenceGateBigIronGuildmaster -CP14FenceIronGrilleGateDemiplaneCrystal: CP14FenceGateBigIronDemiplaneCrystal +CP14FenceIronGrilleGateGuildmaster: CP14FenceGateBigIron +CP14FenceIronGrilleGateDemiplaneCrystal: CP14FenceGateBigIron CP14FenceIronGrilleWindowStraight: CP14FenceWindowIron #2025-21-04 @@ -277,7 +250,6 @@ CP14WallStonebrickCrushedMedium: CP14WallFrameStonebrick CP14WallStonebrickCrushedLow: CP14WallFrameStonebrick CP14WallCyan: CP14WallStonebrick CP14FrameWooden: CP14WallFrameWooden -CP14BaseCrowbar: CP14ModularIronPickaxe #2025-26-04 CP14WallSkulls: CP14WallStonebrickOld @@ -344,7 +316,6 @@ CP14ClothingRingFlashLight: null CP14ClothingRingIceShards: null # 2025-04-06 -CP14BaseMop: CP14ModularWoodMop CP14CarpetPink: CP14CarpetPurple #2025-15-06 @@ -441,6 +412,66 @@ CP14DemiplaneCore: null CP14SpawnerLocationConnection: null CP14LocationPassway: null +#2025-08-27 +CP14ModularBladeBoneSword: CP14CopperCoin1 +CP14ModularBladeCopperSickle: CP14CopperCoin1 +CP14ModularBladeIronAxe: CP14CopperCoin1 +CP14ModularBladeIronMace: CP14CopperCoin1 +CP14ModularBladeIronRapier: CP14CopperCoin1 +CP14ModularBladeIronSickle: CP14CopperCoin1 +CP14ModularBladeIronShovel: CP14CopperCoin1 +CP14ModularBladeIronPickaxe: CP14CopperCoin1 +CP14ModularBladeMithrilDagger: CP14CopperCoin1 +CP14ModularGardeSharpCopper: CP14CopperCoin1 +CP14ModularGardeSharpIron: CP14CopperCoin1 +CP14ModularGardeSharpMithril: CP14CopperCoin1 +CP14ModularGardeSturdyGold: CP14CopperCoin1 +CP14ModularGripCopper: CP14CopperCoin1 +CP14ModularGripIron: CP14CopperCoin1 +CP14ModularGripIronLong: CP14CopperCoin1 +CP14ModularGripIronLongGuard: CP14CopperCoin1 +CP14ModularGripMithril: CP14CopperCoin1 +CP14ModularGripWoodenLong: CP14CopperCoin1 +CP14ModularGuardHalberd: CP14CopperCoin1 +CP14ModularInlayQuartzDarkness: CP14CopperCoin1 +CP14ModularInlayQuartzElectric: CP14CopperCoin1 +CP14ModularInlayQuartzFire: CP14CopperCoin1 +CP14ModularInlayQuartzHealing: CP14CopperCoin1 +CP14ModularInlayQuartzLight: CP14CopperCoin1 +CP14ModularInlayQuartzWater: CP14CopperCoin1 +CP14ModularTipGoldArrow: CP14CopperCoin1 +CP14ModularTipIronArrow: CP14CopperCoin1 +CP14ModularRodLucens: CP14CopperCoin1 +CP14ModularRodWooden: CP14CopperCoin1 + +CP14ModularIronAxe: CP14WeaponWarAxeIron +CP14ModularIronDagger: CP14WeaponDaggerIron +CP14ModularIronHammer: CP14WeaponHammerIron +CP14ModularIronKunai: CP14WeaponDaggerHatchet +CP14ModularIronMace: CP14CopperCoin1 +CP14ModularIronPickaxe: CP14WeaponPickaxeIron +CP14ModularIronShovel: CP14WeaponShovelIron +CP14ModularIronSickle: CP14WeaponDaggerSickle +CP14ModularIronSpear: CP14WeaponSpearIron +CP14ModularIronSword: CP14WeaponSwordIron +CP14ModularSkeletonHalberd: CP14WeaponTwoHandedSwordIron +CP14ModularWoodMop: CP14Mop +CP14ModularIronHoe: CP14WeaponFork +CP14ModularIronArrow: CP14Arrow +CP14ModularCopperArrow: CP14Arrow +CP14ModularCopperSkimitar: CP14WeaponSkimitarIron +CP14BaseShield: CP14WeaponShieldWooden + +CP14ClothingBeltQuiverMithrilArrow: CP14ClothingBeltQuiverArrows +CP14ClothingBeltQuiverCopperArrow: CP14ClothingBeltQuiverArrows +CP14ClothingBeltQuiverIronArrow: CP14ClothingBeltQuiverArrows +CP14ArmorIronCuirass: null + +# 2025-09-07 +CP14WallmountOrdersBorder: null +CP14FenceGateBigIronDemiplaneCrystal: CP14FenceGateBigIron +CP14FenceGateBigIronGuildmaster: CP14FenceGateBigIron + # <---> CrystallEdge migration zone end