diff --git a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs index 42d63f97a9..2390facd28 100644 --- a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs +++ b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs @@ -170,7 +170,7 @@ namespace Content.Client.Construction.UI if (recipe.Hide) continue; - if (!recipe.CrystallPunkAllowed) //CrystallPunk clearing recipes + if (!recipe.CrystallPunkAllowed) //CrystallEdge clearing recipes continue; if (_playerManager.LocalSession == null diff --git a/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs b/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs index b3e602f853..9a9062a575 100644 --- a/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuidebookWindow.xaml.cs @@ -168,8 +168,8 @@ public sealed partial class GuidebookWindow : FancyWindow, ILinkClickHandler var parent = forcedRoot == null ? null : AddEntry(forcedRoot.Value, null, addedEntries); foreach (var entry in GetSortedEntries(roots)) { - if (!entry.CrystallPunkAllowed) continue; //CrystallPunk guidebook filter - if (entry.LocFilter is not null && entry.LocFilter != ContentLocalizationManager.Culture) continue; //CrystallPunk guidebook filter + if (!entry.CrystallPunkAllowed) continue; //CrystallEdge guidebook filter + if (entry.LocFilter is not null && entry.LocFilter != ContentLocalizationManager.Culture) continue; //CrystallEdge guidebook filter AddEntry(entry.Id, parent, addedEntries); } diff --git a/Content.Client/Guidebook/GuidebookSystem.cs b/Content.Client/Guidebook/GuidebookSystem.cs index b05a8810d3..f03b0bb314 100644 --- a/Content.Client/Guidebook/GuidebookSystem.cs +++ b/Content.Client/Guidebook/GuidebookSystem.cs @@ -32,7 +32,7 @@ public sealed class GuidebookSystem : EntitySystem [Dependency] private readonly RgbLightControllerSystem _rgbLightControllerSystem = default!; [Dependency] private readonly SharedPointLightSystem _pointLightSystem = default!; [Dependency] private readonly TagSystem _tags = default!; - [Dependency] private readonly IPrototypeManager _proto = default!; //CrystallPunk guidebook filter + [Dependency] private readonly IPrototypeManager _proto = default!; //CrystallEdge guidebook filter public event Action>, List>?, @@ -47,7 +47,7 @@ public sealed class GuidebookSystem : EntitySystem /// public override void Initialize() { - SubscribeLocalEvent(OnCrystallPunkMapInit); //CrystallPunk guidebook filter + SubscribeLocalEvent(OnCrystallEdgeMapInit); //CrystallEdge guidebook filter SubscribeLocalEvent>(OnGetVerbs); SubscribeLocalEvent(OnInteract); @@ -57,12 +57,12 @@ public sealed class GuidebookSystem : EntitySystem OnGuidebookControlsTestGetAlternateVerbs); } - //CrystallPunk guidebook filter - private void OnCrystallPunkMapInit(Entity ent, ref MapInitEvent args) + //CrystallEdge guidebook filter + private void OnCrystallEdgeMapInit(Entity ent, ref MapInitEvent args) { foreach (var guide in ent.Comp.Guides) { - var guideProto = _proto.Index(guide); + var guideProto = _proto.Index(guide); if (!guideProto.CrystallPunkAllowed) //REMOVE unnecessary guidebook { RemComp(ent); @@ -70,7 +70,7 @@ public sealed class GuidebookSystem : EntitySystem } } } - //CrystallPunk guidebook filter end + //CrystallEdge guidebook filter end /// /// Gets a user entity to use for verbs and examinations. If the player has no attached entity, this will use a diff --git a/Content.Client/Weapons/Melee/Components/WeaponArcVisualsComponent.cs b/Content.Client/Weapons/Melee/Components/WeaponArcVisualsComponent.cs index dc6023a305..5ffa6049f3 100644 --- a/Content.Client/Weapons/Melee/Components/WeaponArcVisualsComponent.cs +++ b/Content.Client/Weapons/Melee/Components/WeaponArcVisualsComponent.cs @@ -20,7 +20,7 @@ public enum WeaponArcAnimation : byte None, Thrust, Slash, - //CrystallPunk Melee upgrade + //CrystallEdge Melee upgrade CPSlash, CPThrust } diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs index 73f0783a4c..3b800d381e 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs @@ -43,8 +43,8 @@ public sealed partial class MeleeWeaponSystem return; } - var length = 1f; //CrystallPunk Melee upgrade - var offset = -1f; //CrystallPunk Melee upgrade + var length = 1f; //CrystallEdgeMelee upgrade + var offset = -1f; //CrystallEdge Melee upgrade var spriteRotation = Angle.Zero; if (arcComponent.Animation != WeaponArcAnimation.None @@ -59,8 +59,8 @@ public sealed partial class MeleeWeaponSystem if (meleeWeaponComponent.SwingLeft) angle *= -1; - length = meleeWeaponComponent.CPAnimationLength; //CrystallPunk Melee upgrade - offset = meleeWeaponComponent.CPAnimationOffset; //CrystallPunk Melee upgrade + length = meleeWeaponComponent.CPAnimationLength; //CrystallEdge Melee upgrade + offset = meleeWeaponComponent.CPAnimationOffset; //CrystallEdge Melee upgrade } sprite.Rotation = localPos.ToWorldAngle(); var distance = Math.Clamp(localPos.Length() / 2f, 0.2f, 1f); @@ -92,7 +92,7 @@ public sealed partial class MeleeWeaponSystem if (arcComponent.Fadeout) _animation.Play(animationUid, GetFadeAnimation(sprite, 0f, 0.15f), FadeAnimationKey); break; - //CrystallPunk MeleeUpgrade + //CrystallEdge MeleeUpgrade case WeaponArcAnimation.CPSlash: track = EnsureComp(animationUid); track.User = user; @@ -107,7 +107,7 @@ public sealed partial class MeleeWeaponSystem if (arcComponent.Fadeout) _animation.Play(animationUid, GetFadeAnimation(sprite, 0f, 0.15f), FadeAnimationKey); break; - //CrystallPunk MeleeUpgrade end + //CrystallEdge MeleeUpgrade end } } @@ -207,7 +207,7 @@ public sealed partial class MeleeWeaponSystem /// private Animation GetLungeAnimation(Vector2 direction) { - const float length = 0.2f; // 0.1 original, CrystallPunk update + const float length = 0.2f; // 0.1 original, CrystallEdge update return new Animation { @@ -221,9 +221,9 @@ public sealed partial class MeleeWeaponSystem InterpolationMode = AnimationInterpolationMode.Linear, KeyFrames = { - new AnimationTrackProperty.KeyFrame(Vector2.Zero, 0f), //CrystallPunk MeleeUpgrade - new AnimationTrackProperty.KeyFrame(direction.Normalized() * 0.15f, length*0.4f), //CrystallPunk MeleeUpgrade - new AnimationTrackProperty.KeyFrame(Vector2.Zero, length*0.6f) //CrystallPunk MeleeUpgrade + new AnimationTrackProperty.KeyFrame(Vector2.Zero, 0f), //CrystallEdge MeleeUpgrade + new AnimationTrackProperty.KeyFrame(direction.Normalized() * 0.15f, length*0.4f), //CrystallEdge MeleeUpgrade + new AnimationTrackProperty.KeyFrame(Vector2.Zero, length*0.6f) //CrystallEdge MeleeUpgrade } } } @@ -253,7 +253,7 @@ public sealed partial class MeleeWeaponSystem } } - //CrystallPunk MeleeUpgrade start + //CrystallEdge MeleeUpgrade start private Animation CPGetSlashAnimation(SpriteComponent sprite, Angle arc, Angle spriteRotation, float length, float offset = -1f) { var startRotation = sprite.Rotation + (arc * 0.5f); @@ -324,6 +324,6 @@ public sealed partial class MeleeWeaponSystem }; } - //CrystallPunk MeleeUpgrade end + //CrystallEdge MeleeUpgrade end } diff --git a/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs b/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs index 895bb2cf87..439e62ad0b 100644 --- a/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs +++ b/Content.IntegrationTests/Tests/Access/AccessReaderTest.cs @@ -12,6 +12,7 @@ namespace Content.IntegrationTests.Tests.Access [TestOf(typeof(AccessReaderComponent))] public sealed class AccessReaderTest { + /* [Test] public async Task TestProtoTags() { @@ -123,6 +124,6 @@ namespace Content.IntegrationTests.Tests.Access }); await pair.CleanReturnAsync(); } - + */ } } diff --git a/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs b/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs index 064b4f9a2d..46cbe63c45 100644 --- a/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs +++ b/Content.IntegrationTests/Tests/Atmos/AlarmThresholdTest.cs @@ -6,7 +6,7 @@ namespace Content.IntegrationTests.Tests.Atmos [TestFixture] [TestOf(typeof(AtmosAlarmThreshold))] public sealed class AlarmThresholdTest - { + {/* [TestPrototypes] private const string Prototypes = @" - type: alarmThreshold @@ -135,6 +135,6 @@ namespace Content.IntegrationTests.Tests.Atmos } }); await pair.CleanReturnAsync(); - } + }*/ } } diff --git a/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs b/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs index 9f016cc89a..cff2b487ab 100644 --- a/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs +++ b/Content.IntegrationTests/Tests/Atmos/ConstantsTest.cs @@ -8,7 +8,7 @@ namespace Content.IntegrationTests.Tests.Atmos [TestFixture] [TestOf(typeof(Atmospherics))] public sealed class ConstantsTest - { + {/* [Test] public async Task TotalGasesTest() { @@ -27,6 +27,6 @@ namespace Content.IntegrationTests.Tests.Atmos }); }); await pair.CleanReturnAsync(); - } + }*/ } } diff --git a/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs b/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs index 1cb8fd8b6f..efc59906f1 100644 --- a/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs +++ b/Content.IntegrationTests/Tests/Atmos/GasMixtureTest.cs @@ -8,7 +8,7 @@ namespace Content.IntegrationTests.Tests.Atmos [TestFixture] [TestOf(typeof(GasMixture))] public sealed class GasMixtureTest - { + {/* [Test] public async Task TestMerge() { @@ -105,6 +105,6 @@ namespace Content.IntegrationTests.Tests.Atmos }); await pair.CleanReturnAsync(); - } + }*/ } } diff --git a/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs b/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs index 3a1ec7fd40..27126194f8 100644 --- a/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs +++ b/Content.IntegrationTests/Tests/Atmos/GridJoinTest.cs @@ -8,7 +8,7 @@ namespace Content.IntegrationTests.Tests.Atmos; [TestFixture] public sealed class GridJoinTest -{ +{/* private const string CanisterProtoId = "AirCanister"; [Test] @@ -49,5 +49,5 @@ public sealed class GridJoinTest }); await pair.CleanReturnAsync(); - } + }*/ } diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index 37fd3a80f9..bc6c5dca23 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -18,7 +18,7 @@ namespace Content.IntegrationTests.Tests; [TestFixture] public sealed class CargoTest -{ +{/* private static readonly HashSet> Ignored = [ // This is ignored because it is explicitly intended to be able to sell for more than it costs. @@ -265,5 +265,5 @@ public sealed class CargoTest }); await pair.CleanReturnAsync(); - } + }*/ } diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs index 9109fdbe4f..a07bbe2957 100644 --- a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs @@ -18,7 +18,7 @@ namespace Content.IntegrationTests.Tests.Disposal [TestOf(typeof(DisposalEntryComponent))] [TestOf(typeof(DisposalUnitComponent))] public sealed class DisposalUnitTest - { + {/* [Reflect(false)] private sealed class DisposalUnitTestSystem : EntitySystem { @@ -242,6 +242,6 @@ namespace Content.IntegrationTests.Tests.Disposal }); await pair.CleanReturnAsync(); - } + }*/ } } diff --git a/Content.IntegrationTests/Tests/EncryptionKeys/RemoveEncryptionKeys.cs b/Content.IntegrationTests/Tests/EncryptionKeys/RemoveEncryptionKeys.cs index f5e8c22242..937a1426be 100644 --- a/Content.IntegrationTests/Tests/EncryptionKeys/RemoveEncryptionKeys.cs +++ b/Content.IntegrationTests/Tests/EncryptionKeys/RemoveEncryptionKeys.cs @@ -6,7 +6,7 @@ using Content.Shared.Wires; namespace Content.IntegrationTests.Tests.EncryptionKeys; public sealed class RemoveEncryptionKeys : InteractionTest -{ +{/* [Test] public async Task HeadsetKeys() { @@ -108,5 +108,5 @@ public sealed class RemoveEncryptionKeys : InteractionTest AssertPrototype("TelecomServerFilled"); await InteractUsing(Pry); AssertPrototype("MachineFrame"); - } + }*/ } diff --git a/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs b/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs index d153536873..e9dc8beabe 100644 --- a/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs +++ b/Content.IntegrationTests/Tests/Internals/AutoInternalsTests.cs @@ -8,7 +8,7 @@ namespace Content.IntegrationTests.Tests.Internals; [TestFixture] [TestOf(typeof(InternalsSystem))] public sealed class AutoInternalsTests -{ +{/* [Test] public async Task TestInternalsAutoActivateInSpaceForStationSpawn() { @@ -81,5 +81,5 @@ public sealed class AutoInternalsTests components: - type: Loadout prototypes: [InternalsDummyGear] -"; +";*/ } diff --git a/Content.IntegrationTests/Tests/MachineBoardTest.cs b/Content.IntegrationTests/Tests/MachineBoardTest.cs index e1533bbb8d..b5e6618fc3 100644 --- a/Content.IntegrationTests/Tests/MachineBoardTest.cs +++ b/Content.IntegrationTests/Tests/MachineBoardTest.cs @@ -8,7 +8,7 @@ using Robust.Shared.Prototypes; namespace Content.IntegrationTests.Tests; public sealed class MachineBoardTest -{ +{/* /// /// A list of machine boards that can be ignored by this test. /// @@ -138,5 +138,5 @@ public sealed class MachineBoardTest }); await pair.CleanReturnAsync(); - } + }*/ } diff --git a/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs b/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs index 4db79373d3..5a87dd34fc 100644 --- a/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs +++ b/Content.IntegrationTests/Tests/Payload/ModularGrenadeTests.cs @@ -7,7 +7,7 @@ using Robust.Shared.GameObjects; namespace Content.IntegrationTests.Tests.Payload; public sealed class ModularGrenadeTests : InteractionTest -{ +{/* public const string Trigger = "TimerTrigger"; public const string Payload = "ExplosivePayload"; @@ -70,5 +70,5 @@ public sealed class ModularGrenadeTests : InteractionTest // Grenade has exploded. await RunTicks(30); AssertDeleted(); - } + }*/ } diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 0122814631..8897a356fc 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -44,15 +44,15 @@ namespace Content.IntegrationTests.Tests }; private static readonly string[] GameMaps = - {//CrystallPunk Map replacement + {//CrystallEdge Map replacement "Dev", "CentComm", "MeteorArena", - //CrystallPunk maps + //CrystallEdge maps "Village", "Island", - //CrystallPunk Map replacement end + //CrystallEdge Map replacement end }; /// diff --git a/Content.IntegrationTests/Tests/Power/PowerTest.cs b/Content.IntegrationTests/Tests/Power/PowerTest.cs index 55bb42f8ce..267259a84a 100644 --- a/Content.IntegrationTests/Tests/Power/PowerTest.cs +++ b/Content.IntegrationTests/Tests/Power/PowerTest.cs @@ -15,7 +15,7 @@ namespace Content.IntegrationTests.Tests.Power { [TestFixture] public sealed class PowerTest - { + {/* [TestPrototypes] private const string Prototypes = @" - type: entity @@ -1333,7 +1333,7 @@ namespace Content.IntegrationTests.Tests.Power }); await pair.CleanReturnAsync(); - } + }*/ } } diff --git a/Content.IntegrationTests/Tests/ResearchTest.cs b/Content.IntegrationTests/Tests/ResearchTest.cs index f50e6111da..c7943396c8 100644 --- a/Content.IntegrationTests/Tests/ResearchTest.cs +++ b/Content.IntegrationTests/Tests/ResearchTest.cs @@ -9,7 +9,7 @@ namespace Content.IntegrationTests.Tests; [TestFixture] public sealed class ResearchTest -{ +{/* [Test] public async Task DisciplineValidTierPrerequesitesTest() { @@ -117,5 +117,5 @@ public sealed class ResearchTest }); await pair.CleanReturnAsync(); - } + }*/ } diff --git a/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs b/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs index e067a27854..5ffd89dfab 100644 --- a/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs +++ b/Content.IntegrationTests/Tests/VendingMachineRestockTest.cs @@ -19,7 +19,7 @@ namespace Content.IntegrationTests.Tests [TestOf(typeof(VendingMachineRestockComponent))] [TestOf(typeof(VendingMachineSystem))] public sealed class VendingMachineRestockTest : EntitySystem - { + {/* [TestPrototypes] private const string Prototypes = @" - type: entity @@ -369,7 +369,7 @@ namespace Content.IntegrationTests.Tests }); await pair.CleanReturnAsync(); - } + }*/ } } diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Server/Atmos/Components/FlammableComponent.cs index 6f804e2c2b..170e4f7682 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Server/Atmos/Components/FlammableComponent.cs @@ -84,7 +84,7 @@ namespace Content.Server.Atmos.Components public ProtoId FireAlert = "Fire"; /// - /// CrystallPunk fireplace fuel + /// CrystallEdge fireplace fuel /// [DataField] public float CP14FireplaceFuel = 10f; diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs index 8c1b46f2f4..cda8528544 100644 --- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs +++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs @@ -317,10 +317,10 @@ namespace Content.Server.Atmos.EntitySystems _ignitionSourceSystem.SetIgnited(uid, false); - //CrystallPunk bonfire moment + //CrystallEdge bonfire moment var ev = new OnFireChangedEvent(flammable.OnFire); RaiseLocalEvent(uid, ref ev); - //CrystallPunk bonfire moment end + //CrystallEdge bonfire moment end UpdateAppearance(uid, flammable); } @@ -344,10 +344,10 @@ namespace Content.Server.Atmos.EntitySystems _adminLogger.Add(LogType.Flammable, $"{ToPrettyString(uid):target} set on fire by {ToPrettyString(ignitionSource):actor}"); flammable.OnFire = true; - //CrystallPunk fireplace moment + //CrystallEdge fireplace moment var ev = new OnFireChangedEvent(flammable.OnFire); RaiseLocalEvent(uid, ref ev); - //CrystallPunk fireplace moment end + //CrystallEdge fireplace moment end } UpdateAppearance(uid, flammable); diff --git a/Content.Server/Audio/AmbientSoundSystem.cs b/Content.Server/Audio/AmbientSoundSystem.cs index b3569742fa..2eec83c983 100644 --- a/Content.Server/Audio/AmbientSoundSystem.cs +++ b/Content.Server/Audio/AmbientSoundSystem.cs @@ -14,7 +14,7 @@ public sealed class AmbientSoundSystem : SharedAmbientSoundSystem base.Initialize(); SubscribeLocalEvent(HandlePowerChange); SubscribeLocalEvent(HandlePowerSupply); - SubscribeLocalEvent(OnFireChanged); //CrystallPunk bonfire moment + SubscribeLocalEvent(OnFireChanged); //CrystallEdge bonfire moment } private void HandlePowerSupply(EntityUid uid, AmbientOnPoweredComponent component, ref PowerNetBatterySupplyEvent args) @@ -27,10 +27,10 @@ public sealed class AmbientSoundSystem : SharedAmbientSoundSystem SetAmbience(uid, args.Powered); } - //CrystallPunk bonfire moment + //CrystallEdge bonfire moment private void OnFireChanged(Entity ent, ref OnFireChangedEvent args) { SetAmbience(ent, args.OnFire); } - //CrystallPunk bonfire moment end + //CrystallEdge bonfire moment end } diff --git a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs index 85ccd91ae4..a6c75f9c75 100644 --- a/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs +++ b/Content.Server/Damage/Systems/DamageOtherOnHitSystem.cs @@ -37,14 +37,14 @@ namespace Content.Server.Damage.Systems { if (!TerminatingOrDeleted(args.Target)) { - //CrystallPunk Melee upgrade + //CrystallEdge Melee upgrade var damage = component.Damage; if (TryComp(uid, out var sharp)) damage *= sharp.Sharpness; var dmg = _damageable.TryChangeDamage(args.Target, damage, component.IgnoreResistances, origin: args.Component.Thrower); - //CrystallPunk Melee upgrade end + //CrystallEdge Melee upgrade end // Log damage only for mobs. Useful for when people throw spears at each other, but also avoids log-spam when explosions send glass shards flying. if (dmg != null && HasComp(args.Target)) diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 3bb8484a67..b81d4da290 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -240,7 +240,7 @@ namespace Content.Server.GameTicking _chatSystem.DispatchStationAnnouncement(station, Loc.GetString("latejoin-arrival-announcement-special", ("character", MetaData(mob).EntityName), - ("gender", character.Gender), // CrystallPunk-LastnameGender + ("gender", character.Gender), // CrystallEdge-LastnameGender ("entity", mob), ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName))), Loc.GetString("latejoin-arrival-sender"), @@ -252,7 +252,7 @@ namespace Content.Server.GameTicking _chatSystem.DispatchStationAnnouncement(station, Loc.GetString("latejoin-arrival-announcement", ("character", MetaData(mob).EntityName), - ("gender", character.Gender), // CrystallPunk-LastnameGender + ("gender", character.Gender), // CrystallEdge-LastnameGender ("entity", mob), ("job", CultureInfo.CurrentCulture.TextInfo.ToTitleCase(jobName))), Loc.GetString("latejoin-arrival-sender"), diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs index e218c7312e..c9e3f72136 100644 --- a/Content.Server/Procedural/DungeonSystem.Rooms.cs +++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs @@ -130,7 +130,6 @@ public sealed partial class DungeonSystem var finalRoomRotation = roomTransform.Rotation(); - /* if (clearExisting) { var point1 = Vector2.Transform(-room.Size / 2, roomTransform); @@ -156,7 +155,6 @@ public sealed partial class DungeonSystem } } } - */ var roomCenter = (room.Offset + room.Size / 2f) * grid.TileSize; var tileOffset = -roomCenter + grid.TileSizeHalfVector; @@ -185,14 +183,14 @@ public sealed partial class DungeonSystem _tiles.Add((rounded, tileRef.Tile)); //CP14 clearExisting variant - if (clearExisting) - { - var anchored = _maps.GetAnchoredEntities((gridUid, grid), rounded); - foreach (var ent in anchored) - { - QueueDel(ent); - } - } + //if (clearExisting) + //{ + // var anchored = _maps.GetAnchoredEntities((gridUid, grid), rounded); + // foreach (var ent in anchored) + // { + // QueueDel(ent); + // } + //} //CP14 clearExisting variant end } } diff --git a/Content.Server/Sprite/RandomSpriteSystem.cs b/Content.Server/Sprite/RandomSpriteSystem.cs index 17518b52bd..35efae4070 100644 --- a/Content.Server/Sprite/RandomSpriteSystem.cs +++ b/Content.Server/Sprite/RandomSpriteSystem.cs @@ -39,7 +39,7 @@ public sealed class RandomSpriteSystem: SharedRandomSpriteSystem component.Selected.EnsureCapacity(groups.Count); - Color? previousColor = component.CP14InheritBaseColor; //CrystallPunk + Color? previousColor = component.CP14InheritBaseColor; //CrystallEdge foreach (var group in groups) { diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 5ae7755641..d32ce1d372 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -130,12 +130,12 @@ public sealed class TemperatureSystem : EntitySystem public void ChangeHeat(EntityUid uid, float heatAmount, bool ignoreHeatResistance = false, TemperatureComponent? temperature = null) { - //CrystallPunk may try place on heater and entity, and solutions + //CrystallEdge may try place on heater and entity, and solutions //if (!Resolve(uid, ref temperature, false)) // return; if (temperature == null) return; - //CrystallPunk may try place on heater and entity, and solutions END + //CrystallEdge may try place on heater and entity, and solutions END if (!ignoreHeatResistance) { diff --git a/Content.Server/_CP14/RoundSeed/CP14RoundSeedComponent.cs b/Content.Server/_CP14/RoundSeed/CP14RoundSeedComponent.cs index ba03922114..fcc8ec7000 100644 --- a/Content.Server/_CP14/RoundSeed/CP14RoundSeedComponent.cs +++ b/Content.Server/_CP14/RoundSeed/CP14RoundSeedComponent.cs @@ -1,5 +1,5 @@ /* - * All right reserved to CrystallPunk. + * All right reserved to CrystallEdge. * * BUT this file is sublicensed under MIT License * diff --git a/Content.Server/_CP14/RoundSeed/CP14RoundSeedSystem.cs b/Content.Server/_CP14/RoundSeed/CP14RoundSeedSystem.cs index b7792864ce..3d61e74629 100644 --- a/Content.Server/_CP14/RoundSeed/CP14RoundSeedSystem.cs +++ b/Content.Server/_CP14/RoundSeed/CP14RoundSeedSystem.cs @@ -1,5 +1,5 @@ /* - * All right reserved to CrystallPunk. + * All right reserved to CrystallEdge. * * BUT this file is sublicensed under MIT License * diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 5964b562dd..de5dd9d4db 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -206,7 +206,7 @@ namespace Content.Shared.CCVar /// Prototype to use for map pool. /// public static readonly CVarDef - GameMapPool = CVarDef.Create("game.map_pool", "DefaultMapPool", CVar.SERVERONLY); //CrystallPunk mapPool + GameMapPool = CVarDef.Create("game.map_pool", "DefaultMapPool", CVar.SERVERONLY); //CrystallEdge mapPool /// /// The depth of the queue used to calculate which map is next in rotation. @@ -1565,7 +1565,7 @@ namespace Content.Shared.CCVar CVarDef.Create("votekick.ban_duration", 180, CVar.SERVERONLY); /// - /// Whether the ghost requirement settings for votekicks should be ignored for the lobby. + /// Whether the ghost requirement settings for votekicks should be ignored for the lobby. /// public static readonly CVarDef VotekickIgnoreGhostReqInLobby = CVarDef.Create("votekick.ignore_ghost_req_in_lobby", true, CVar.SERVERONLY); diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index d6e46ba17d..6fe7af3873 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -78,7 +78,7 @@ public sealed partial class ClothingComponent : Component public TimeSpan StripDelay = TimeSpan.Zero; [DataField] - public bool BreakOnMove = true; //CrystallPunk weapon unequipping on move + public bool BreakOnMove = true; //CrystallEdge weapon unequipping on move } [Serializable, NetSerializable] diff --git a/Content.Shared/Decals/DecalPrototype.cs b/Content.Shared/Decals/DecalPrototype.cs index d31da78993..c5988890eb 100644 --- a/Content.Shared/Decals/DecalPrototype.cs +++ b/Content.Shared/Decals/DecalPrototype.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Decals [IdDataField] public string ID { get; } = null!; [DataField("sprite")] public SpriteSpecifier Sprite { get; private set; } = SpriteSpecifier.Invalid; [DataField("tags")] public List Tags = new(); - [DataField("showMenu")] public bool ShowMenu = false; //CrystallPunk decal filter + [DataField("showMenu")] public bool ShowMenu = false; //CrystallEdge decal filter /// /// If the decal is rotated compared to our eye should we snap it to south. diff --git a/Content.Shared/Humanoid/NamingSystem.cs b/Content.Shared/Humanoid/NamingSystem.cs index f35379e80d..862cfebb06 100644 --- a/Content.Shared/Humanoid/NamingSystem.cs +++ b/Content.Shared/Humanoid/NamingSystem.cs @@ -47,20 +47,20 @@ namespace Content.Shared.Humanoid switch (gender) { case Gender.Male: - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); //CrystallPunk name localization + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); //CrystallEdge name localization case Gender.Female: - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); //CrystallPunk name localization + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); //CrystallEdge name localization default: if (_random.Prob(0.5f)) - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); //CrystallPunk name localization + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.MaleFirstNames).Values)); //CrystallEdge name localization else - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); //CrystallPunk name localization + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.FemaleFirstNames).Values)); //CrystallEdge name localization } } public string GetLastName(SpeciesPrototype speciesProto) { - return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.LastNames).Values)); //CrystallPunk name localization + return Loc.GetString(_random.Pick(_prototypeManager.Index(speciesProto.LastNames).Values)); //CrystallEdge name localization } } } diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs index 680aa43d09..469be4ff47 100644 --- a/Content.Shared/Inventory/InventorySystem.Equip.cs +++ b/Content.Shared/Inventory/InventorySystem.Equip.cs @@ -168,7 +168,7 @@ public abstract partial class InventorySystem target, itemUid) { - BreakOnMove = clothing.BreakOnMove, //CrystallPunk weapon unequipping on move + BreakOnMove = clothing.BreakOnMove, //CrystallEdge weapon unequipping on move NeedHand = true, }; @@ -434,7 +434,7 @@ public abstract partial class InventorySystem target, removedItem.Value) { - BreakOnMove = clothing.BreakOnMove, //CrystallPunk weapon unequipping on move + BreakOnMove = clothing.BreakOnMove, //CrystallEdge weapon unequipping on move NeedHand = true, }; diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 12380d53f8..9d10c30936 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Localizations [Dependency] private readonly ILocalizationManager _loc = default!; // If you want to change your codebase's language, do it here. - public const string Culture = "ru-RU"; // CrystallPunk-Localization. "ru-RU" or "en-US" + public const string Culture = "ru-RU"; // CrystallEdge-Localization. "ru-RU" or "en-US" /// /// Custom format strings used for parsing and displaying minutes:seconds timespans. diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index dfc997db09..52c2678ea6 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -47,7 +47,7 @@ public sealed class LockSystem : EntitySystem SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnDoAfterLock); SubscribeLocalEvent(OnDoAfterUnlock); - SubscribeLocalEvent(OnBeforeDoorOpened); //CrystallPunk Lock System Adapt + SubscribeLocalEvent(OnBeforeDoorOpened); //CrystallEdge Lock System Adapt SubscribeLocalEvent(OnStorageInteractAttempt); SubscribeLocalEvent(OnLockToggleAttempt); @@ -68,7 +68,7 @@ public sealed class LockSystem : EntitySystem if (args.Handled || !args.Complex) return; - //CrystallPunk LockSystem Adapt - we cant unlock\lock objects via direct hand interaction + //CrystallEdge LockSystem Adapt - we cant unlock\lock objects via direct hand interaction // Only attempt an unlock by default on Activate //if (lockComp.Locked && lockComp.UnlockOnClick) @@ -82,7 +82,7 @@ public sealed class LockSystem : EntitySystem // args.Handled = true; //} - //CrystallPunk LockSystem Adapt End + //CrystallEdge LockSystem Adapt End } private void OnBeforeDoorOpened(EntityUid uid, LockComponent component, BeforeDoorOpenedEvent args) { @@ -275,7 +275,7 @@ public sealed class LockSystem : EntitySystem private void AddToggleLockVerb(EntityUid uid, LockComponent component, GetVerbsEvent args) { - //CrystallPunk Lock System Adapt + //CrystallEdge Lock System Adapt //if (!args.CanAccess || !args.CanInteract) // return; @@ -292,7 +292,7 @@ public sealed class LockSystem : EntitySystem //}; //args.Verbs.Add(verb); - //CrystallPunk Lock System Adapt End + //CrystallEdge Lock System Adapt End } private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEvent args) diff --git a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs index d81371f1e9..5b4d01ca6e 100644 --- a/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs +++ b/Content.Shared/Weapons/Melee/MeleeWeaponComponent.cs @@ -72,7 +72,7 @@ public sealed partial class MeleeWeaponComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public bool ResistanceBypass = false; - + /// /// Base damage for this weapon. Can be modified via heavy damage or other means. /// @@ -120,19 +120,19 @@ public sealed partial class MeleeWeaponComponent : Component public bool SwingLeft; /// - /// CrystallPunk Melee upgrade. Allows each attack to take turns being either left or right + /// CrystallEdge Melee upgrade. Allows each attack to take turns being either left or right /// [DataField] public bool CPSwingBeverage = true; /// - /// CrystallPunk Melee upgrade. Modifier of wide attack animation speed + /// CrystallEdge Melee upgrade. Modifier of wide attack animation speed /// [DataField] public float CPAnimationLength = 0.5f; /// - /// CrystallPunk Melee upgrade. how far away from the player the animation should be played. + /// CrystallEdge Melee upgrade. how far away from the player the animation should be played. /// [DataField] public float CPAnimationOffset = -1f; diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index ebd1b730eb..3a109f34ba 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -398,10 +398,10 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem var ev = new AttemptMeleeEvent(); RaiseLocalEvent(weaponUid, ref ev); - //CrystallPunk melee improvment + //CrystallEdge melee improvment if (weapon.CPSwingBeverage) weapon.SwingLeft = !weapon.SwingLeft; - //CrystallPunk melee improvment end + //CrystallEdge melee improvment end if (ev.Cancelled) { diff --git a/README.md b/README.md index 706cdc93e7..dc2ca13b34 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

