Merge branch 'master' into feature/reclaimer-ftl

This commit is contained in:
jessiscah23 2026-07-13 13:35:19 -07:00 committed by GitHub
commit cc723b0472
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
74 changed files with 1011 additions and 582 deletions

View File

@ -100,6 +100,12 @@ public abstract partial class SharedVisualBodySystem : EntitySystem
if (!other.Layer.Equals(ent.Comp.Layer))
return;
// Delta V - Begin Fix Height for Cloning
var height = other.Profile.Height;
if (TryComp<HumanoidProfileComponent>(args.Body.Owner, out var component))
ScaleBody((args.Body.Owner, component), height, height);
// Delta V - End
SetOrganAppearance(ent, other.Data);
}
@ -112,9 +118,14 @@ public abstract partial class SharedVisualBodySystem : EntitySystem
var height = Math.Clamp(MathF.Round(args.Base.Value.Height, 2), speciesPrototype.MinHeight, speciesPrototype.MaxHeight);
ScaleBody(entity, speciesPrototype.ScaleHeight ? height : 1f, height);
}
private void ScaleBody(Entity<HumanoidProfileComponent> entity, float heightX, float heightY)
{
_scaleVisualsSystem.SetSpriteScale(
entity.Owner,
new Vector2(speciesPrototype.ScaleHeight ? height : 1f, height)
new Vector2(heightX, heightY)
);
}
// Delta V - END
@ -148,7 +159,7 @@ public abstract partial class SharedVisualBodySystem : EntitySystem
if (ent.Comp.Layer.Equals(HumanoidVisualLayers.Eyes))
{
// Delta V - Begin Add AppearanceLoaded Event
var appearanceLoaded = new AppearanceLoadedEvent(ent.Comp.Profile.EyeColor);
var appearanceLoaded = new AppearanceLoadedEvent(ent.Comp.Profile.EyeColor, ent.Comp.Profile.SkinColor);
RaiseLocalEvent(args.Body.Owner, ref appearanceLoaded);
// Delta V - End
SetOrganColor(ent, ent.Comp.Profile.EyeColor);

View File

@ -75,4 +75,7 @@ public sealed partial class PreenableComponent : Component
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoNetworkedField, AutoPausedField]
public TimeSpan? ReplenishTime;
[DataField, AutoNetworkedField]
public Color? Color;
}

View File

@ -1,5 +1,6 @@
using Content.Shared._DV.Body.Components;
using Content.Shared._DV.Body.Events;
using Content.Shared._DV.Humanoid;
using Content.Shared.Body.Components;
using Content.Shared.Chat;
using Content.Shared.Damage;
@ -45,6 +46,7 @@ public sealed class PreenableSystem : EntitySystem
SubscribeLocalEvent<PreenableComponent, DamageChangedEvent>(OnDamaged);
SubscribeLocalEvent<PreenableComponent, DamageModifyEvent>(OnDamageModify);
SubscribeLocalEvent<PreenableComponent, ComponentInit>(OnCompInit);
SubscribeLocalEvent<PreenableComponent, AppearanceLoadedEvent>(OnProfileLoadFinished);
}
private void OnCompInit(Entity<PreenableComponent> ent, ref ComponentInit args)
@ -185,7 +187,7 @@ public sealed class PreenableSystem : EntitySystem
if (TryComp<HumanoidProfileComponent>(ent, out var appearance))
{
_appearance.SetData(feather, FeatherVisuals.FeatherColor, Color.White); // TODO: Nubody Colors
_appearance.SetData(feather, FeatherVisuals.FeatherColor, ent.Comp.Color ?? Color.White);
}
// best be careful, no cleaning this
@ -204,6 +206,11 @@ public sealed class PreenableSystem : EntitySystem
return feather;
}
private void OnProfileLoadFinished(Entity<PreenableComponent> ent, ref AppearanceLoadedEvent args)
{
ent.Comp.Color = args.SkinColor;
}
public override void Update(float deltaTime)
{
base.Update(deltaTime);

View File

@ -4,4 +4,4 @@ namespace Content.Shared._DV.Humanoid;
/// Raised on an entity when their appearance is changed.
/// </summary>
[ByRefEvent]
public record struct AppearanceLoadedEvent(Color EyeColor);
public record struct AppearanceLoadedEvent(Color EyeColor, Color SkinColor);

View File

@ -332,5 +332,14 @@ Entries:
id: 36
time: '2026-06-16T20:02:18.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6006
- author: einknusprigestoast
changes:
- message: Changed SRT loadouts
type: Tweak
- message: Added the eviscerator, a ERT-/SRT-issued heavy plasma rifle.
type: Add
id: 37
time: '2026-07-13T13:44:06.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6233
Name: DeltaVAdmin
Order: 5

View File

@ -1,65 +1,4 @@
Entries:
- author: Unkn0wnGh0st333
changes:
- message: Gulp Emote from Goob has been added... gulp...
type: Add
id: 2053
time: '2026-01-12T04:42:07.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5033
- author: Velcroboy
changes:
- message: Tanks of ammonia are now purchasable from logi for mixing more space
cleaner or making the station stinky
type: Add
id: 2054
time: '2026-01-13T05:00:57.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5167
- author: Pharaz4
changes:
- message: Syndicate Assault, Medical, and Saboteur borgs now get names.
type: Add
- message: Fixed SRN Saboteur borg not being able to fit Engineering module
type: Fix
id: 2055
time: '2026-01-14T13:23:22.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5197
- author: MilonPL
changes:
- message: Added a dynamic tip system that shows contextual tips to players based
on their job, playtime, and more.
type: Add
- message: Tips can be disabled or reset in the Options menu under DeltaV.
type: Add
id: 2056
time: '2026-01-14T20:23:40.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5199
- author: Velcroboy
changes:
- message: Fixed bomb and effigy targets being on grids off the station sometimes.
type: Fix
id: 2057
time: '2026-01-15T07:29:44.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5213
- author: Pharaz4
changes:
- message: Hard hats are now protective!
type: Tweak
id: 2058
time: '2026-01-15T15:44:57.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5175
- author: Halo3moth
changes:
- message: The hos locker will now spawn with a briefcase that allows them to pick
between sidearms.
type: Add
- message: The energy magnum now also works for the hos steal objective.
type: Tweak
- message: Energy magnum standard bolt from 20 heat to 24 and magnum bolt from 30
heat to 24 heat and 11 pierce.
type: Tweak
id: 2059
time: '2026-01-16T17:46:17.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5203
- author: mnva0
changes:
- message: Ovinia now start with a emergency survival box.
@ -4341,4 +4280,56 @@
id: 2553
time: '2026-07-11T17:25:07.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5924
- author: Coryler
changes:
- message: Avali Preened Feather Color are now correct again
type: Fix
id: 2554
time: '2026-07-13T13:32:05.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6285
- author: pootslap
changes:
- message: Starlight forged weapons/armour/ammo are no longer craftable.
type: Remove
id: 2555
time: '2026-07-13T13:46:25.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6250
- author: ArionGekkota
changes:
- message: Added the small arms mining kit to the mining voucher. It contains a
crusher dagger and mining drill!
type: Add
id: 2556
time: '2026-07-13T13:51:12.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6260
- author: jessiscah23
changes:
- message: Due to the growing influence of the Cargo Pilots' Employee Advocacy Group,
cargo telepads are no longer available to be researched.
type: Remove
id: 2557
time: '2026-07-13T14:24:25.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6266
- author: Velitation
changes:
- message: Added 2 new outfits and a mantle to the mime's loadout. The outfits can
also be printed out at a uniform printer.
type: Add
id: 2558
time: '2026-07-13T16:16:20.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6264
- author: ShepardToTheStars
changes:
- message: Derelict borgs no longer have access to heads' rooms.
type: Fix
id: 2559
time: '2026-07-13T17:38:08.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6284
- author: Coryler
changes:
- message: Character height should be correctly applied for clones and paradox clones.
type: Fix
id: 2560
time: '2026-07-13T19:58:26.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6205
Order: 1

View File

@ -1071,4 +1071,11 @@
id: 123
time: '2026-06-12T17:16:00.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/5940
- author: FieldCommand
changes:
- message: 'Mothership: Turrets have been constructed on the Xenoborg mothership!'
type: Add
id: 124
time: '2026-07-13T13:16:26.0000000+00:00'
url: https://github.com/DeltaV-Station/Delta-v/pull/6244
Order: 3

View File

@ -35,3 +35,9 @@ mining-voucher-conscription-name = Mining Conscription Kit
mining-voucher-conscription-description =
Contains a whole new mining starter kit for one crewmember, including
a proto-kinetic accelerator, mineral scanner and other useful gear.
mining-voucher-dagger-name = Small Arms Kit
mining-voucher-dagger-description =
Contains a crusher dagger, a mining drill and a fire extinguisher.
You may have downsized your weaponry compared to other crusher users, but
at least you have enough bag space to carry a bigger fire extinguisher!

View File

@ -1,11 +1,11 @@
meta:
format: 7
category: Grid
engineVersion: 270.1.0
engineVersion: 275.2.1
forkId: ""
forkVersion: ""
time: 05/01/2026 10:37:39
entityCount: 881
time: 07/07/2026 22:20:08
entityCount: 886
maps: []
grids:
- 1
@ -33,19 +33,19 @@ entities:
chunks:
0,0:
ind: 0,0
tiles: BAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA==
tiles: BAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA==
version: 7
-1,0:
ind: -1,0
tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA==
tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA==
version: 7
0,-1:
ind: 0,-1
tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAA==
tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAA==
version: 7
-1,-1:
ind: -1,-1
tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA==
tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA==
version: 7
- type: Broadphase
- type: Physics
@ -2418,14 +2418,14 @@ entities:
parent: 1
- proto: CableApcStack
entities:
- uid: 820
- uid: 824
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
storage: 801
- proto: CableHV
entities:
- uid: 193
@ -2970,14 +2970,14 @@ entities:
parent: 1
- proto: CableHVStack
entities:
- uid: 818
- uid: 825
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
storage: 801
- proto: CableMV
entities:
- uid: 512
@ -3172,14 +3172,14 @@ entities:
parent: 1
- proto: CableMVStack
entities:
- uid: 819
- uid: 826
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
storage: 801
- proto: CableTerminal
entities:
- uid: 432
@ -3330,36 +3330,25 @@ entities:
parent: 1
- proto: CrateGenericSteel
entities:
- uid: 817
- uid: 801
components:
- type: MetaData
name: Material Crate
- type: Transform
pos: 2.5,1.5
pos: 2.5,-0.5
parent: 1
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.14673
moles:
Oxygen: 1.7459903
Nitrogen: 6.568249
temperature: 93.465614
moles: {}
- type: ContainerContainer
containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- 835
- 834
- 833
- 832
- 831
- 830
- 829
- 828
- 827
- 826
- 825
- 824
@ -3369,6 +3358,15 @@ entities:
- 820
- 819
- 818
- 817
- 806
- 805
- 804
- 803
- 802
- 827
- 828
- 829
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@ -3854,132 +3852,132 @@ entities:
parent: 1
- proto: SheetGlass
entities:
- uid: 833
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 834
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- proto: SheetPlasteel
entities:
- uid: 822
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 823
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- proto: SheetPlastic
entities:
- uid: 821
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 835
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- proto: SheetSteel
entities:
- uid: 824
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 825
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 826
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 827
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 828
components:
- type: Transform
parent: 817
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
storage: 801
- uid: 829
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 830
storage: 801
- proto: SheetPlasteel
entities:
- uid: 827
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 831
storage: 801
- uid: 828
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
- uid: 832
storage: 801
- proto: SheetPlastic
entities:
- uid: 802
components:
- type: Transform
parent: 817
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 817
storage: 801
- uid: 803
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- proto: SheetSteel
entities:
- uid: 804
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 805
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 806
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 817
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 818
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 819
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 820
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 821
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- uid: 822
components:
- type: Transform
parent: 801
- type: Physics
canCollide: False
- type: InsideEntityStorage
storage: 801
- proto: SignalButtonDirectional
entities:
- uid: 135
@ -5171,17 +5169,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -12.5,-2.5
parent: 1
- uid: 705
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,5.5
parent: 1
- uid: 712
components:
- type: Transform
pos: 5.5,-3.5
parent: 1
- uid: 787
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,5.5
parent: 1
- uid: 893
components:
- type: Transform
@ -5197,6 +5195,33 @@ entities:
parent: 1
- type: WarpPoint
location: Mothership
- proto: WeaponEnergyTurretXenoborg
entities:
- uid: 705
components:
- type: Transform
pos: 2.5,1.5
parent: 1
- uid: 788
components:
- type: Transform
pos: -4.5,-2.5
parent: 1
- uid: 791
components:
- type: Transform
pos: 5.5,-2.5
parent: 1
- uid: 792
components:
- type: Transform
pos: 5.5,3.5
parent: 1
- uid: 799
components:
- type: Transform
pos: -4.5,3.5
parent: 1
- proto: XenoborgWindow
entities:
- uid: 26

View File

@ -421,10 +421,9 @@
- type: NpcFactionMember
factions:
- NanoTrasen #The seemingly best fit. It was a regular NT cyborg once, after all.
- type: Access
enabled: false # DeltaV - comment to prevent upstream removing, borg id chips
groups:
- AllAccess #Randomized access would be fun. AllAccess is the best i can think of right now that does make it too hard for it to enter the station or navigate it..
#- type: Access # DeltaV - Borg ID chips
# groups:
# - AllAccess #Randomized access would be fun. AllAccess is the best i can think of right now that does make it too hard for it to enter the station or navigate it..
- type: AccessReader
access: [["Command"], ["Robotics"]] # DeltaV - Robotics instead of Research
- type: StartIonStormed

View File

@ -569,7 +569,7 @@
components:
- type: Storage
grid:
- 0,0,5,2
- 0,0,6,2 # DeltaV - Slightly bigger so tests don't fail when Python
- type: EntityTableContainerFill
containers:
storagebase: !type:AllSelector

View File

@ -1288,10 +1288,6 @@
Manipulator: 2
Steel: 5
Bluespace: 2 # DeltaV Bluespace Exists
- type: ReverseEngineering # delta
difficulty: 4
recipes:
- CargoTelepadMachineCircuitboard
- type: entity
id: SodaDispenserMachineCircuitboard

View File

@ -484,7 +484,7 @@
- type: XenoborgsRule
- type: RuleGrids
- type: LoadMapRule
gridPath: /Maps/Shuttles/mothership.yml
gridPath: /Maps/_DV/Shuttles/Event/mothership_dv.yml #DeltaV - Was: /Maps/Shuttles/mothership.yml
- type: entity
parent: BaseXenoborgsRule

View File

@ -813,6 +813,10 @@
loadouts:
- MimeJumpsuit
- MimeJumpskirt
# Begin DeltaV Additions
- MimeTurtleneckPants
- MimeTurtleneckSkirt
# End DeltaV Additions
- type: loadoutGroup
id: MimeBackpack

View File

@ -35,5 +35,5 @@
id: CargoBoards
recipes:
- OreProcessorIndustrialMachineCircuitboard
- CargoTelepadMachineCircuitboard
#- CargoTelepadMachineCircuitboard # DeltaV - Telepad removed for benefit of cargo pilots + logi gameplay flow.
- ShuttleGunKineticCircuitboard

View File

@ -255,7 +255,7 @@
parent: [BaseCircuitboardRecipe]
id: SmartFridgeCircuitboard
result: SmartFridgeCircuitboard
# Bar
- type: latheRecipe
parent: [ BaseCircuitboardRecipe, BaseServiceMachineRecipeCategory ]
@ -301,10 +301,10 @@
## Supply
- type: latheRecipe
parent: [ BaseGoldCircuitboardRecipe, BaseSupplyMachineRecipeCategory ]
id: CargoTelepadMachineCircuitboard
result: CargoTelepadMachineCircuitboard
#- type: latheRecipe # DeltaV - Telepad removed for benefit of cargo pilots + logi gameplay flow.
# parent: [ BaseGoldCircuitboardRecipe, BaseSupplyMachineRecipeCategory ]
# id: CargoTelepadMachineCircuitboard
# result: CargoTelepadMachineCircuitboard
- type: latheRecipe
parent: [ BaseGoldCircuitboardRecipe, BaseSupplyMachineRecipeCategory ]

View File

@ -204,17 +204,18 @@
- WeaponSprayNozzle
- ClothingBackpackWaterTank
- type: technology
id: BluespaceCargoTransport
name: research-technology-bluespace-cargo-transport
icon:
sprite: Structures/cargo_telepad.rsi
state: display
discipline: CivilianServices
tier: 2
cost: 15000
recipeUnlocks:
- CargoTelepadMachineCircuitboard
# DeltaV - Telepad removed for benefit of cargo pilots + logi gameplay flow.
#- type: technology
# id: BluespaceCargoTransport
# name: research-technology-bluespace-cargo-transport
# icon:
# sprite: Structures/cargo_telepad.rsi
# state: display
# discipline: CivilianServices
# tier: 2
# cost: 15000
# recipeUnlocks:
# - CargoTelepadMachineCircuitboard
- type: technology
id: PushHorn

View File

@ -20,6 +20,7 @@
- id: HandHeldMassScanner
- id: PinpointerNuclear
- id: DoorRemoteCustom
- id: WeaponRevolverMateba
- type: entity
id: ClothingBackpackDeathSquadFilledBlack
@ -44,14 +45,13 @@
- id: PinpointerNuclear
- id: DoorRemoteCustom
- id: WeaponPulseRifle
- id: ExGrenade
- id: ExGrenade
- id: ExGrenade
- id: ExGrenade
- id: ExGrenade
- id: WeaponRevolverMateba
- id: SmokeGrenade
- id: SmokeGrenade
- id: SmokeGrenade
- id: SmokeGrenade
- id: SpeedLoaderMagnumUranium
- id: SpeedLoaderMagnumUranium
- id: SpeedLoaderMagnumUranium
- id: SpeedLoaderMagnumUranium
- id: SpeedLoaderMagnumUranium
@ -73,8 +73,6 @@
- id: Multitool
- id: SRTEpsilonInjector
- id: BluespaceLifelineImplanter
- id: SpeedLoaderMagnum
- id: SpeedLoaderMagnum
- id: HandHeldMassScanner
- id: PinpointerNuclear
- id: DoorRemoteCustom
@ -89,3 +87,5 @@
- id: MagazineShotgun
- id: MagazineShotgun
- id: MagazineShotgun
- id: MagazineShotgun
- id: MagazineShotgun

View File

@ -134,12 +134,11 @@
storagebase: !type:AllSelector
children:
- id: SRTBlackInjector
- id: WeaponRevolverMateba
- id: Truncheon
- id: BurnAutoInjector
- id: PunctAutoInjector
- id: PyraAutoInjector
- id: AntiPoisonMedipen
- id: CartridgeMagnumAP
- id: BurnAutoInjector
- id: PunctAutoInjector
- id: PyraAutoInjector

View File

@ -69,3 +69,15 @@
state: icon
content:
- ClothingBackpackDuffelSalvageConscription
- type: thiefBackpackSet
id: MiningDagger
name: mining-voucher-dagger-name
description: mining-voucher-dagger-description
sprite:
sprite: Objects/Weapons/Melee/crusher_dagger.rsi
state: icon
content:
- WeaponCrusherDagger
- MiningDrill
- FireExtinguisher

View File

@ -0,0 +1,35 @@
- type: entity
parent: [Clothing, ClothingSlotBase]
id: ClothingBackpackPlasmaBattery
name: eviscerator backpack
suffix: SRT
description: A backmounted cold fusion reactor to supply a handheld plasma nozzle with enough energy to support a special response team. It probably costs more than most stations.
components:
- type: Tag
tags:
- HeavyPlasmaBattery
- WhitelistChameleon
- type: Sprite
sprite: _DV/Clothing/Back/Backpacks/plasmabackpack.rsi
state: icon
- type: Item
size: Ginormous
- type: Clothing
slots: BACK
sprite: _DV/Clothing/Back/Backpacks/plasmabackpack.rsi
- type: ItemSlots
slots:
item:
priority: 2
whitelist:
tags:
- LaserPlasmaBackpack
- type: Appearance
- type: BatteryAmmoProvider
proto: FusionWeaponPlasmaProjectile
fireCost: 10
- type: Battery
maxCharge: 500
startingCharge: 500
- type: BatterySelfRecharger
autoRechargeRate: 10

View File

@ -42,3 +42,14 @@
sprite: _DV/Clothing/Neck/mantles/salvagemantle.rsi
- type: Clothing
sprite: _DV/Clothing/Neck/mantles/salvagemantle.rsi
- type: entity
parent: ClothingNeckBase
id: ClothingNeckMimeMantle
name: mime's mantle
description: A collared mantle designed for a mime.
components:
- type: Sprite
sprite: _DV/Clothing/Neck/mantles/mimemantle.rsi
- type: Clothing
sprite: _DV/Clothing/Neck/mantles/mimemantle.rsi

View File

@ -529,3 +529,16 @@
sprite: _DV/Clothing/Uniforms/Jumpskirt/pharmacist.rsi
- type: Clothing
sprite: _DV/Clothing/Uniforms/Jumpskirt/pharmacist.rsi
# Mime
- type: entity
parent: ClothingUniformBase
id: ClothingUniformJumpskirtMimeTurtleneckSkirt
name: mime turtleneck skirt
description: A sleeveless turtleneck for mimes.
components:
- type: Sprite
sprite: _DV/Clothing/Uniforms/Jumpskirt/mime_turtleneck_skirt.rsi
- type: Clothing
sprite: _DV/Clothing/Uniforms/Jumpskirt/mime_turtleneck_skirt.rsi

View File

@ -806,3 +806,16 @@
sprite: _DV/Clothing/Uniforms/Jumpsuit/SodaJerk.rsi
- type: Clothing
sprite: _DV/Clothing/Uniforms/Jumpsuit/SodaJerk.rsi
# Mime
- type: entity
parent: ClothingUniformBase
id: ClothingUniformJumpsuitMimeTurtleneckPants
name: mime turtleneck pants
description: A sleeveless turtleneck for mimes.
components:
- type: Sprite
sprite: _DV/Clothing/Uniforms/Jumpsuit/mime_turtleneck_pants.rsi
- type: Clothing
sprite: _DV/Clothing/Uniforms/Jumpsuit/mime_turtleneck_pants.rsi

View File

@ -214,7 +214,7 @@
- id: SalvageExpeditionsComputerCircuitboard
- id: OreProcessorIndustrialMachineCircuitboard
- id: FlatpackerMachineCircuitboard
- id: CargoTelepadMachineCircuitboard
#- id: CargoTelepadMachineCircuitboard
- id: MiniGravityGeneratorCircuitboard
- id: AmmoTechFabCircuitboard
- id: RadarConsoleCircuitboard

View File

@ -561,6 +561,21 @@
- type: RandomHumanoidSpawner
settings: SRTAgentEpsilon
- type: entity
id: RandomHumanoidSpawnerSRTHeavy
name: SRT agent
suffix: ERTRole, SRT, Heavy
components:
- type: Sprite
sprite: _DV/Clothing/OuterClothing/Hardsuits/SRT.rsi
state: icon
- type: RandomMetadata
nameSegments:
- NamesMilitaryLast
nameFormat: name-format-SRTagent
- type: RandomHumanoidSpawner
settings: SRTAgentHeavy
- type: randomHumanoidSettings
id: SRTAgentBlack
parent: EventHumanoidCentcomm
@ -588,3 +603,17 @@
job: SRTAgent
- type: Loadout
prototypes: [ SRTOfficerEpsilon ]
- type: randomHumanoidSettings
id: SRTAgentHeavy
parent: EventHumanoidCentcomm
components:
- type: GhostRole
name: ghost-role-information-centcom-srt-name
description: ghost-role-information-centcom-srt-description
rules: ghost-role-information-nonantagonist-rules
raffle:
settings: default
job: SRTAgent
- type: Loadout
prototypes: [ SRTOfficerHeavy ]

View File

@ -26,3 +26,4 @@
- MiningSurvival
#- MiningDrone
- MiningConscription
- MiningDagger

View File

@ -18,3 +18,25 @@
shader: unshaded
- type: PointLight
color: "#00a6ff"
- type: entity
id: FusionWeaponPlasmaProjectile
name: plasma projectile
parent: BaseBullet
categories: [ HideSpawnMenu ]
components:
- type: Projectile
damage:
types:
Piercing: 5
Caustic: 6
Radiation: 5
Structural: 50
- type: Sprite
sprite: _Impstation/Objects/Weapons/Guns/Projectiles/energybolts.rsi
scale: 0.4, 0.4
layers:
- state: lightstun
shader: unshaded
- type: PointLight
color: "#00a6ff"

View File

@ -0,0 +1,38 @@
- type: entity
id: WeaponPlasmaBackpack
parent: [BaseItem, BaseGunWieldable]
name: eviscerator nozzle
suffix: SRT, Admeme
description: A power-hungry plasma gun, capable of sending a good amount of structure destroying plasma projectiles downrange.
components:
- type: Tag
tags:
- LaserPlasmaBackpack
- type: Sprite
sprite: _DV/Objects/Weapons/Guns/BackFed/plasmaeviscerator.rsi
state: icon
- type: Item
sprite: _DV/Objects/Weapons/Guns/BackFed/plasmaeviscerator.rsi
size: Normal
- type: GunWieldBonus
minAngle: -15
maxAngle: -11
- type: Gun
minAngle: 21
maxAngle: 32
cameraRecoilScalar: 0
fireRate: 6
selectedMode: FullAuto
availableModes:
- FullAuto
soundGunshot:
path: /Audio/Weapons/Guns/Gunshots/ship_svalinn.ogg
- type: Appearance
- type: ClothingSlotAmmoProvider
- type: SlotBasedConnectedContainer
targetSlot: BACK
containerWhitelist:
tags:
- HeavyPlasmaBattery
- type: UseDelay
delay: 1.0

View File

@ -0,0 +1,10 @@
- type: entity
id: wallInvisible
parent: WallPlastitaniumIndestructible
name: invisible wall
suffix: Admeme, DO NOT MAP
components:
- type: Visibility
layer: 2
- type: Sprite
color: "#0000FF" # Blue is the universal colour of invisible.

View File

@ -15,3 +15,21 @@
id: MimeMaskBlushing
equipment:
mask: ClothingMaskBlushingMime
# Jumpsuit
- type: loadout
id: MimeTurtleneckPants
equipment:
jumpsuit: ClothingUniformJumpsuitMimeTurtleneckPants
- type: loadout
id: MimeTurtleneckSkirt
equipment:
jumpsuit: ClothingUniformJumpskirtMimeTurtleneckSkirt
# Neck
- type: loadout
id: MimeMantle
equipment:
neck: ClothingNeckMimeMantle

View File

@ -81,6 +81,7 @@
loadouts:
- ScarfBlack
- ScarfZebra
- MimeMantle
## Musician
- type: loadoutGroup

View File

@ -136,6 +136,9 @@
# Bartender
- ClothingUniformSeniorBartender
- ClothingUniformSeniorBartenderSkirt
# Mime
- ClothingUniformJumpsuitMimeTurtleneckPants
- ClothingUniformJumpskirtMimeTurtleneckSkirt
- type: latheRecipePack
id: WinterCoatsDeltaV

View File

@ -434,6 +434,16 @@
id: ClothingOuterWinterLongMime
result: ClothingOuterWinterLongMime
- type: latheRecipe
parent: BaseJumpsuitRecipe
id: ClothingUniformJumpsuitMimeTurtleneckPants
result: ClothingUniformJumpsuitMimeTurtleneckPants
- type: latheRecipe
parent: BaseJumpsuitRecipe
id: ClothingUniformJumpskirtMimeTurtleneckSkirt
result: ClothingUniformJumpskirtMimeTurtleneckSkirt
# Atmos
- type: latheRecipe
parent: BaseJumpsuitRecipe

View File

@ -371,6 +371,15 @@
equipment:
back: ClothingBackpackDeathSquadFilledEpsilon
- type: startingGear
id: SRTOfficerHeavy
parent: SRTOfficerBase
equipment:
back: ClothingBackpackPlasmaBattery
inhand:
- WeaponPlasmaBackpack
- type: job
id: SRTAgent
name: job-name-srtagent

View File

@ -93,6 +93,9 @@
- type: Tag
id: HudMedicalSecurity #Craftable Corpsman Glasses
- type: Tag
id: HeavyPlasmaBattery # SRT Gear
- type: Tag # prevents ID chips being used for an id computer privileged id
id: IdChip
@ -198,6 +201,9 @@
- type: Tag
id: LoneOpUplink # Used to allow loneop to buy jugsuit
- type: Tag
id: LaserPlasmaBackpack # SRT Gear
- type: Tag
id: CleaningGrenade

View File

@ -15,9 +15,10 @@
sprite: _Starlight/Clothing/Head/Helmets/makeshift.rsi
- type: Clothing
sprite: _Starlight/Clothing/Head/Helmets/makeshift.rsi
- type: Construction
graph: ClothingHeadHelmetMakeshiftGraph
node: helmet
# DeltaV - Make unobtainable
#- type: Construction
# graph: ClothingHeadHelmetMakeshiftGraph
# node: helmet
- type: entity
parent: ClothingHeadHelmetBase
@ -71,4 +72,4 @@
- type: Sprite
sprite: _Starlight/Clothing/Head/Helmets/paladin.rsi
- type: Clothing
sprite: _Starlight/Clothing/Head/Helmets/paladin.rsi
sprite: _Starlight/Clothing/Head/Helmets/paladin.rsi

View File

@ -20,9 +20,10 @@
sprintModifier: 0.90
- type: ExplosionResistance
damageCoefficient: 0.95
- type: Construction
graph: ClothingOuterArmorMakeshiftGraph
node: vest
# DeltaV - Make unobtainable
#- type: Construction
# graph: ClothingOuterArmorMakeshiftGraph
# node: vest
- type: entity
parent: ClothingOuterArmorForged

View File

@ -16,6 +16,7 @@
- type: Sprite
sprite: _Starlight/Objects/Devices/assorted_forge_parts.rsi
state: icon
- type: Construction
graph: AssortedForgeParts
node: finish
# DeltaV - Make unobtainable
#- type: Construction
# graph: AssortedForgeParts
# node: finish

View File

@ -159,9 +159,10 @@
- type: Tag
tags:
- HiltWood
- type: Construction
graph: HiltWoodGraph
node: hilt
# DeltaV - Make unobtainable
#- type: Construction
# graph: HiltWoodGraph
# node: hilt
- type: entity
parent: BaseItem
@ -177,9 +178,10 @@
- type: Tag
tags:
- HiltPlasteel
- type: Construction
graph: HiltPlasteelGraph
node: hilt
# DeltaV - Make unobtainable
#- type: Construction
# graph: HiltPlasteelGraph
# node: hilt
- type: entity
parent: BaseItem
@ -195,9 +197,10 @@
- type: Tag
tags:
- BladeSteel
- type: Construction
graph: BladeSteelGraph
node: blade
# DeltaV - Make unobtainable
#- type: Construction
# graph: BladeSteelGraph
# node: blade
- type: entity
parent: BaseItem
@ -213,9 +216,10 @@
- type: Tag
tags:
- BladePlasteel
- type: Construction
graph: BladePlasteelGraph
node: blade
# DeltaV - Make unobtainable
#- type: Construction
# graph: BladePlasteelGraph
# node: blade
- type: entity
parent: BaseItem
@ -276,9 +280,10 @@
- type: Tag
tags:
- Metal
- type: Construction
graph: ImprovisedShieldGraph
node: shield
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedShieldGraph
# node: shield
- type: entity
parent: BaseItem
@ -381,9 +386,10 @@
- type: Tag
tags:
- Metal
- type: Construction
graph: ClothingOuterArmorImprovisedGraph
node: vest
# DeltaV - Make unobtainable
#- type: Construction
# graph: ClothingOuterArmorImprovisedGraph
# node: vest
- type: entity
parent: BaseItem
@ -444,9 +450,10 @@
- type: Tag
tags:
- Metal
- type: Construction
graph: ClothingHeadHelmetImprovisedGraph
node: helmet
# DeltaV - Make unobtainable
#- type: Construction
# graph: ClothingHeadHelmetImprovisedGraph
# node: helmet
- type: entity
parent: BaseItem

View File

@ -98,7 +98,7 @@
attackRate: 0.50 # Large and heavy but god help you if someone hits you with this thing.
damage:
types:
Blunt: 20
Blunt: 20
- type: ClothingSpeedModifier
walkModifier: 0.7
sprintModifier: 0.5
@ -163,7 +163,7 @@
- type: MeleeWeapon
damage:
types:
Blunt: 12
Blunt: 12
- type: Damageable
damageContainer: Shield
- type: Destructible
@ -299,6 +299,7 @@
SheetSteel:
min: 2
max: 3
- type: Construction
graph: MakeshiftShield
node: makeshiftShield
# DeltaV - Make unobtainable
#- type: Construction
# graph: MakeshiftShield
# node: makeshiftShield

View File

@ -1,7 +1,7 @@
- type: entity
id: CartridgeLightRifleImprovised
name: improvised cartridge (.30 rifle)
description: A handmade rifle bullet, uses phosphorus as a propellent instead of gunpowder.
description: A handmade rifle bullet, uses phosphorus as a propellent instead of gunpowder.
parent: BaseCartridgeLightRifle
components:
- type: CartridgeAmmo
@ -18,6 +18,7 @@
tags:
- Cartridge
- CartridgeLightRifleImprovised
- type: Construction
graph: ImprovisedLightRifleBulletGraph
node: shell
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedLightRifleBulletGraph
# node: shell

View File

@ -18,6 +18,7 @@
tags:
- Cartridge
- CartridgeMagnumImprovised
- type: Construction
graph: ImprovisedMagnumBulletGraph
node: shell
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedMagnumBulletGraph
# node: shell

View File

@ -1,7 +1,7 @@
- type: entity
id: CartridgePistolImprovised
name: improvised cartridge (.35 auto)
description: A handmade pistol bullet, uses phosphorus as a propellent instead of gunpowder which makes it much less effective.
description: A handmade pistol bullet, uses phosphorus as a propellent instead of gunpowder which makes it much less effective.
parent: BaseCartridgePistol
components:
- type: CartridgeAmmo
@ -18,6 +18,7 @@
tags:
- Cartridge
- CartridgePistolImprovised
- type: Construction
graph: ImprovisedPistolBulletGraph
node: shell
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedPistolBulletGraph
# node: shell

View File

@ -22,9 +22,10 @@
- type: Tag
tags:
- MagazinePistolImprovised
- type: Construction
graph: ImprovisedPistolMagazineGraph
node: shell
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedPistolMagazineGraph
# node: shell
- type: entity
id: MagazinePistolSubMachineGunImprovised
@ -51,6 +52,7 @@
- type: Tag
tags:
- MagazineSMGImprovised
- type: Construction
graph: ImprovisedMagazinePistolSubMachineGunGraph
node: shell
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedMagazinePistolSubMachineGunGraph
# node: shell

View File

@ -84,9 +84,10 @@
shape:
- 0,0,1,0
- 0,1,1,1
- type: Construction
graph: ImprovisedPistolGraph
node: shotgun
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedPistolGraph
# node: shotgun
- type: WeaponDismantleOnShoot
dismantleChance: 0.10
selfDamage:

View File

@ -87,9 +87,10 @@
- id: RifleStock
launchAngle: 180
prob: 0.80
- type: Construction
graph: ImprovisedSniperGraph
node: shotgun
# DeltaV - Make unobtainable
#- type: Construction
# graph: ImprovisedSniperGraph
# node: shotgun
- type: entity

View File

@ -19,9 +19,10 @@
sprite: _Starlight/Objects/Weapons/Melee/makeshift_sword.rsi
slots:
- suitStorage
- type: Construction
graph: SwordMakeshiftGraph
node: sword
# DeltaV - Make unobtainable
#- type: Construction
# graph: SwordMakeshiftGraph
# node: sword
- type: entity
name: improvised sword
@ -44,9 +45,10 @@
sprite: _Starlight/Objects/Weapons/Melee/improvised_sword.rsi
slots:
- suitStorage
- type: Construction
graph: SwordImprovisedGraph
node: sword
# DeltaV - Make unobtainable
#- type: Construction
# graph: SwordImprovisedGraph
# node: sword
- type: entity
name: forged sword
@ -137,9 +139,10 @@
sprite: _Starlight/Objects/Weapons/Melee/dawnbreaker.rsi
slots:
- suitStorage
- type: Construction
graph: SwordFlamingGraph
node: sword
# DeltaV - Make unobtainable
#- type: Construction
# graph: SwordFlamingGraph
# node: sword
- type: entity
name: tidebreaker

View File

@ -1,9 +1,9 @@
- type: construction
name: crafting-menu-name-ASSFP
id: AssortedForgeParts
graph: AssortedForgeParts
startNode: start
targetNode: finish
category: construction-category-structures
objectType: Item
description: crafting-menu-text-ASSFP
#- type: construction
# name: crafting-menu-name-ASSFP
# id: AssortedForgeParts
# graph: AssortedForgeParts
# startNode: start
# targetNode: finish
# category: construction-category-structures
# objectType: Item
# description: crafting-menu-text-ASSFP

View File

@ -1,4 +1,5 @@
#- type: construction # DeltaV - made it uncraftable
# DeltaV - Make forged weaponry unobtainable
#- type: construction
# name: crafting-menu-name-FDB
# id: WeaponShotgunForged
# graph: ForgedShotgunGraph
@ -8,17 +9,17 @@
# objectType: Item
# description: crafting-menu-text-FDB
- type: construction
name: crafting-menu-name-IP
id: WeaponPistolImprovised
graph: ImprovisedPistolGraph
startNode: start
targetNode: shotgun
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IP
#- type: construction
# name: crafting-menu-name-IP
# id: WeaponPistolImprovised
# graph: ImprovisedPistolGraph
# startNode: start
# targetNode: shotgun
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IP
#- type: construction # DeltaV - made it uncraftable
#- type: construction
# name: crafting-menu-name-FP
# id: WeaponPistolForged
# graph: ForgedPistolGraph
@ -28,37 +29,37 @@
# objectType: Item
# description: crafting-menu-text-FP
- type: construction
name: crafting-menu-name-IPB
id: CartridgePistolImprovised
graph: ImprovisedPistolBulletGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IPB
#- type: construction
# name: crafting-menu-name-IPB
# id: CartridgePistolImprovised
# graph: ImprovisedPistolBulletGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IPB
- type: construction
name: crafting-menu-name-IPM
id: MagazinePistolImprovised
graph: ImprovisedPistolMagazineGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IPM
#- type: construction
# name: crafting-menu-name-IPM
# id: MagazinePistolImprovised
# graph: ImprovisedPistolMagazineGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IPM
- type: construction
name: crafting-menu-name-IR
id: WeaponRevolverImprovised
graph: ImprovisedRevolverGraph
startNode: start
targetNode: shotgun
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IR
#- type: construction
# name: crafting-menu-name-IR
# id: WeaponRevolverImprovised
# graph: ImprovisedRevolverGraph
# startNode: start
# targetNode: shotgun
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IR
#- type: construction # DeltaV - made it uncraftable
#- type: construction
# name: crafting-menu-name-FR
# id: WeaponRevolverForged
# graph: ForgedRevolverGraph
@ -68,37 +69,36 @@
# objectType: Item
# description: crafting-menu-text-FR
- type: construction
name: crafting-menu-name-IMB
id: CartridgeMagnumImprovised
graph: ImprovisedMagnumBulletGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IMB
#- type: construction
# name: crafting-menu-name-IMB
# id: CartridgeMagnumImprovised
# graph: ImprovisedMagnumBulletGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IMB
- type: construction
name: crafting-menu-name-IMS
id: SpeedLoaderMagnumImprovised
graph: ImprovisedMagnumSpeedLoaderGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IMS
#- type: construction
# name: crafting-menu-name-IMS
# id: SpeedLoaderMagnumImprovised
# graph: ImprovisedMagnumSpeedLoaderGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IMS
- type: construction
name: crafting-menu-name-MB
id: ModularBarrel
graph: ModularBarrelGraph
startNode: start
targetNode: shotgun
category: construction-category-misc
objectType: Item
description: crafting-menu-text-MB
#- type: construction
# name: crafting-menu-name-MB
# id: ModularBarrel
# graph: ModularBarrelGraph
# startNode: start
# targetNode: shotgun
# category: construction-category-misc
# objectType: Item
# description: crafting-menu-text-MB
# Begin DeltaV removal - made it uncraftable
#- type: construction
# name: crafting-menu-name-IS
# id: WeaponSubMachineGunImprovised
@ -118,29 +118,28 @@
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-FS
# End DeltaV removal
- type: construction
name: crafting-menu-name-ISM
id: MagazinePistolSubMachineGunImprovised
graph: ImprovisedMagazinePistolSubMachineGunGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-ISM
#- type: construction
# name: crafting-menu-name-ISM
# id: MagazinePistolSubMachineGunImprovised
# graph: ImprovisedMagazinePistolSubMachineGunGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-ISM
- type: construction
name: crafting-menu-name-IRR
id: WeaponSniperImprovised
graph: ImprovisedSniperGraph
startNode: start
targetNode: shotgun
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IRR
#- type: construction
# name: crafting-menu-name-IRR
# id: WeaponSniperImprovised
# graph: ImprovisedSniperGraph
# startNode: start
# targetNode: shotgun
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IRR
#- type: construction # DeltaV - made it uncraftable
#- type: construction
# name: crafting-menu-name-FRR
# id: WeaponSniperForged
# graph: ForgedSniperGraph
@ -150,65 +149,65 @@
# objectType: Item
# description: crafting-menu-text-FRR
- type: construction
name: crafting-menu-name-IRB
id: CartridgeLightRifleImprovised
graph: ImprovisedLightRifleBulletGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IRB
#- type: construction
# name: crafting-menu-name-IRB
# id: CartridgeLightRifleImprovised
# graph: ImprovisedLightRifleBulletGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IRB
- type: construction
name: crafting-menu-name-IMGB
id: BaseMagazineBoxImprovised
graph: ImprovisedMagazineBoxGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IMGB
#- type: construction
# name: crafting-menu-name-IMGB
# id: BaseMagazineBoxImprovised
# graph: ImprovisedMagazineBoxGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IMGB
- type: construction
name: crafting-menu-name-IMGP
id: MagazineBoxImprovisedPistol
graph: ImprovisedMagazineBoxGraph
startNode: startpistol
targetNode: pistol
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IMGP
#- type: construction
# name: crafting-menu-name-IMGP
# id: MagazineBoxImprovisedPistol
# graph: ImprovisedMagazineBoxGraph
# startNode: startpistol
# targetNode: pistol
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IMGP
- type: construction
name: crafting-menu-name-IMGR
id: MagazineBoxImprovisedRifle
graph: ImprovisedMagazineBoxGraph
startNode: startrifle
targetNode: rifle
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IMGR
#- type: construction
# name: crafting-menu-name-IMGR
# id: MagazineBoxImprovisedRifle
# graph: ImprovisedMagazineBoxGraph
# startNode: startrifle
# targetNode: rifle
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IMGR
- type: construction
name: crafting-menu-name-IMGM
id: MagazineBoxImprovisedMagnum
graph: ImprovisedMagazineBoxGraph
startNode: startmagnum
targetNode: magnum
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IMGM
#- type: construction
# name: crafting-menu-name-IMGM
# id: MagazineBoxImprovisedMagnum
# graph: ImprovisedMagazineBoxGraph
# startNode: startmagnum
# targetNode: magnum
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IMGM
- type: construction
name: crafting-menu-name-IMGS
id: MagazineBoxImprovisedShotgun
graph: ImprovisedMagazineBoxGraph
startNode: startshotgun
targetNode: shotgun
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IMGS
#- type: construction
# name: crafting-menu-name-IMGS
# id: MagazineBoxImprovisedShotgun
# graph: ImprovisedMagazineBoxGraph
# startNode: startshotgun
# targetNode: shotgun
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IMGS
- type: construction
name: crafting-menu-name-MC
@ -290,67 +289,67 @@
# objectType: Item
# description: crafting-menu-text-FO
- type: construction
name: crafting-menu-name-WH
id: HiltWood
graph: HiltWoodGraph
startNode: start
targetNode: hilt
category: construction-category-tools
objectType: Item
description: crafting-menu-text-WH
#- type: construction
# name: crafting-menu-name-WH
# id: HiltWood
# graph: HiltWoodGraph
# startNode: start
# targetNode: hilt
# category: construction-category-tools
# objectType: Item
# description: crafting-menu-text-WH
- type: construction
name: crafting-menu-name-PH
id: HiltPlasteel
graph: HiltPlasteelGraph
startNode: start
targetNode: hilt
category: construction-category-tools
objectType: Item
description: crafting-menu-text-PH
#- type: construction
# name: crafting-menu-name-PH
# id: HiltPlasteel
# graph: HiltPlasteelGraph
# startNode: start
# targetNode: hilt
# category: construction-category-tools
# objectType: Item
# description: crafting-menu-text-PH
- type: construction
name: crafting-menu-name-SB
id: BladeSteel
graph: BladeSteelGraph
startNode: start
targetNode: blade
category: construction-category-tools
objectType: Item
description: crafting-menu-text-SB
#- type: construction
# name: crafting-menu-name-SB
# id: BladeSteel
# graph: BladeSteelGraph
# startNode: start
# targetNode: blade
# category: construction-category-tools
# objectType: Item
# description: crafting-menu-text-SB
- type: construction
name: crafting-menu-name-PB
id: BladePlasteel
graph: BladePlasteelGraph
startNode: start
targetNode: blade
category: construction-category-tools
objectType: Item
description: crafting-menu-text-PB
#- type: construction
# name: crafting-menu-name-PB
# id: BladePlasteel
# graph: BladePlasteelGraph
# startNode: start
# targetNode: blade
# category: construction-category-tools
# objectType: Item
# description: crafting-menu-text-PB
- type: construction
name: crafting-menu-name-MSW
id: SwordMakeshift
graph: SwordMakeshiftGraph
startNode: start
targetNode: sword
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-MSW
#- type: construction
# name: crafting-menu-name-MSW
# id: SwordMakeshift
# graph: SwordMakeshiftGraph
# startNode: start
# targetNode: sword
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-MSW
- type: construction
name: crafting-menu-name-ISW
id: SwordImprovised
graph: SwordImprovisedGraph
startNode: start
targetNode: sword
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-ISW
#- type: construction
# name: crafting-menu-name-ISW
# id: SwordImprovised
# graph: SwordImprovisedGraph
# startNode: start
# targetNode: sword
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-ISW
#- type: construction # DeltaV - made it uncraftable
#- type: construction
# name: crafting-menu-name-FSW
# id: SwordForged
# graph: SwordForgedGraph
@ -360,37 +359,36 @@
# objectType: Item
# description: crafting-menu-text-FSW
- type: construction
name: crafting-menu-name-DSW
id: SwordFlaming
graph: SwordFlamingGraph
startNode: start
targetNode: sword
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-DSW
#- type: construction
# name: crafting-menu-name-DSW
# id: SwordFlaming
# graph: SwordFlamingGraph
# startNode: start
# targetNode: sword
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-DSW
#- type: construction # DeltaV - made it uncraftable
#- type: construction
# name: crafting-menu-name-TSW
# id: ClaymoreForged
# graph: ClaymoreForgedGraph
# startNode: start
# startNode: start
# targetNode: sword
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-TSW
- type: construction
name: crafting-menu-name-ISH
id: ImprovisedShield
graph: ImprovisedShieldGraph
startNode: start
targetNode: shield
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-ISH
#- type: construction
# name: crafting-menu-name-ISH
# id: ImprovisedShield
# graph: ImprovisedShieldGraph
# startNode: start
# targetNode: shield
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-ISH
# Begin DeltaV removal - made it uncraftable
#- type: construction
# name: crafting-menu-name-FSH
# id: ForgedShieldBuckler
@ -430,29 +428,27 @@
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-PSHG
# End DeltaV removal
- type: construction
name: crafting-menu-name-MVT
id: ClothingOuterArmorMakeshift
graph: ClothingOuterArmorMakeshiftGraph
startNode: start
targetNode: vest
category: construction-category-clothing
objectType: Item
description: crafting-menu-text-MVT
#- type: construction
# name: crafting-menu-name-MVT
# id: ClothingOuterArmorMakeshift
# graph: ClothingOuterArmorMakeshiftGraph
# startNode: start
# targetNode: vest
# category: construction-category-clothing
# objectType: Item
# description: crafting-menu-text-MVT
- type: construction
name: crafting-menu-name-IVT
id: ClothingOuterArmorImprovised
graph: ClothingOuterArmorImprovisedGraph
startNode: start
targetNode: vest
category: construction-category-clothing
objectType: Item
description: crafting-menu-text-IVT
#- type: construction
# name: crafting-menu-name-IVT
# id: ClothingOuterArmorImprovised
# graph: ClothingOuterArmorImprovisedGraph
# startNode: start
# targetNode: vest
# category: construction-category-clothing
# objectType: Item
# description: crafting-menu-text-IVT
# Begin DeltaV removal - made it uncraftable
#- type: construction
# name: crafting-menu-name-FVT
# id: ClothingOuterArmorForged
@ -472,29 +468,27 @@
# category: construction-category-clothing
# objectType: Item
# description: crafting-menu-text-PVT
# End DeltaV removal
- type: construction
name: crafting-menu-name-MVTH
id: ClothingHeadHelmetMakeshift
graph: ClothingHeadHelmetMakeshiftGraph
startNode: start
targetNode: helmet
category: construction-category-clothing
objectType: Item
description: crafting-menu-text-MVTH
#- type: construction
# name: crafting-menu-name-MVTH
# id: ClothingHeadHelmetMakeshift
# graph: ClothingHeadHelmetMakeshiftGraph
# startNode: start
# targetNode: helmet
# category: construction-category-clothing
# objectType: Item
# description: crafting-menu-text-MVTH
- type: construction
name: crafting-menu-name-IVTH
id: ClothingHeadHelmetImprovised
graph: ClothingHeadHelmetImprovisedGraph
startNode: start
targetNode: helmet
category: construction-category-clothing
objectType: Item
description: crafting-menu-text-IVTH
#- type: construction
# name: crafting-menu-name-IVTH
# id: ClothingHeadHelmetImprovised
# graph: ClothingHeadHelmetImprovisedGraph
# startNode: start
# targetNode: helmet
# category: construction-category-clothing
# objectType: Item
# description: crafting-menu-text-IVTH
# Begin DeltaV removal - made it uncraftable
#- type: construction
# name: crafting-menu-name-FVTH
# id: ClothingHeadHelmetForged
@ -514,14 +508,13 @@
# category: construction-category-clothing
# objectType: Item
# description: crafting-menu-text-PVTH
# End DeltaV removal
- type: construction
name: crafting-menu-name-IRS
id: SpeedLoaderMagnumLeverImprovised
graph: SpeedLoaderMagnumLeverImprovisedGraph
startNode: start
targetNode: shell
category: construction-category-weapons
objectType: Item
description: crafting-menu-text-IRS
#- type: construction
# name: crafting-menu-name-IRS
# id: SpeedLoaderMagnumLeverImprovised
# graph: SpeedLoaderMagnumLeverImprovisedGraph
# startNode: start
# targetNode: shell
# category: construction-category-weapons
# objectType: Item
# description: crafting-menu-text-IRS

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 885 B

View File

@ -0,0 +1,26 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Made by einknusprigestoast",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "icon"
},
{
"name": "equipped-BACKPACK",
"directions": 4
},
{
"name": "inhand-left",
"directions": 4
},
{
"name": "inhand-right",
"directions": 4
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 720 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 B

View File

@ -0,0 +1,18 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Made by Velitation.",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "icon"
},
{
"name": "equipped-NECK",
"directions": 4
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 731 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

View File

@ -0,0 +1,26 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Edited by Velitation. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14, resprited by KingFroozy (github)",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "icon"
},
{
"name": "equipped-INNERCLOTHING",
"directions": 4
},
{
"name": "inhand-left",
"directions": 4
},
{
"name": "inhand-right",
"directions": 4
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 786 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 542 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

View File

@ -0,0 +1,26 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Edited by Velitation. Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, resprited by KingFroozy (github)",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "icon"
},
{
"name": "equipped-INNERCLOTHING",
"directions": 4
},
{
"name": "inhand-left",
"directions": 4
},
{
"name": "inhand-right",
"directions": 4
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 314 B

View File

@ -0,0 +1,30 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, wield sprites by RiceMar1244, then modified by einknusprigestoast",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "icon"
},
{
"name": "inhand-left",
"directions": 4
},
{
"name": "inhand-right",
"directions": 4
},
{
"name": "wielded-inhand-left",
"directions": 4
},
{
"name": "wielded-inhand-right",
"directions": 4
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B