CrystallPunk

+

CrystallEdge

## Links @@ -20,6 +20,6 @@ https://github.com/crystallpunk-14/crystall-punk-14/wiki The base code for the original Space Station 14 game is licensed under [MIT License](https://github.com/space-wizards/space-station-14/blob/master/LICENSE.TXT) -All CrystallPunk14 codebase contributions [rights reserved](https://github.com/crystallpunk-14/crystall-punk-14/blob/master/LICENSE.TXT). +All CrystallEdge codebase contributions [rights reserved](https://github.com/crystallpunk-14/crystall-punk-14/blob/master/LICENSE.TXT). Visual and sound assets have their own license, described in the attribution file next to them. diff --git a/Resources/Audio/_CP14/Lobby/attributions.yml b/Resources/Audio/_CP14/Lobby/attributions.yml index 4374407ec4..5f15efdcea 100644 --- a/Resources/Audio/_CP14/Lobby/attributions.yml +++ b/Resources/Audio/_CP14/Lobby/attributions.yml @@ -10,5 +10,5 @@ - files: ["arcane_winds.ogg"] license: "CC-BY-SA-3.0" - copyright: "'Arcane Winds' by LINK, created for CrystallPunk14" - source: "https://github.com/crystallpunk-14/crystall-punk-14" \ No newline at end of file + copyright: "'Arcane Winds' by LINK" + source: "https://github.com/crystallpunk-14/crystall-punk-14" diff --git a/Resources/Prototypes/_CP14/Guidebook/entry.yml b/Resources/Prototypes/_CP14/Guidebook/entry.yml index d3d7d93c16..9ec1c963d0 100644 --- a/Resources/Prototypes/_CP14/Guidebook/entry.yml +++ b/Resources/Prototypes/_CP14/Guidebook/entry.yml @@ -2,7 +2,7 @@ crystallPunkAllowed: true locFilter: "en-US" id: CP14_EN - name: Welcome to CrystallPunk + name: Welcome to CrystallEdge text: "/ServerInfo/_CP14/Guidebook_EN/Welcome.xml" children: - CP14_EN_Alchemy @@ -12,8 +12,8 @@ crystallPunkAllowed: true locFilter: "ru-RU" id: CP14_RU - name: Добро пожаловать в CrystallPunk + name: Добро пожаловать в CrystallEdge text: "/ServerInfo/_CP14/Guidebook_RU/Welcome.xml" children: - CP14_RU_Alchemy - - CP14_RU_Demiplanes \ No newline at end of file + - CP14_RU_Demiplanes diff --git a/Resources/Prototypes/_CP14/Procedural/Demiplane/enter_room.yml b/Resources/Prototypes/_CP14/Procedural/Demiplane/enter_room.yml index 5d88bf170b..5832d29398 100644 --- a/Resources/Prototypes/_CP14/Procedural/Demiplane/enter_room.yml +++ b/Resources/Prototypes/_CP14/Procedural/Demiplane/enter_room.yml @@ -1,17 +1,17 @@ - type: Tag id: CP14DemiplanEnterRoom -- type: entity - id: CP14DemiplanEnterRoomMarker - categories: [ ForkFiltered ] - parent: BaseRoomMarker - name: Demiplan enter room marker - components: - - type: RoomFill - clearExisting: true - roomWhitelist: - tags: - - CP14DemiplanEnterRoom +#- type: entity +# id: CP14DemiplanEnterRoomMarker +# categories: [ ForkFiltered ] +# parent: BaseRoomMarker +# name: Demiplan enter room marker +# components: +# - type: RoomFill +# clearExisting: true +# roomWhitelist: +# tags: +# - CP14DemiplanEnterRoom # 7x7 - type: dungeonRoom @@ -48,4 +48,4 @@ ignoreTile: FloorShuttlePurple offset: 24,0 tags: - - CP14DemiplanEnterRoom \ No newline at end of file + - CP14DemiplanEnterRoom diff --git a/Resources/ServerInfo/_CP14/Guidebook_EN/Welcome.xml b/Resources/ServerInfo/_CP14/Guidebook_EN/Welcome.xml index 400446f552..2e41bf8e3b 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_EN/Welcome.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_EN/Welcome.xml @@ -1,12 +1,12 @@  -# Welcome to the pre-alpha version of CrystallPunk! +# Welcome to the pre-alpha version of CrystallEdge! This guide is designed to help you understand how all the mechanics in the game work. Be prepared for a lot of text - CP14 is a very large game with a lot of deep mechanics. We hope you will find these guides interesting. -## What is CrystallPunk? -CrystallPunk is an offshoot of the Space Station 14 game... Eeee, I don't think there's much to write about at this point. We'll fill that in later. +## What is CrystallEdge? +CrystallEdge is an fork of the Space Station 14 game... Eeee, I don't think there's much to write about at this point. We'll fill that in later. ## Where to start? No idea, good luck. (This block needs to be rewritten too) - \ No newline at end of file + diff --git a/Resources/ServerInfo/_CP14/Guidebook_RU/Welcome.xml b/Resources/ServerInfo/_CP14/Guidebook_RU/Welcome.xml index 319bf4a9e7..0f84d4cc08 100644 --- a/Resources/ServerInfo/_CP14/Guidebook_RU/Welcome.xml +++ b/Resources/ServerInfo/_CP14/Guidebook_RU/Welcome.xml @@ -1,12 +1,12 @@  -# Добро пожаловать в пре-альфа версию игры CrystallPunk! +# Добро пожаловать в пре-альфа версию игры CrystallEdge! Данное руководство создано, чтобы помочь вам разобраться в работе всех существующих в игре механик. -Будьте готовы, что здесь будет очень много текста - ведь CP14 очень большая игра с большим количеством глубоких механик. Мы надеемся, что вам будет интересно читать эти руководства. +Будьте готовы, что здесь будет очень много текста - ведь это очень большая игра с большим количеством глубоких механик. Мы надеемся, что вам будет интересно читать эти руководства. -## Что такое CrystallPunk? -CrystallPunk - ответвление от игры Space Station 14... Иии, я пока считаю что тут не о чем писать. Мы заполним этот блок позже. +## Что такое CrystallEdge? +CrystallEdge - ответвление от игры Space Station 14... Иии, я пока считаю что тут не о чем писать. Мы заполним этот блок позже. ## С чего начать? Без понятия, удачи. (Этот блок тоже нужно переписать) - \ No newline at end of file + diff --git a/Resources/ServerInfo/_CP14/Rules/CP14SandboxRU.xml b/Resources/ServerInfo/_CP14/Rules/CP14SandboxRU.xml index 4c7ec27ee1..1003e73010 100644 --- a/Resources/ServerInfo/_CP14/Rules/CP14SandboxRU.xml +++ b/Resources/ServerInfo/_CP14/Rules/CP14SandboxRU.xml @@ -1,19 +1,19 @@ # Правила сервера - - Вы находитесь на тестовом сервере CrystallPunk. Если вы попали сюда, значит вы в белом списке. - - Этот сервер предназначен в первую очередь для приоткрытого тестирования наработок. Билд находится в крайне ранней стадии разработки, и на текущий момент не является полноценно играбельным. + + Вы находитесь на тестовом сервере CrystallEdge. Если вы попали сюда, значит вы в белом списке. + + Этот сервер предназначен в первую очередь для приоткрытого тестирования наработок. Билд находится в крайне ранней стадии разработки, и на текущий момент не является полноценно играбельным. Некоторые ключевые механики еще могут быть не реализованы, или работать не правильно. - + Это означает, что здесь нет требований с ролевому отыгрышу, и вы можете спокойно общаться внутри игры OOC терминами. Тем не менее, отыгрыш никогда не является чем то лишним, и если вам нравится - на здоровье. - + ## Основные правила - + - Не будьте мудаками. - Не мешайте другим игрокам тестировать механики, если они вас об этом просят. - Сексуальный контент, ERP запрещены. - - Обо всех найденных багах сообщайте в дискорд или гитхаб. - + - Обо всех найденных багах сообщайте в дискорд или гитхаб. + Удачи! diff --git a/Resources/Textures/Logo/icon.ico b/Resources/Textures/Logo/icon.ico index 1ea0f1a461..3c86a60046 100644 Binary files a/Resources/Textures/Logo/icon.ico and b/Resources/Textures/Logo/icon.ico differ diff --git a/Resources/Textures/Logo/logo.png b/Resources/Textures/Logo/logo.png index 2ba00da268..9c426766da 100644 Binary files a/Resources/Textures/Logo/logo.png and b/Resources/Textures/Logo/logo.png differ diff --git a/Resources/Textures/_CP14/Clothing/Back/Backpacks/leather_backpack.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Back/Backpacks/leather_backpack.rsi/meta.json index 37659aad00..0e05895483 100644 --- a/Resources/Textures/_CP14/Clothing/Back/Backpacks/leather_backpack.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Back/Backpacks/leather_backpack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten (Discord/Github) for CrystallPunk14", + "copyright": "Created by jaraten (Discord/Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Armor/brass_armor.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Armor/brass_armor.rsi/meta.json index 7d632644d9..6d03a64d46 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Armor/brass_armor.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Armor/brass_armor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "CrystallPunk14, by Pato Grone(discord)", + "copyright": "Created by Pato Grone(discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass.rsi/meta.json index 70097a6fd4..bba48e4844 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_leg.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_leg.rsi/meta.json index 70097a6fd4..0ba539160c 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_leg.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_leg.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_loincloth.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_loincloth.rsi/meta.json index 70097a6fd4..0ba539160c 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_loincloth.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Armor/cuirass_loincloth.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Armor/infantry_cuirass.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Armor/infantry_cuirass.rsi/meta.json index 70097a6fd4..0ba539160c 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Armor/infantry_cuirass.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Armor/infantry_cuirass.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 @@ -23,4 +23,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Armor/redguardarmor.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Armor/redguardarmor.rsi/meta.json index b77a0eb85a..e37ae9f3b3 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Armor/redguardarmor.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Armor/redguardarmor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "CrystallPunk14, by hazzloebizhe", + "copyright": "Created by hazzloebizhe", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Alchemist/alchemist_cloak.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Alchemist/alchemist_cloak.rsi/meta.json index 05e3ea0b31..d90ae32452 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Alchemist/alchemist_cloak.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Alchemist/alchemist_cloak.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Bank/commandant_jacket.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Bank/commandant_jacket.rsi/meta.json index 05e3ea0b31..d90ae32452 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Bank/commandant_jacket.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Bank/commandant_jacket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Captain/captain_jacket.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Captain/captain_jacket.rsi/meta.json index 05e3ea0b31..d90ae32452 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Captain/captain_jacket.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Captain/captain_jacket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/blacksmith_apron.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/blacksmith_apron.rsi/meta.json index 05e3ea0b31..d90ae32452 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/blacksmith_apron.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/blacksmith_apron.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/cheetah_skin.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/cheetah_skin.rsi/meta.json index 996c404313..65eacb6461 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/cheetah_skin.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/cheetah_skin.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/dark_blue.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/dark_blue.rsi/meta.json index 05e3ea0b31..d90ae32452 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/dark_blue.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/dark_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape.rsi/meta.json index 7d57609eb4..9ea060ef70 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape2.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape2.rsi/meta.json index 7d57609eb4..9ea060ef70 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape2.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/furcape2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/maid_apron.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/maid_apron.rsi/meta.json index 05e3ea0b31..d90ae32452 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/maid_apron.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/maid_apron.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/white.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/white.rsi/meta.json index 05e3ea0b31..d90ae32452 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/white.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Gloves/girdles.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Gloves/girdles.rsi/meta.json index 26a20601a4..5310a13146 100644 --- a/Resources/Textures/_CP14/Clothing/Gloves/girdles.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Gloves/girdles.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Produced/Armor/capellina.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Produced/Armor/capellina.rsi/meta.json index 1c02ea6e29..cdc8fd0d4f 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Produced/Armor/capellina.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Produced/Armor/capellina.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/bandana.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/bandana.rsi/meta.json index ca499df863..1b06802a13 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/bandana.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/bandana.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat, recolored by TheShuEd", + "copyright": "Created by Prazat, recolored by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/beret.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/beret.rsi/meta.json index ca499df863..1b06802a13 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/beret.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Alchemist/beret.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat, recolored by TheShuEd", + "copyright": "Created by Prazat, recolored by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_golden_hat.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_golden_hat.rsi/meta.json index a65c38e52c..fe272fc1fb 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_golden_hat.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_golden_hat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_hat.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_hat.rsi/meta.json index a65c38e52c..fe272fc1fb 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_hat.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Bank/bowler_hat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Captain/cap.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Captain/cap.rsi/meta.json index cc3d9bd35d..5af2d15f87 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/Captain/cap.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Captain/cap.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Jaraten", + "copyright": "Created by Jaraten", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_white.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_white.rsi/meta.json index ca499df863..1b06802a13 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_white.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat, recolored by TheShuEd", + "copyright": "Created by Prazat, recolored by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_yellow.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_yellow.rsi/meta.json index b21827911c..56f2a8c0a7 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_yellow.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/bandana_yellow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_black.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_black.rsi/meta.json index b21827911c..56f2a8c0a7 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_black.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_blue.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_blue.rsi/meta.json index b21827911c..56f2a8c0a7 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_blue.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_mercenary.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_mercenary.rsi/meta.json index be44ecf00c..f2ec305a2b 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_mercenary.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_mercenary.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_purple.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_purple.rsi/meta.json index b21827911c..56f2a8c0a7 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_purple.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_purple.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_red.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_red.rsi/meta.json index b21827911c..56f2a8c0a7 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_red.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_yellow.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_yellow.rsi/meta.json index b21827911c..56f2a8c0a7 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_yellow.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/beret_yellow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/metalheadband.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/metalheadband.rsi/meta.json index 16aa931e84..edd0d0bf09 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/metalheadband.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/metalheadband.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5, edited by TheShuEd", + "copyright": "Created by KBAS5, edited by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat.rsi/meta.json index a65c38e52c..fe272fc1fb 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi/meta.json index a65c38e52c..fe272fc1fb 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Clothing/Masks/steel_mask.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Masks/steel_mask.rsi/meta.json index e7b46c9649..63a8675fb9 100644 --- a/Resources/Textures/_CP14/Clothing/Masks/steel_mask.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Masks/steel_mask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Pants/Dress/black.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/Dress/black.rsi/meta.json index c74ee253d5..63e24d83bc 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/Dress/black.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/Dress/black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Pants/Dress/yellow_magician_dress.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/Dress/yellow_magician_dress.rsi/meta.json index 5aa2ed39c3..6dca12db73 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/Dress/yellow_magician_dress.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/Dress/yellow_magician_dress.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Pants/Trousers/dark_blue.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/Trousers/dark_blue.rsi/meta.json index c74ee253d5..63e24d83bc 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/Trousers/dark_blue.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/Trousers/dark_blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Pants/Trousers/trousers_mercenary.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/Trousers/trousers_mercenary.rsi/meta.json index 5369a0a470..24308a79f4 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/Trousers/trousers_mercenary.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/Trousers/trousers_mercenary.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Pants/Trousers/white.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/Trousers/white.rsi/meta.json index c74ee253d5..63e24d83bc 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/Trousers/white.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/Trousers/white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Pants/aristocratic.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/aristocratic.rsi/meta.json index 2f39ce43ae..8d95155944 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/aristocratic.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/aristocratic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Pants/loincloth.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/loincloth.rsi/meta.json index 2f39ce43ae..8d95155944 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/loincloth.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/loincloth.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Rings/rings.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Rings/rings.rsi/meta.json index ac02bac311..49c370b1f3 100644 --- a/Resources/Textures/_CP14/Clothing/Rings/rings.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Rings/rings.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Bank/banker.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Bank/banker.rsi/meta.json index 557d4dca7e..e6a55af6aa 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Bank/banker.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Bank/banker.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/black.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/black.rsi/meta.json index 199ce8118e..41d3bf5f6e 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/black.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/blue.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/blue.rsi/meta.json index 199ce8118e..41d3bf5f6e 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/blue.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/mercenary.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/mercenary.rsi/meta.json index f7386892cb..8ad7c7f0c6 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/mercenary.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/mercenary.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/purple.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/purple.rsi/meta.json index 199ce8118e..41d3bf5f6e 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/purple.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/purple.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/red.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/red.rsi/meta.json index 199ce8118e..41d3bf5f6e 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/red.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/white.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/white.rsi/meta.json index 199ce8118e..41d3bf5f6e 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/white.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow.rsi/meta.json index 199ce8118e..41d3bf5f6e 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow_wizard.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow_wizard.rsi/meta.json index 61241daced..52270e2d1b 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow_wizard.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/General/yellow_wizard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by Prazat", + "copyright": "Created by Prazat", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shoes/aristocratic_black.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shoes/aristocratic_black.rsi/meta.json index 241e408e43..e072d18f51 100644 --- a/Resources/Textures/_CP14/Clothing/Shoes/aristocratic_black.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shoes/aristocratic_black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shoes/black.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shoes/black.rsi/meta.json index 241e408e43..e072d18f51 100644 --- a/Resources/Textures/_CP14/Clothing/Shoes/black.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shoes/black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shoes/sandals.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shoes/sandals.rsi/meta.json index 241e408e43..e072d18f51 100644 --- a/Resources/Textures/_CP14/Clothing/Shoes/sandals.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shoes/sandals.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, by KBAS5", + "copyright": "Created by KBAS5", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Effects/Beams/magic.rsi/meta.json b/Resources/Textures/_CP14/Effects/Beams/magic.rsi/meta.json index 4afc561d05..3df600dd82 100644 --- a/Resources/Textures/_CP14/Effects/Beams/magic.rsi/meta.json +++ b/Resources/Textures/_CP14/Effects/Beams/magic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk 14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 @@ -67,4 +67,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Effects/Magic/cast_impact.rsi/meta.json b/Resources/Textures/_CP14/Effects/Magic/cast_impact.rsi/meta.json index ca3ad81534..c51b654c84 100644 --- a/Resources/Textures/_CP14/Effects/Magic/cast_impact.rsi/meta.json +++ b/Resources/Textures/_CP14/Effects/Magic/cast_impact.rsi/meta.json @@ -5,7 +5,7 @@ "y": 48 }, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk", + "copyright": "Created by TheShuEd", "states": [ { "name": "particles_up", @@ -38,4 +38,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Effects/Magic/cast_rune.rsi/meta.json b/Resources/Textures/_CP14/Effects/Magic/cast_rune.rsi/meta.json index 4c72acc6c0..eb488c43bb 100644 --- a/Resources/Textures/_CP14/Effects/Magic/cast_rune.rsi/meta.json +++ b/Resources/Textures/_CP14/Effects/Magic/cast_rune.rsi/meta.json @@ -5,7 +5,7 @@ "y": 48 }, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk", + "copyright": "Created by TheShuEd", "states": [ { "name": "double_outer", @@ -68,4 +68,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Effects/Magic/ritual_orbs.rsi/meta.json b/Resources/Textures/_CP14/Effects/Magic/ritual_orbs.rsi/meta.json index c221e7fe10..220e63c1ef 100644 --- a/Resources/Textures/_CP14/Effects/Magic/ritual_orbs.rsi/meta.json +++ b/Resources/Textures/_CP14/Effects/Magic/ritual_orbs.rsi/meta.json @@ -5,7 +5,7 @@ "y": 16 }, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk", + "copyright": "Created by TheShuEd", "states": [ { "name": "creation", @@ -30,4 +30,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Effects/Magic/sphere_of_light.rsi/meta.json b/Resources/Textures/_CP14/Effects/Magic/sphere_of_light.rsi/meta.json index 866e1791be..f0f6251236 100644 --- a/Resources/Textures/_CP14/Effects/Magic/sphere_of_light.rsi/meta.json +++ b/Resources/Textures/_CP14/Effects/Magic/sphere_of_light.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Nimfar11 for CrystallPunk", + "copyright": "Created by Nimfar11", "states": [ { "name": "icon", diff --git a/Resources/Textures/_CP14/Effects/cubeup.rsi/meta.json b/Resources/Textures/_CP14/Effects/cubeup.rsi/meta.json index 4e4416b4a2..52c8175ce0 100644 --- a/Resources/Textures/_CP14/Effects/cubeup.rsi/meta.json +++ b/Resources/Textures/_CP14/Effects/cubeup.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) and modified by Jaraten (github/Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) and modified by Jaraten (github/Discord)", "size": { "x": 32, "y": 48 diff --git a/Resources/Textures/_CP14/Effects/fire.rsi/meta.json b/Resources/Textures/_CP14/Effects/fire.rsi/meta.json index 5b9c635a0f..16c41adcde 100644 --- a/Resources/Textures/_CP14/Effects/fire.rsi/meta.json +++ b/Resources/Textures/_CP14/Effects/fire.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 @@ -40,4 +40,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Interface/Alerts/magic_energy.rsi/meta.json b/Resources/Textures/_CP14/Interface/Alerts/magic_energy.rsi/meta.json index c99c223279..02a47ca56d 100644 --- a/Resources/Textures/_CP14/Interface/Alerts/magic_energy.rsi/meta.json +++ b/Resources/Textures/_CP14/Interface/Alerts/magic_energy.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 @@ -41,4 +41,4 @@ "name": "mana_10" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Interface/Misc/coins.rsi/meta.json b/Resources/Textures/_CP14/Interface/Misc/coins.rsi/meta.json index 87da4b3f53..1ada7e4954 100644 --- a/Resources/Textures/_CP14/Interface/Misc/coins.rsi/meta.json +++ b/Resources/Textures/_CP14/Interface/Misc/coins.rsi/meta.json @@ -5,7 +5,7 @@ "y": 8 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "c" @@ -20,4 +20,4 @@ "name": "s" } ] -} \ No newline at end of file +} 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 8675672c33..9d19887648 100644 --- a/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/_CP14/Interface/Misc/job_icons.rsi/meta.json @@ -5,7 +5,7 @@ "y": 9 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "Adventurer" @@ -32,4 +32,4 @@ "name": "Innkeeper" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Markers/biome.rsi/meta.json b/Resources/Textures/_CP14/Markers/biome.rsi/meta.json index 9b8f13d40f..f108fabb7a 100644 --- a/Resources/Textures/_CP14/Markers/biome.rsi/meta.json +++ b/Resources/Textures/_CP14/Markers/biome.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 @@ -20,4 +20,4 @@ "name": "forest" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Markers/jobs.rsi/meta.json b/Resources/Textures/_CP14/Markers/jobs.rsi/meta.json index 51fed352b2..648cb82f85 100644 --- a/Resources/Textures/_CP14/Markers/jobs.rsi/meta.json +++ b/Resources/Textures/_CP14/Markers/jobs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 @@ -29,4 +29,4 @@ "name": "workman" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Animals/dino.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Animals/dino.rsi/meta.json index 68948f2ff7..43f66b1c2b 100644 --- a/Resources/Textures/_CP14/Mobs/Animals/dino.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Animals/dino.rsi/meta.json @@ -6,7 +6,7 @@ "y": 48 }, "license": "CC-BY-SA-3.0", - "copyright": "Created by Pelemonk (Github) for CrystallPunk 14", + "copyright": "Created by Pelemonk (Github)", "states": [ { diff --git a/Resources/Textures/_CP14/Mobs/Animals/rabbit.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Animals/rabbit.rsi/meta.json index 79c61c86c9..4313bd92e1 100644 --- a/Resources/Textures/_CP14/Mobs/Animals/rabbit.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Animals/rabbit.rsi/meta.json @@ -6,7 +6,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Created by Pelemonk (Github) for CrystallPunk 14", + "copyright": "Created by Pelemonk (Github)", "states": [ { diff --git a/Resources/Textures/_CP14/Mobs/Customization/elf_ears.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/elf_ears.rsi/meta.json index 27c2994283..07b2a368c8 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/elf_ears.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/elf_ears.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 @@ -24,4 +24,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Customization/eyes.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/eyes.rsi/meta.json index 52da353c94..971667f44f 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/eyes.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/eyes.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 @@ -19,4 +19,4 @@ "name": "no_eyes" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Customization/goblin_ears.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/goblin_ears.rsi/meta.json index 0723e83c22..c789f3f642 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/goblin_ears.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/goblin_ears.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 @@ -20,4 +20,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Customization/goblin_hair.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/goblin_hair.rsi/meta.json index a12cf82f3f..2ff95290cb 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/goblin_hair.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/goblin_hair.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 @@ -20,4 +20,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Customization/goblin_nose.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/goblin_nose.rsi/meta.json index 1de313ecd4..fc83f6f5a1 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/goblin_nose.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/goblin_nose.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 @@ -20,4 +20,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/human_hair.rsi/meta.json index 070d6339bc..93e8616f34 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/human_hair.rsi/meta.json @@ -4,7 +4,7 @@ "x": 48, "y": 48 }, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, adapted to CrystallPunk by TheShuEd. Crazybald by TheShuEd, maxy_shagy by Max Gab", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, adapted to CrystallEdge by TheShuEd. Crazybald by TheShuEd, maxy_shagy by Max Gab", "license": "CC-BY-SA-3.0", "states": [ { diff --git a/Resources/Textures/_CP14/Mobs/Customization/tiefling_horns.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/tiefling_horns.rsi/meta.json index c29be19efb..2245d76125 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/tiefling_horns.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/tiefling_horns.rsi/meta.json @@ -4,7 +4,7 @@ "x": 48, "y": 48 }, - "copyright": "Created by TheShuEd for CrystallPunk", + "copyright": "Created by TheShuEd", "license": "CLA", "states": [ { @@ -44,4 +44,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Customization/tiefling_tails.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Customization/tiefling_tails.rsi/meta.json index 6340a6c936..a041d8cce0 100644 --- a/Resources/Textures/_CP14/Mobs/Customization/tiefling_tails.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Customization/tiefling_tails.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (github) for CrystallPunk", + "copyright": "Created by TheShuEd (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Monster/pumpkin_king.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Monster/pumpkin_king.rsi/meta.json index 719919fb59..477b7eefaa 100644 --- a/Resources/Textures/_CP14/Mobs/Monster/pumpkin_king.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Monster/pumpkin_king.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by KREKS for CrystallPunk14", + "copyright": "Created by KREKS", "states": [ { "name": "pumpkin_king", diff --git a/Resources/Textures/_CP14/Mobs/Pets/iron_dog.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Pets/iron_dog.rsi/meta.json index 43ae292412..8a691ae303 100644 --- a/Resources/Textures/_CP14/Mobs/Pets/iron_dog.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Pets/iron_dog.rsi/meta.json @@ -6,7 +6,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Created by Pelemonk (Github) for CrystallPunk 14", + "copyright": "Created by Pelemonk (Github)", "states": [ { diff --git a/Resources/Textures/_CP14/Mobs/Pets/sheep.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Pets/sheep.rsi/meta.json index a426e8a07f..cff99d8105 100644 --- a/Resources/Textures/_CP14/Mobs/Pets/sheep.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Pets/sheep.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (discord/Github) for CrystallPunk", + "copyright": "Created by Jaraten (discord/Github)", "size": { "x": 32, "y": 32 @@ -15,4 +15,4 @@ "name": "dead" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Mobs/Species/Dwarf/displacement.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Dwarf/displacement.rsi/meta.json index 7422ee2fd3..96826d3156 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Dwarf/displacement.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Dwarf/displacement.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 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 1284115cfc..0ea7a81f6e 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Dwarf/parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Species/Elf/parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Elf/parts.rsi/meta.json index 1284115cfc..0ea7a81f6e 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Elf/parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Elf/parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 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 caa416d893..3b7c3eb0ae 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 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 4e6bbf0e91..ec76051453 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Goblin/displacement48.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Mobs/Species/Goblin/parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Goblin/parts.rsi/meta.json index c37fd06a4b..b69c714901 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Goblin/parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Goblin/parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 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 a50c05c3ba..d0d12d3aff 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Human/displacement.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/female_parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Human/female_parts.rsi/meta.json index 005c6ad01f..eaf09fbe71 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Human/female_parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Human/female_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Species/Human/parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Human/parts.rsi/meta.json index 005c6ad01f..eaf09fbe71 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Human/parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Human/parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Species/Tiefling/female_parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Tiefling/female_parts.rsi/meta.json index 05a7ffe6ee..bf3e2496c2 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Tiefling/female_parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Tiefling/female_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Species/Tiefling/parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Tiefling/parts.rsi/meta.json index 05a7ffe6ee..bf3e2496c2 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Tiefling/parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Tiefling/parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Species/Zombie/female_parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Zombie/female_parts.rsi/meta.json index 2b50ccacc5..ebd60303ce 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Zombie/female_parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Zombie/female_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by KREKS for CrystallPunk14", + "copyright": "Created by KREKS", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Mobs/Species/Zombie/parts.rsi/meta.json b/Resources/Textures/_CP14/Mobs/Species/Zombie/parts.rsi/meta.json index 2b50ccacc5..ebd60303ce 100644 --- a/Resources/Textures/_CP14/Mobs/Species/Zombie/parts.rsi/meta.json +++ b/Resources/Textures/_CP14/Mobs/Species/Zombie/parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by KREKS for CrystallPunk14", + "copyright": "Created by KREKS", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Bureaucracy/inkwell.rsi/meta.json b/Resources/Textures/_CP14/Objects/Bureaucracy/inkwell.rsi/meta.json index 9e3349b619..5b9e389d23 100644 --- a/Resources/Textures/_CP14/Objects/Bureaucracy/inkwell.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Bureaucracy/inkwell.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab for CrystallPunk", + "copyright": "Created by Max Gab", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Bureaucracy/paper.rsi/meta.json b/Resources/Textures/_CP14/Objects/Bureaucracy/paper.rsi/meta.json index 1dfd63b564..7e4cd80cf2 100644 --- a/Resources/Textures/_CP14/Objects/Bureaucracy/paper.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Bureaucracy/paper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab for CrystallPunk, folders by TheShuEd, stamps on paper by viator1748", + "copyright": "Created by Max Gab, folders by TheShuEd, stamps on paper by viator1748", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Bureaucracy/pens.rsi/meta.json b/Resources/Textures/_CP14/Objects/Bureaucracy/pens.rsi/meta.json index e879744d72..fea60dfde2 100644 --- a/Resources/Textures/_CP14/Objects/Bureaucracy/pens.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Bureaucracy/pens.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab for CrystallPunk", + "copyright": "Created by Max Gab", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Bureaucracy/stamp.rsi/meta.json b/Resources/Textures/_CP14/Objects/Bureaucracy/stamp.rsi/meta.json index 5ab20b9860..1a0b3a2cdf 100644 --- a/Resources/Textures/_CP14/Objects/Bureaucracy/stamp.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Bureaucracy/stamp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by viator1748 (discord) for CrystallPunk", + "copyright": "Created by viator1748 (discord)", "size": { "x": 32, "y": 32 @@ -17,4 +17,4 @@ "name": "denied" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Economy/cp_coin.rsi/meta.json b/Resources/Textures/_CP14/Objects/Economy/cp_coin.rsi/meta.json index 6d6e88523d..0ae2c3ef35 100644 --- a/Resources/Textures/_CP14/Objects/Economy/cp_coin.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Economy/cp_coin.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "coin0" @@ -41,4 +41,4 @@ "name": "coin10" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Economy/gp_coin.rsi/meta.json b/Resources/Textures/_CP14/Objects/Economy/gp_coin.rsi/meta.json index 6d6e88523d..0ae2c3ef35 100644 --- a/Resources/Textures/_CP14/Objects/Economy/gp_coin.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Economy/gp_coin.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "coin0" @@ -41,4 +41,4 @@ "name": "coin10" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Economy/jewelry.rsi/meta.json b/Resources/Textures/_CP14/Objects/Economy/jewelry.rsi/meta.json index befda0e7b0..54df642ea8 100644 --- a/Resources/Textures/_CP14/Objects/Economy/jewelry.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Economy/jewelry.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Prazat for CrystallPunk14", + "copyright": "Created by Prazat", "states": [ { "name": "emerald1" @@ -41,4 +41,4 @@ "name": "topaz1" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Economy/pp_coin.rsi/meta.json b/Resources/Textures/_CP14/Objects/Economy/pp_coin.rsi/meta.json index 6d6e88523d..0ae2c3ef35 100644 --- a/Resources/Textures/_CP14/Objects/Economy/pp_coin.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Economy/pp_coin.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "coin0" @@ -41,4 +41,4 @@ "name": "coin10" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Economy/sp_coin.rsi/meta.json b/Resources/Textures/_CP14/Objects/Economy/sp_coin.rsi/meta.json index 6d6e88523d..0ae2c3ef35 100644 --- a/Resources/Textures/_CP14/Objects/Economy/sp_coin.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Economy/sp_coin.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "coin0" @@ -41,4 +41,4 @@ "name": "coin10" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Farm/wheat.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Farm/wheat.rsi/meta.json index 6ad1478357..7ff18febff 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Farm/wheat.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Farm/wheat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 @@ -14,4 +14,4 @@ "name": "base2" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Wild/agaric.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Wild/agaric.rsi/meta.json index 3d0c9dab29..34bed3bf2d 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Wild/agaric.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Wild/agaric.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "base1" @@ -32,4 +32,4 @@ "name": "plate3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Wild/blue_amanita.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Wild/blue_amanita.rsi/meta.json index 3f0cd34435..b15a755029 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Wild/blue_amanita.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Wild/blue_amanita.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Max Gab for CrystallPunk14", + "copyright": "Created by Max Gab", "states": [ { "name": "base1" @@ -14,4 +14,4 @@ "name": "base2" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Wild/chromium_slime.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Wild/chromium_slime.rsi/meta.json index d4e6410d4f..4a0c7fc04f 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Wild/chromium_slime.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Wild/chromium_slime.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "base1" @@ -26,4 +26,4 @@ "name": "plate3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Wild/lumishroom.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Wild/lumishroom.rsi/meta.json index 3d0c9dab29..34bed3bf2d 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Wild/lumishroom.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Wild/lumishroom.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "base1" @@ -32,4 +32,4 @@ "name": "plate3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Wild/red_rose.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Wild/red_rose.rsi/meta.json index 08bb0550ec..13d393f784 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Wild/red_rose.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Wild/red_rose.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "base1" @@ -14,4 +14,4 @@ "name": "base2" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Wild/wild_sage.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Wild/wild_sage.rsi/meta.json index 88fcd2af39..0c164f77c7 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Wild/wild_sage.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Wild/wild_sage.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Prazar for CrystallPunk14", + "copyright": "Created by Prazar", "states": [ { "name": "base1" @@ -26,4 +26,4 @@ "name": "plate3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Flora/Wild/yellow_dayflin.rsi/meta.json b/Resources/Textures/_CP14/Objects/Flora/Wild/yellow_dayflin.rsi/meta.json index 060b5e844a..606de14289 100644 --- a/Resources/Textures/_CP14/Objects/Flora/Wild/yellow_dayflin.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Flora/Wild/yellow_dayflin.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Max Gab (Github) for CrystallPunk14", + "copyright": "Created by Max Gab (Github)", "states": [ { "name": "base1" @@ -14,4 +14,4 @@ "name": "base2" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/cloth.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/cloth.rsi/meta.json index 18a5465627..6ab50afd09 100644 --- a/Resources/Textures/_CP14/Objects/Materials/cloth.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/cloth.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "cloth_1" @@ -17,4 +17,4 @@ "name": "cloth_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/copper_bar.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/copper_bar.rsi/meta.json index 833caa4735..cf03e85230 100644 --- a/Resources/Textures/_CP14/Objects/Materials/copper_bar.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/copper_bar.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "bar" @@ -17,4 +17,4 @@ "name": "bar_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/copper_ore.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/copper_ore.rsi/meta.json index 8c1e892cd5..ca97c09f8e 100644 --- a/Resources/Textures/_CP14/Objects/Materials/copper_ore.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/copper_ore.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "ore1" @@ -17,4 +17,4 @@ "name": "ore3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/dirt_block.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/dirt_block.rsi/meta.json index b54a50c076..c361bb84a5 100644 --- a/Resources/Textures/_CP14/Objects/Materials/dirt_block.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/dirt_block.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "dirt" @@ -17,4 +17,4 @@ "name": "dirt_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/dye.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/dye.rsi/meta.json index db2d4f6e79..891fc92d2b 100644 --- a/Resources/Textures/_CP14/Objects/Materials/dye.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/dye.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "base" @@ -14,4 +14,4 @@ "name": "powder" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/glass.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/glass.rsi/meta.json index f0e635e2b5..5555b07227 100644 --- a/Resources/Textures/_CP14/Objects/Materials/glass.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/glass.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten (Github/discord) for CrystallPunk14", + "copyright": "Created by jaraten (Github/discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Materials/gold_bar.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/gold_bar.rsi/meta.json index 833caa4735..cf03e85230 100644 --- a/Resources/Textures/_CP14/Objects/Materials/gold_bar.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/gold_bar.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "bar" @@ -17,4 +17,4 @@ "name": "bar_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/gold_ore.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/gold_ore.rsi/meta.json index 8c1e892cd5..ca97c09f8e 100644 --- a/Resources/Textures/_CP14/Objects/Materials/gold_ore.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/gold_ore.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "ore1" @@ -17,4 +17,4 @@ "name": "ore3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/iron_bar.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/iron_bar.rsi/meta.json index 833caa4735..cf03e85230 100644 --- a/Resources/Textures/_CP14/Objects/Materials/iron_bar.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/iron_bar.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "bar" @@ -17,4 +17,4 @@ "name": "bar_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/iron_ore.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/iron_ore.rsi/meta.json index 8c1e892cd5..ca97c09f8e 100644 --- a/Resources/Textures/_CP14/Objects/Materials/iron_ore.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/iron_ore.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "ore1" @@ -17,4 +17,4 @@ "name": "ore3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/nails.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/nails.rsi/meta.json index ec2e08def9..bbe08e6766 100644 --- a/Resources/Textures/_CP14/Objects/Materials/nails.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/nails.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "nail" @@ -17,4 +17,4 @@ "name": "nail_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/stone_block.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/stone_block.rsi/meta.json index 7f3dba0cf3..a95ce8ba7c 100644 --- a/Resources/Textures/_CP14/Objects/Materials/stone_block.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/stone_block.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "stone" @@ -17,4 +17,4 @@ "name": "stone_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Materials/wood.rsi/meta.json b/Resources/Textures/_CP14/Objects/Materials/wood.rsi/meta.json index 5bfdfd446f..b9a6db385f 100644 --- a/Resources/Textures/_CP14/Objects/Materials/wood.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Materials/wood.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14, modified by vladimir.s", + "copyright": "Created by TheShuEd (Github), modified by vladimir.s", "states": [ { "name": "log" @@ -26,4 +26,4 @@ "name": "planks_3" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Misc/artificial_flame.rsi/meta.json b/Resources/Textures/_CP14/Objects/Misc/artificial_flame.rsi/meta.json index 3b55829373..291a6b0911 100644 --- a/Resources/Textures/_CP14/Objects/Misc/artificial_flame.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Misc/artificial_flame.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk", + "copyright": "Created by TheShuEd", "states": [ { "name": "icon", @@ -83,4 +83,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Specific/Alchemy/cauldron.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Alchemy/cauldron.rsi/meta.json index 5ef7c324b7..f2701d0e1e 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Alchemy/cauldron.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Alchemy/cauldron.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Objects/Specific/Alchemy/dropper.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Alchemy/dropper.rsi/meta.json index f6c2f933e2..bcefb76cec 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Alchemy/dropper.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Alchemy/dropper.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github)", "states": [ { "name": "dropper" @@ -17,4 +17,4 @@ "name": "liq-2" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Objects/Specific/Alchemy/mortar_pestle.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Alchemy/mortar_pestle.rsi/meta.json index cd5e11801f..8e1b1ad62c 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Alchemy/mortar_pestle.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Alchemy/mortar_pestle.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "full" diff --git a/Resources/Textures/_CP14/Objects/Specific/Alchemy/syringe.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Alchemy/syringe.rsi/meta.json index 16d91a43db..6a79f8644f 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Alchemy/syringe.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Alchemy/syringe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab for Crystallpunk", + "copyright": "Created by Max Gab", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_small.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_small.rsi/meta.json index da3144d894..65e2e349a7 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_small.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_small.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "vial" diff --git a/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_tiny.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_tiny.rsi/meta.json index da3144d894..65e2e349a7 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_tiny.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Alchemy/vial_tiny.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "vial" diff --git a/Resources/Textures/_CP14/Objects/Specific/Blacksmith/melting_molds.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Blacksmith/melting_molds.rsi/meta.json index 5380787aba..90eb0750ce 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Blacksmith/melting_molds.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Blacksmith/melting_molds.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "blank" diff --git a/Resources/Textures/_CP14/Objects/Specific/Farming/seeds.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Farming/seeds.rsi/meta.json index 3c537a4494..4e1d608e61 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Farming/seeds.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Farming/seeds.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "bag" diff --git a/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/aura_scanner.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/aura_scanner.rsi/meta.json index 7cabc6a62d..355602fb53 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/aura_scanner.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/aura_scanner.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (discord/github) for CrystallPunk 14", + "copyright": "Created by Jaraten (discord/github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/crystal.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/crystal.rsi/meta.json index add8b46e5e..62c74e8f0b 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/crystal.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/crystal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "small1" diff --git a/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/powerline_gauntlet.rsi/meta.json b/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/powerline_gauntlet.rsi/meta.json index 7cabc6a62d..355602fb53 100644 --- a/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/powerline_gauntlet.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Specific/Thaumaturgy/powerline_gauntlet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (discord/github) for CrystallPunk 14", + "copyright": "Created by Jaraten (discord/github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Tools/crowbar.rsi/meta.json b/Resources/Textures/_CP14/Objects/Tools/crowbar.rsi/meta.json index d0e8427409..82588ec9cb 100644 --- a/Resources/Textures/_CP14/Objects/Tools/crowbar.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Tools/crowbar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Tools/crystal_lamp.rsi/meta.json b/Resources/Textures/_CP14/Objects/Tools/crystal_lamp.rsi/meta.json index f2bf31c997..4b9a68407a 100644 --- a/Resources/Textures/_CP14/Objects/Tools/crystal_lamp.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Tools/crystal_lamp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten (Github/discord) for CrystallPunk", + "copyright": "Created by jaraten (Github/discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Tools/scissors.rsi/meta.json b/Resources/Textures/_CP14/Objects/Tools/scissors.rsi/meta.json index e08df2c0c6..81406cb4f6 100644 --- a/Resources/Textures/_CP14/Objects/Tools/scissors.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Tools/scissors.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Omsoyk for CrystallPunk14", + "copyright": "Created by Omsoyk ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Tools/wooden_bucket.rsi/meta.json b/Resources/Textures/_CP14/Objects/Tools/wooden_bucket.rsi/meta.json index d8161c1f31..5bdce4a8bd 100644 --- a/Resources/Textures/_CP14/Objects/Tools/wooden_bucket.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Tools/wooden_bucket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (github/discord) for CrystallPunk14, modified by vladimir.s", + "copyright": "Created by Jaraten (github/discord) , modified by vladimir.s", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Magic/TwoHandedStaff/healing_staff.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Magic/TwoHandedStaff/healing_staff.rsi/meta.json index 45a43e9868..ca79c7a503 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Magic/TwoHandedStaff/healing_staff.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Magic/TwoHandedStaff/healing_staff.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleHammer/battleHammer.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleHammer/battleHammer.rsi/meta.json index d8be2df558..837da6b0e8 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleHammer/battleHammer.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleHammer/battleHammer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) and modified by Jaraten for CrystallPunk", + "copyright": "Created by TheShuEd (Github) and modified by Jaraten", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleStaff/battleStaff.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleStaff/battleStaff.rsi/meta.json index a5eb520fa7..c0917d833a 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleStaff/battleStaff.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/BattleStaff/battleStaff.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/dagger.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/dagger.rsi/meta.json index 0a251e01d5..0f12276b8c 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/dagger.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/dagger.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice_dagger.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice_dagger.rsi/meta.json index 00c03264da..7d2071ed36 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice_dagger.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Dagger/ice_dagger.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/HandheldAxe/handheldAxe.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/HandheldAxe/handheldAxe.rsi/meta.json index d0e8427409..82588ec9cb 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/HandheldAxe/handheldAxe.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/HandheldAxe/handheldAxe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hoe/hoe.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hoe/hoe.rsi/meta.json index d0e8427409..82588ec9cb 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Hoe/hoe.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Hoe/hoe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/LightHammer/lightHammer.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/LightHammer/lightHammer.rsi/meta.json index d0e8427409..82588ec9cb 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/LightHammer/lightHammer.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/LightHammer/lightHammer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mace/mace.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mace/mace.rsi/meta.json index 660e8ad544..999e0d7aaf 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Mace/mace.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Mace/mace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by link (Discord) for CrystallPunk", + "copyright": "Created by link (Discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/pickaxe.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/pickaxe.rsi/meta.json index 2033d083b2..1103b688d5 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/pickaxe.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Pickaxe/pickaxe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/meta.json index 5a5ea81802..37fa0552a3 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shield/shield.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/shovel.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/shovel.rsi/meta.json index d0e8427409..82588ec9cb 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/shovel.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Shovel/shovel.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sickle/sickle.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sickle/sickle.rsi/meta.json index 0a251e01d5..0f12276b8c 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sickle/sickle.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sickle/sickle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/sword.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/sword.rsi/meta.json index d18377d95a..8ed6de0a3b 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/sword.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/Sword/sword.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/ThrowableSpear/throwableSpear.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/ThrowableSpear/throwableSpear.rsi/meta.json index d0e8427409..82588ec9cb 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/ThrowableSpear/throwableSpear.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/ThrowableSpear/throwableSpear.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/scythe.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/scythe.rsi/meta.json index a5eb520fa7..c0917d833a 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/scythe.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/scythe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/twoHandedSword.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/twoHandedSword.rsi/meta.json index a5eb520fa7..c0917d833a 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/twoHandedSword.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Melee/TwoHandedSword/twoHandedSword.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk", + "copyright": "Created by TheShuEd (Github)", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/crossbolt.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/crossbolt.rsi/meta.json index 7604c8d585..31d5036763 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/crossbolt.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Ranged/Projectiles/crossbolt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (github) for CrystallPunk14", + "copyright": "Created by TheShuEd (github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/Weapons/Ranged/light_crossbow.rsi/meta.json b/Resources/Textures/_CP14/Objects/Weapons/Ranged/light_crossbow.rsi/meta.json index 2b5c07ca1a..85aa40f54c 100644 --- a/Resources/Textures/_CP14/Objects/Weapons/Ranged/light_crossbow.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Weapons/Ranged/light_crossbow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (github) for CrystallPunk14", + "copyright": "Created by TheShuEd (github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Objects/keys.rsi/meta.json b/Resources/Textures/_CP14/Objects/keys.rsi/meta.json index 9f0d6e7d4e..28796a771d 100644 --- a/Resources/Textures/_CP14/Objects/keys.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/keys.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "key1" diff --git a/Resources/Textures/_CP14/Objects/sharpening_stone.rsi/meta.json b/Resources/Textures/_CP14/Objects/sharpening_stone.rsi/meta.json index 70b76f0a4a..98f6635bdb 100644 --- a/Resources/Textures/_CP14/Objects/sharpening_stone.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/sharpening_stone.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "base" diff --git a/Resources/Textures/_CP14/Parallaxes/attributions.yml b/Resources/Textures/_CP14/Parallaxes/attributions.yml index d862810a0f..aa0d4ab8db 100644 --- a/Resources/Textures/_CP14/Parallaxes/attributions.yml +++ b/Resources/Textures/_CP14/Parallaxes/attributions.yml @@ -1,9 +1,9 @@ - files: ["Shadows.png"] license: "CC-BY-SA-3.0" - copyright: "Created by TheShuEd for CrystallPunk14" + copyright: "Created by TheShuEd" source: "https://github.com/crystallpunk-14/crystall-punk-14" - files: ["ocean.png", "ocean_overlay.png", "ocean_overlay2.png"] license: "CC0-1.0" copyright: "Created by TheShuEd" - source: "https://github.com/space-syndicate/space-station-14/pull/1938" \ No newline at end of file + source: "https://github.com/space-syndicate/space-station-14/pull/1938" diff --git a/Resources/Textures/_CP14/Structures/Decoration/statue_gob.rsi/meta.json b/Resources/Textures/_CP14/Structures/Decoration/statue_gob.rsi/meta.json index 34a0997c53..f416daa863 100644 --- a/Resources/Textures/_CP14/Structures/Decoration/statue_gob.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Decoration/statue_gob.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by vladimir.s for CrystallPunk14", + "copyright": "Created by vladimir.s ", "size": { "x": 64, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Fences/cliff_dirt.rsi/meta.json b/Resources/Textures/_CP14/Structures/Fences/cliff_dirt.rsi/meta.json index bed8d79ddb..e797ae9c27 100644 --- a/Resources/Textures/_CP14/Structures/Fences/cliff_dirt.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Fences/cliff_dirt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "By Jaraten(github/discord) for CrystallPunk14", + "copyright": "By Jaraten(github/discord) ", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Flora/Farm/wheat.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Farm/wheat.rsi/meta.json index 215c910bae..da9089f3b0 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Farm/wheat.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Farm/wheat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd ", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Structures/Flora/Flowers/red_rose.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Flowers/red_rose.rsi/meta.json index a6a1aad1b3..7696b07a3c 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Flowers/red_rose.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Flowers/red_rose.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd ", "states": [ { "name": "world1" diff --git a/Resources/Textures/_CP14/Structures/Flora/Flowers/yellow_dayflin.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Flowers/yellow_dayflin.rsi/meta.json index 07332436b4..c66835ba8a 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Flowers/yellow_dayflin.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Flowers/yellow_dayflin.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Max Gab for CrystallPunk14", + "copyright": "Created by Max Gab ", "states": [ { "name": "world1" diff --git a/Resources/Textures/_CP14/Structures/Flora/Wild/agaric.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Wild/agaric.rsi/meta.json index dfba47b6f7..03e1cfe67a 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Wild/agaric.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Wild/agaric.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "world1" diff --git a/Resources/Textures/_CP14/Structures/Flora/Wild/blue_amanita.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Wild/blue_amanita.rsi/meta.json index 07332436b4..c66835ba8a 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Wild/blue_amanita.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Wild/blue_amanita.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Max Gab for CrystallPunk14", + "copyright": "Created by Max Gab ", "states": [ { "name": "world1" diff --git a/Resources/Textures/_CP14/Structures/Flora/Wild/chromium_slime.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Wild/chromium_slime.rsi/meta.json index 7582efa4e7..9dcb1a0b40 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Wild/chromium_slime.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Wild/chromium_slime.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "world1", diff --git a/Resources/Textures/_CP14/Structures/Flora/Wild/lumishroom.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Wild/lumishroom.rsi/meta.json index dfba47b6f7..03e1cfe67a 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Wild/lumishroom.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Wild/lumishroom.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "states": [ { "name": "world1" diff --git a/Resources/Textures/_CP14/Structures/Flora/Wild/wild_sage.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/Wild/wild_sage.rsi/meta.json index 9bd4b2087c..94c5cc19f5 100644 --- a/Resources/Textures/_CP14/Structures/Flora/Wild/wild_sage.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/Wild/wild_sage.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by Prazar for CrystallPunk14", + "copyright": "Created by Prazar ", "states": [ { "name": "world1" diff --git a/Resources/Textures/_CP14/Structures/Flora/royal_pumpkin.rsi/meta.json b/Resources/Textures/_CP14/Structures/Flora/royal_pumpkin.rsi/meta.json index d179640a3e..2b52f77d16 100644 --- a/Resources/Textures/_CP14/Structures/Flora/royal_pumpkin.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Flora/royal_pumpkin.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by KREKS for CrystallPunk14", + "copyright": "Created by KREKS ", "size": { "x": 64, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Furniture/Tables/wood.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/Tables/wood.rsi/meta.json index 2b45dfe665..38421f5b72 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/Tables/wood.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/Tables/wood.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14 and resprite by Jaraten and vladimir.s", + "copyright": "Created by TheShuEd (Github) and resprite by Jaraten and vladimir.s", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Furniture/Tables/wood_counter.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/Tables/wood_counter.rsi/meta.json index 9db09ac085..d900a07359 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/Tables/wood_counter.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/Tables/wood_counter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/meta.json index 385a7cae08..eba21e1818 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/barrel.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by vladimir.s for CrystallPunk14", + "copyright": "Created by vladimir.s ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Furniture/bonfire.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/bonfire.rsi/meta.json index 3a92ca785f..467a04d17c 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/bonfire.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/bonfire.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Furniture/chairs.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/chairs.rsi/meta.json index a5f5349c67..62a7c00098 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/chairs.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/chairs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk 14, modified by vladimir.s", + "copyright": "Created by TheShuEd (Github) , modified by vladimir.s", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Furniture/lamppost.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/lamppost.rsi/meta.json index f10780d0b2..411ae2a9a1 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/lamppost.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/lamppost.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "created by vladimir.s for Crystallpunk", + "copyright": "created by vladimir.s", "size": { "x": 64, "y": 96 @@ -35,4 +35,4 @@ "name": "light_single_right_blue" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_CP14/Structures/Furniture/mannequin.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/mannequin.rsi/meta.json index 56753a2bb8..984088628b 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/mannequin.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/mannequin.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Furniture/pallets.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/pallets.rsi/meta.json index 3767041f7c..399bb79c7a 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/pallets.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/pallets.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14 and resprite by Jaraten and vladimir.s", + "copyright": "Created by TheShuEd (Github) and resprite by Jaraten and vladimir.s", "size": { "x": 32, "y": 32 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 index cd26f99fd0..c4d2656437 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/wallmount_order_board.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd ", "size": { "x": 46, "y": 84 diff --git a/Resources/Textures/_CP14/Structures/Furniture/wallmount_torch.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/wallmount_torch.rsi/meta.json index e318f0c4b4..0e94e8156b 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/wallmount_torch.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/wallmount_torch.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Agoichi for CrystallPunk14", + "copyright": "Created by Agoichi ", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Furniture/wooden_bed.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/wooden_bed.rsi/meta.json index 2d2faf6c2a..846faf67d7 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/wooden_bed.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/wooden_bed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten(discord) for CrystallPunk14, modified by vladimir.s", + "copyright": "Created by jaraten(discord) , modified by vladimir.s", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Furniture/workbench.rsi/meta.json b/Resources/Textures/_CP14/Structures/Furniture/workbench.rsi/meta.json index b90bbaf6d2..6b71123b96 100644 --- a/Resources/Textures/_CP14/Structures/Furniture/workbench.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Furniture/workbench.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten(discord) for CrystallPunk14, modified by vladimir.s. Cooking table by Max Gab", + "copyright": "Created by jaraten(discord) , modified by vladimir.s. Cooking table by Max Gab", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Structures/Shuttle/traveling_storeship_anchor.rsi/meta.json b/Resources/Textures/_CP14/Structures/Shuttle/traveling_storeship_anchor.rsi/meta.json index 6a0d86ca0d..665037baa1 100644 --- a/Resources/Textures/_CP14/Structures/Shuttle/traveling_storeship_anchor.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Shuttle/traveling_storeship_anchor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd ", "size": { "x": 64, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Shuttle/wing_big.rsi/meta.json b/Resources/Textures/_CP14/Structures/Shuttle/wing_big.rsi/meta.json index ce3bc1502b..80bc456340 100644 --- a/Resources/Textures/_CP14/Structures/Shuttle/wing_big.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Shuttle/wing_big.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "size": { "x": 144, "y": 128 diff --git a/Resources/Textures/_CP14/Structures/Shuttle/wing_small.rsi/meta.json b/Resources/Textures/_CP14/Structures/Shuttle/wing_small.rsi/meta.json index 8e7f2b7c54..2843d79b48 100644 --- a/Resources/Textures/_CP14/Structures/Shuttle/wing_small.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Shuttle/wing_small.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14", + "copyright": "Created by TheShuEd (Github) ", "size": { "x": 96, "y": 80 diff --git a/Resources/Textures/_CP14/Structures/Specific/Alchemy/alchemy_furnace.rsi/meta.json b/Resources/Textures/_CP14/Structures/Specific/Alchemy/alchemy_furnace.rsi/meta.json index daf0da842d..dc38bc9d87 100644 --- a/Resources/Textures/_CP14/Structures/Specific/Alchemy/alchemy_furnace.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Specific/Alchemy/alchemy_furnace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten and TheShuEd (Github) for CrystallPunk 14", + "copyright": "Created by Jaraten and TheShuEd (Github) ", "size": { "x": 32, "y": 48 diff --git a/Resources/Textures/_CP14/Structures/Specific/Alchemy/normalizer.rsi/meta.json b/Resources/Textures/_CP14/Structures/Specific/Alchemy/normalizer.rsi/meta.json index bb9f91c500..0fb0834718 100644 --- a/Resources/Textures/_CP14/Structures/Specific/Alchemy/normalizer.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Specific/Alchemy/normalizer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Specific/Economy/cash_device.rsi/meta.json b/Resources/Textures/_CP14/Structures/Specific/Economy/cash_device.rsi/meta.json index 5a6ecdbd18..0429b21305 100644 --- a/Resources/Textures/_CP14/Structures/Specific/Economy/cash_device.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Specific/Economy/cash_device.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten and TheShuEd (Github) for CrystallPunk 14", + "copyright": "Created by Jaraten and TheShuEd (Github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/Spreader.rsi/meta.json b/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/Spreader.rsi/meta.json index 80f72f5c53..ce412871ed 100644 --- a/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/Spreader.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/Spreader.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (discord/github) for CrystallPunk 14", + "copyright": "Created by Jaraten (discord/github) ", "size": { "x": 32, "y": 48 diff --git a/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/elemental_reactor.rsi/meta.json b/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/elemental_reactor.rsi/meta.json index 5dff542fda..4fd6bb58d4 100644 --- a/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/elemental_reactor.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Specific/Thaumaturgy/elemental_reactor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShued (github) for CrystallPunk 14", + "copyright": "Created by TheShued (github) ", "size": { "x": 48, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Specific/sharpening_stone.rsi/meta.json b/Resources/Textures/_CP14/Structures/Specific/sharpening_stone.rsi/meta.json index 6e15d2ca97..49f098da4c 100644 --- a/Resources/Textures/_CP14/Structures/Specific/sharpening_stone.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Specific/sharpening_stone.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk 14, modified by vladimir.s", + "copyright": "Created by TheShuEd (Github) , modified by vladimir.s", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Storage/Crates/brasschest.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Crates/brasschest.rsi/meta.json index e7f933a088..4eb277a766 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Crates/brasschest.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Crates/brasschest.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Agoichi (Github) for CrystallPunk, modified by Jaraten and vladimir.s", + "copyright": "Created by Agoichi (Github), modified by Jaraten and vladimir.s", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Storage/Crates/coffin.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Crates/coffin.rsi/meta.json index dbfe658a9a..9dadce6dfd 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Crates/coffin.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Crates/coffin.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "CrystallPunk14, modified by TheShuEd", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Storage/Crates/large_wooden_crate.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Crates/large_wooden_crate.rsi/meta.json index 3680140092..ab1cd380cd 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Crates/large_wooden_crate.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Crates/large_wooden_crate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (Github/discord) for CrystallPunk", + "copyright": "Created by Jaraten (Github/discord)", "size": { "x": 32, "y": 48 diff --git a/Resources/Textures/_CP14/Structures/Storage/Crates/small_wooden_crate.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Crates/small_wooden_crate.rsi/meta.json index 3680140092..ab1cd380cd 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Crates/small_wooden_crate.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Crates/small_wooden_crate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (Github/discord) for CrystallPunk", + "copyright": "Created by Jaraten (Github/discord)", "size": { "x": 32, "y": 48 diff --git a/Resources/Textures/_CP14/Structures/Storage/Crates/woodenchest.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Crates/woodenchest.rsi/meta.json index e7f933a088..4eb277a766 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Crates/woodenchest.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Crates/woodenchest.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Agoichi (Github) for CrystallPunk, modified by Jaraten and vladimir.s", + "copyright": "Created by Agoichi (Github), modified by Jaraten and vladimir.s", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Storage/Dressers/iron_cabinet.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Dressers/iron_cabinet.rsi/meta.json index 88383e3500..efd8870e23 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Dressers/iron_cabinet.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Dressers/iron_cabinet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk14", + "copyright": "Created by TheShuEd ", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cabinet.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cabinet.rsi/meta.json index 2834faa9a8..f825d86b68 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cabinet.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cabinet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten(discord) for CrystallPunk14, modified by vladimir.s", + "copyright": "Created by jaraten(discord) , modified by vladimir.s", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cupboard.rsi/meta.json b/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cupboard.rsi/meta.json index 00bb0d259a..97fedb2b3f 100644 --- a/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cupboard.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Storage/Dressers/wood_cupboard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten(discord) for CrystallPunk14, modified by vladimir.s", + "copyright": "Created by jaraten(discord) , modified by vladimir.s", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_32icon.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_32icon.rsi/meta.json index 07946d7945..04ceec6f0e 100644 --- a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_32icon.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_32icon.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github) for CrystallPunk 14", + "copyright": "Created by TheShuEd (Github) ", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_bar_shelf.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_bar_shelf.rsi/meta.json index 1ac0bead77..3db8d19205 100644 --- a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_bar_shelf.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_bar_shelf.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by jaraten(discord) for CrystallPunk14", + "copyright": "Created by jaraten(discord) ", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_lamp.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_lamp.rsi/meta.json index fd81ba9f1b..4bd3fe1b92 100644 --- a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_lamp.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_lamp.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten for CrystallPunk14", + "copyright": "Created by Jaraten ", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_painting.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_painting.rsi/meta.json index e59c1b3021..2ec4e93c1b 100644 --- a/Resources/Textures/_CP14/Structures/Wallmount/wallmount_painting.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallmount/wallmount_painting.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab for CrystallPunk14", + "copyright": "Created by Max Gab ", "size": { "x": 32, "y": 96 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/icons.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/icons.rsi/meta.json index f5271e6f2a..0781623b50 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/icons.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd (Github/discord) for CrystallPunk", + "copyright": "Created by TheShuEd (Github/discord)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank.rsi/meta.json index b952cfe5a6..5d5b99fcaa 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank2.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank2.rsi/meta.json index b952cfe5a6..5d5b99fcaa 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank2.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_bank2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by TheShuEd for CrystallPunk", + "copyright": "Created by TheShuEd", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_black.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_black.rsi/meta.json index 5596177727..c71033a34c 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_black.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_black.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab (discord) for CrystallPunk", + "copyright": "Created by Max Gab (discord)", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_green.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_green.rsi/meta.json index ed8a32001a..f528bd15aa 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_green.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_green.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten (Github/discord) for CrystallPunk", + "copyright": "Created by jaraten (Github/discord)", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_purple.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_purple.rsi/meta.json index ed8a32001a..f528bd15aa 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_purple.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_purple.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten (Github/discord) for CrystallPunk", + "copyright": "Created by jaraten (Github/discord)", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_red.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_red.rsi/meta.json index 5596177727..c71033a34c 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_red.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab (discord) for CrystallPunk", + "copyright": "Created by Max Gab (discord)", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white.rsi/meta.json index 5596177727..c71033a34c 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab (discord) for CrystallPunk", + "copyright": "Created by Max Gab (discord)", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white2.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white2.rsi/meta.json index 5596177727..c71033a34c 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white2.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_white2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab (discord) for CrystallPunk", + "copyright": "Created by Max Gab (discord)", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_yellow.rsi/meta.json b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_yellow.rsi/meta.json index 5596177727..c71033a34c 100644 --- a/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_yellow.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Wallpaper/wallpaper_yellow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Max Gab (discord) for CrystallPunk", + "copyright": "Created by Max Gab (discord)", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone.rsi/meta.json index 1736fe4906..cc80f18386 100644 --- a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_copper.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_copper.rsi/meta.json index 1736fe4906..cc80f18386 100644 --- a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_copper.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_copper.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_gold.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_gold.rsi/meta.json index 1736fe4906..cc80f18386 100644 --- a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_gold.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_gold.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_iron.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_iron.rsi/meta.json index 1736fe4906..cc80f18386 100644 --- a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_iron.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_iron.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_silver.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_silver.rsi/meta.json index 1736fe4906..cc80f18386 100644 --- a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_silver.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_silver.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_strong.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_strong.rsi/meta.json index 1736fe4906..cc80f18386 100644 --- a/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_strong.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/Natural/cave_stone_strong.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/Natural/dirt_wall.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/Natural/dirt_wall.rsi/meta.json index 1736fe4906..cc80f18386 100644 --- a/Resources/Textures/_CP14/Structures/Walls/Natural/dirt_wall.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/Natural/dirt_wall.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/cardboard_wall.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/cardboard_wall.rsi/meta.json index 3848f69a02..1805f444ee 100644 --- a/Resources/Textures/_CP14/Structures/Walls/cardboard_wall.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/cardboard_wall.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd (Discord) for CrystallPunk14", + "copyright": "Created by TheShuEd (Discord) ", "states": [ { "name": "wood0", diff --git a/Resources/Textures/_CP14/Structures/Walls/cyan_wall.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/cyan_wall.rsi/meta.json index 92f3058058..4a4aa42d9b 100644 --- a/Resources/Textures/_CP14/Structures/Walls/cyan_wall.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/cyan_wall.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by jaraten (Discord/Github) for CrystallPunk14", + "copyright": "Created by jaraten (Discord/Github) ", "states": [ { "name": "wall0", diff --git a/Resources/Textures/_CP14/Structures/Walls/marblebricks_stone_wall.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/marblebricks_stone_wall.rsi/meta.json index 7cf4514836..cb423e9895 100644 --- a/Resources/Textures/_CP14/Structures/Walls/marblebricks_stone_wall.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/marblebricks_stone_wall.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by jaraten (Discord/Github) for CrystallPunk14", + "copyright": "Created by jaraten (Discord/Github) ", "size": { "x": 32, "y": 64 diff --git a/Resources/Textures/_CP14/Structures/Walls/wall_frame.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/wall_frame.rsi/meta.json index df0390090b..cb41df9f28 100644 --- a/Resources/Textures/_CP14/Structures/Walls/wall_frame.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/wall_frame.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by TheShuEd & Jaraten for CrystallPunk14, modified by vladimir.s", + "copyright": "Created by TheShuEd & Jaraten , modified by vladimir.s", "states": [ { "name": "wooden" diff --git a/Resources/Textures/_CP14/Structures/Walls/wall_of_skulls.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/wall_of_skulls.rsi/meta.json index 3ba3522393..544305558a 100644 --- a/Resources/Textures/_CP14/Structures/Walls/wall_of_skulls.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/wall_of_skulls.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CC-BY-SA-3.0", - "copyright": "Created by Skilets (Discord) for CrystallPunk14", + "copyright": "Created by Skilets (Discord) ", "states": [ { "name": "skulls0", diff --git a/Resources/Textures/_CP14/Structures/Walls/wooden_wall.rsi/meta.json b/Resources/Textures/_CP14/Structures/Walls/wooden_wall.rsi/meta.json index b9bc9194e6..a718aef423 100644 --- a/Resources/Textures/_CP14/Structures/Walls/wooden_wall.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Walls/wooden_wall.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CLA", - "copyright": "Created by jaraten (Discord/Github) for CrystallPunk14", + "copyright": "Created by jaraten (Discord/Github) ", "states": [ { "name": "wood0", diff --git a/Resources/Textures/_CP14/Structures/Windows/directional.rsi/meta.json b/Resources/Textures/_CP14/Structures/Windows/directional.rsi/meta.json index 4939d495a4..0a28167996 100644 --- a/Resources/Textures/_CP14/Structures/Windows/directional.rsi/meta.json +++ b/Resources/Textures/_CP14/Structures/Windows/directional.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CLA", - "copyright": "Created by Jaraten (discord/Github) for CrystallPunk 14", + "copyright": "Created by Jaraten (discord/Github) ", "size": { "x": 32, "y": 80 diff --git a/Resources/Textures/_CP14/Tiles/Grass/attribution.yml b/Resources/Textures/_CP14/Tiles/Grass/attribution.yml index bdbac9fb83..60be04fe4f 100644 --- a/Resources/Textures/_CP14/Tiles/Grass/attribution.yml +++ b/Resources/Textures/_CP14/Tiles/Grass/attribution.yml @@ -9,5 +9,5 @@ - single_edge_SE.png - single_edge_SW.png license: "CC-BY-SA-3.0" - copyright: "Created by TheShuEd for CrystallPunk" + copyright: "Created by TheShuEd " source: "https://github.com/crystallpunk-14/crystall-punk-14/pull/290" diff --git a/Resources/Textures/_CP14/Tiles/GrassLight/attribution.yml b/Resources/Textures/_CP14/Tiles/GrassLight/attribution.yml index 60c34aef3d..c49615ca8b 100644 --- a/Resources/Textures/_CP14/Tiles/GrassLight/attribution.yml +++ b/Resources/Textures/_CP14/Tiles/GrassLight/attribution.yml @@ -9,5 +9,5 @@ - single_edge_SE.png - single_edge_SW.png license: "CC-BY-SA-3.0" - copyright: "Created by TheShuEd for CrystallPunk project" + copyright: "Created by TheShuEd" source: "https://github.com/crystallpunk-14/crystall-punk-14/pull/290" diff --git a/Resources/Textures/_CP14/Tiles/Water/water.rsi/meta.json b/Resources/Textures/_CP14/Tiles/Water/water.rsi/meta.json index f27eea61be..d85ffecee4 100644 --- a/Resources/Textures/_CP14/Tiles/Water/water.rsi/meta.json +++ b/Resources/Textures/_CP14/Tiles/Water/water.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CLA", - "copyright": "Created by vladimir.s for Crystallpunk", + "copyright": "Created by vladimir.s", "states": [ { "name": "full" diff --git a/Resources/Textures/_CP14/Tiles/attributions.yml b/Resources/Textures/_CP14/Tiles/attributions.yml index 12cc40fe5d..398e628577 100644 --- a/Resources/Textures/_CP14/Tiles/attributions.yml +++ b/Resources/Textures/_CP14/Tiles/attributions.yml @@ -13,7 +13,7 @@ - files: ["stonebricks.png", "stonebricks_small_carved_1.png", "stonebricks_small_carved_2.png", "stonebricks_square_carved.png"] license: "CLA" - copyright: "Created by Jaraten for CrystallPunk14" + copyright: "Created by Jaraten" source: "https://github.com/crystallpunk-14/crystall-punk-14/" - files: ["red_woodplanks.png", "red_woodplanks_big.png", "red_woodplanks_big_broken.png", "red_woodplanks_broken.png", "red_woodplanks_cruciform.png", "red_woodplanks_cruciform_broken.png", "red_woodplanks_stairways.png", "red_woodplanks_stairways_broken.png"] @@ -28,5 +28,5 @@ - files: ["woodplanks_big_burned.png", "woodplanks_burned.png", "woodplanks_cruciform_burned.png", "woodplanks_stairways_burned.png"] license: "CLA" - copyright: "Created by Jaraten for CrystallPunk14" + copyright: "Created by Jaraten" source: "https://github.com/crystallpunk-14/crystall-punk-14/" diff --git a/Resources/Textures/_CP14/Tiles/chasm.rsi/meta.json b/Resources/Textures/_CP14/Tiles/chasm.rsi/meta.json index 3e16ebc182..fe9c7a40a9 100644 --- a/Resources/Textures/_CP14/Tiles/chasm.rsi/meta.json +++ b/Resources/Textures/_CP14/Tiles/chasm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by TheShuEd (Github) for CrystallPunk14, from https://github.com/crystallpunk-14/crystall-punk-14/pull/290", + "copyright": "Created by TheShuEd (Github) , from https://github.com/crystallpunk-14/crystall-punk-14/pull/290", "size": { "x": 32, "y": 32 diff --git a/Resources/manifest.yml b/Resources/manifest.yml index ce0e637b7d..67020a68c3 100644 --- a/Resources/manifest.yml +++ b/Resources/manifest.yml @@ -1,4 +1,4 @@ -defaultWindowTitle: CrystallPunk +defaultWindowTitle: CrystallEdge windowIconSet: /Textures/Logo/icon splashLogo: /Textures/Logo/logo.png diff --git a/Resources/migration.yml b/Resources/migration.yml index d33437eebe..ad8b42096c 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -1,4 +1,4 @@ -# <---> CrystallPunk migration zone +# <---> CrystallEdge migration zone # 2024-05-24 CP14CardboardWall: CP14WallCardboard @@ -146,7 +146,7 @@ CP14KeyBankSafe4: CP14KeyBankSafe CP14KeyBankSafe5: CP14KeyBankSafe CP14KeyBankSafe6: CP14KeyBankSafe -# <---> CrystallPunk migration zone end +# <---> CrystallEdge migration zone end # This is a basic dictionary that maps old entity prototype ids to new ids. This only works for entity prototypes, and diff --git a/Tools/_CP14/LocalizationHelper/README.md b/Tools/_CP14/LocalizationHelper/README.md index c55bdd79a1..1e8a17fb90 100644 --- a/Tools/_CP14/LocalizationHelper/README.md +++ b/Tools/_CP14/LocalizationHelper/README.md @@ -41,5 +41,5 @@ Author: asqw: Discord - .asqw, GitHub - comasqw Date: 24.06.2024 -License: All right reserved for CrystallPunk14 project only +License: All right reserved for CrystallEdge project only diff --git a/integration_test_run.bat b/integration_test_run.bat new file mode 100644 index 0000000000..5b3d6ac4c6 --- /dev/null +++ b/integration_test_run.bat @@ -0,0 +1,3 @@ +dotnet test --no-build --configuration DebugOpt Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 NUnit.MapWarningTo=Failed +pause +exit \ No newline at end of file