Adds wielding for all large guns (#26970)
* Adds wielding assets * Modifies meta.json files and adds artist credit * Adds wieldable component to a bunch of weapons * Moves shotgun inhands and wield inhands to their own folders (because its the only way the sprites would work) * Removes the wieldable component from some guns * Adds wielding sprites for wieldable guns that didnt have them * Adds gun wielding bonuses and base innaccuracy to wieldable guns. * Corrects wielded accuracy to be default accuracy instead of perfect * Makes the drozd smg and bulldog shotgun wieldable * Makes nukie c20r wieldable and adds sprites * Adds BaseGunWieldable * Makes all the newly wieldable gun use the base inheritable * Adds accuracy to smgs to resolve inheritance conflict * Makes all wieldable shotguns require wielding to fire because of a bug involving spread innacuracy * Adds wield bonus message on examine
@@ -33,4 +33,7 @@ public sealed partial class GunWieldBonusComponent : Component
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField, AutoNetworkedField]
|
[DataField, AutoNetworkedField]
|
||||||
public Angle AngleIncrease = Angle.FromDegrees(0);
|
public Angle AngleIncrease = Angle.FromDegrees(0);
|
||||||
|
|
||||||
|
[DataField]
|
||||||
|
public LocId? WieldBonusExamineMessage = "gunwieldbonus-component-examine";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
using Content.Shared.Examine;
|
||||||
using Content.Shared.Hands;
|
using Content.Shared.Hands;
|
||||||
using Content.Shared.Hands.Components;
|
using Content.Shared.Hands.Components;
|
||||||
using Content.Shared.Hands.EntitySystems;
|
using Content.Shared.Hands.EntitySystems;
|
||||||
@@ -45,6 +46,7 @@ public sealed class WieldableSystem : EntitySystem
|
|||||||
SubscribeLocalEvent<GunWieldBonusComponent, ItemWieldedEvent>(OnGunWielded);
|
SubscribeLocalEvent<GunWieldBonusComponent, ItemWieldedEvent>(OnGunWielded);
|
||||||
SubscribeLocalEvent<GunWieldBonusComponent, ItemUnwieldedEvent>(OnGunUnwielded);
|
SubscribeLocalEvent<GunWieldBonusComponent, ItemUnwieldedEvent>(OnGunUnwielded);
|
||||||
SubscribeLocalEvent<GunWieldBonusComponent, GunRefreshModifiersEvent>(OnGunRefreshModifiers);
|
SubscribeLocalEvent<GunWieldBonusComponent, GunRefreshModifiersEvent>(OnGunRefreshModifiers);
|
||||||
|
SubscribeLocalEvent<GunWieldBonusComponent, ExaminedEvent>(OnExamine);
|
||||||
|
|
||||||
SubscribeLocalEvent<IncreaseDamageOnWieldComponent, GetMeleeDamageEvent>(OnGetMeleeDamage);
|
SubscribeLocalEvent<IncreaseDamageOnWieldComponent, GetMeleeDamageEvent>(OnGetMeleeDamage);
|
||||||
}
|
}
|
||||||
@@ -95,6 +97,12 @@ public sealed class WieldableSystem : EntitySystem
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void OnExamine(EntityUid uid, GunWieldBonusComponent component, ref ExaminedEvent args)
|
||||||
|
{
|
||||||
|
if (component.WieldBonusExamineMessage != null)
|
||||||
|
args.PushText(Loc.GetString(component.WieldBonusExamineMessage));
|
||||||
|
}
|
||||||
|
|
||||||
private void AddToggleWieldVerb(EntityUid uid, WieldableComponent component, GetVerbsEvent<InteractionVerb> args)
|
private void AddToggleWieldVerb(EntityUid uid, WieldableComponent component, GetVerbsEvent<InteractionVerb> args)
|
||||||
{
|
{
|
||||||
if (args.Hands == null || !args.CanAccess || !args.CanInteract)
|
if (args.Hands == null || !args.CanAccess || !args.CanInteract)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
### Locale for wielding items; i.e. two-handing them
|
### Locale for wielding items; i.e. two-handing them
|
||||||
|
|
||||||
wieldable-verb-text-wield = Wield
|
wieldable-verb-text-wield = Wield
|
||||||
wieldable-verb-text-unwield = Unwield
|
wieldable-verb-text-unwield = Unwield
|
||||||
@@ -17,3 +17,4 @@ wieldable-component-not-in-hands = { CAPITALIZE(THE($item)) } isn't in your hand
|
|||||||
|
|
||||||
wieldable-component-requires = { CAPITALIZE(THE($item))} must be wielded!
|
wieldable-component-requires = { CAPITALIZE(THE($item))} must be wielded!
|
||||||
|
|
||||||
|
gunwieldbonus-component-examine = This weapon has improved accuracy when wielded.
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
# A basic inheritable template for a gun that is wieldable and has the standard inaccuracy.
|
||||||
|
- type: entity
|
||||||
|
id: BaseGunWieldable
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Wieldable
|
||||||
|
- type: GunWieldBonus
|
||||||
|
minAngle: -20
|
||||||
|
maxAngle: -30
|
||||||
|
- type: Gun
|
||||||
|
minAngle: 21
|
||||||
|
maxAngle: 32
|
||||||
@@ -200,7 +200,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: laser rifle
|
name: laser rifle
|
||||||
parent: BaseWeaponBattery
|
parent: [BaseWeaponBattery, BaseGunWieldable]
|
||||||
id: WeaponLaserCarbine
|
id: WeaponLaserCarbine
|
||||||
description: Favoured by Nanotrasen Security for being cheap and easy to use.
|
description: Favoured by Nanotrasen Security for being cheap and easy to use.
|
||||||
components:
|
components:
|
||||||
@@ -267,7 +267,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: pulse carbine
|
name: pulse carbine
|
||||||
parent: BaseWeaponBattery
|
parent: [BaseWeaponBattery, BaseGunWieldable]
|
||||||
id: WeaponPulseCarbine
|
id: WeaponPulseCarbine
|
||||||
description: A high tech energy carbine favoured by the NT-ERT operatives.
|
description: A high tech energy carbine favoured by the NT-ERT operatives.
|
||||||
components:
|
components:
|
||||||
@@ -298,7 +298,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: pulse rifle
|
name: pulse rifle
|
||||||
parent: BaseWeaponBattery
|
parent: [BaseWeaponBattery, BaseGunWieldable]
|
||||||
id: WeaponPulseRifle
|
id: WeaponPulseRifle
|
||||||
description: A weapon that is almost as infamous as its users.
|
description: A weapon that is almost as infamous as its users.
|
||||||
components:
|
components:
|
||||||
@@ -325,7 +325,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: laser cannon
|
name: laser cannon
|
||||||
parent: BaseWeaponBattery
|
parent: [BaseWeaponBattery, BaseGunWieldable]
|
||||||
id: WeaponLaserCannon
|
id: WeaponLaserCannon
|
||||||
description: A heavy duty, high powered laser weapon.
|
description: A heavy duty, high powered laser weapon.
|
||||||
components:
|
components:
|
||||||
@@ -380,7 +380,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: x-ray cannon
|
name: x-ray cannon
|
||||||
parent: BaseWeaponBattery
|
parent: [BaseWeaponBattery, BaseGunWieldable]
|
||||||
id: WeaponXrayCannon
|
id: WeaponXrayCannon
|
||||||
description: An experimental weapon that uses concentrated x-ray energy against its target.
|
description: An experimental weapon that uses concentrated x-ray energy against its target.
|
||||||
components:
|
components:
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: china lake
|
name: china lake
|
||||||
parent: BaseWeaponLauncher
|
parent: [BaseWeaponLauncher, BaseGunWieldable]
|
||||||
id: WeaponLauncherChinaLake
|
id: WeaponLauncherChinaLake
|
||||||
description: PLOOP
|
description: PLOOP
|
||||||
components:
|
components:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
name: BaseWeaponRifle
|
name: BaseWeaponRifle
|
||||||
parent: BaseItem
|
parent: [BaseItem, BaseGunWieldable]
|
||||||
id: BaseWeaponRifle
|
id: BaseWeaponRifle
|
||||||
description: A rooty tooty point and shooty.
|
description: A rooty tooty point and shooty.
|
||||||
abstract: true
|
abstract: true
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: C-20r sub machine gun
|
name: C-20r sub machine gun
|
||||||
parent: BaseWeaponSubMachineGun
|
parent: [BaseWeaponSubMachineGun, BaseGunWieldable]
|
||||||
id: WeaponSubMachineGunC20r
|
id: WeaponSubMachineGunC20r
|
||||||
description: A firearm that is often used by the infamous nuclear operatives. Uses .35 auto ammo.
|
description: A firearm that is often used by the infamous nuclear operatives. Uses .35 auto ammo.
|
||||||
components:
|
components:
|
||||||
@@ -94,6 +94,8 @@
|
|||||||
- type: Clothing
|
- type: Clothing
|
||||||
sprite: Objects/Weapons/Guns/SMGs/c20r.rsi
|
sprite: Objects/Weapons/Guns/SMGs/c20r.rsi
|
||||||
- type: Gun
|
- type: Gun
|
||||||
|
minAngle: 21
|
||||||
|
maxAngle: 32
|
||||||
shotsPerBurst: 5
|
shotsPerBurst: 5
|
||||||
availableModes:
|
availableModes:
|
||||||
- SemiAuto
|
- SemiAuto
|
||||||
@@ -111,7 +113,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: Drozd
|
name: Drozd
|
||||||
parent: BaseWeaponSubMachineGun
|
parent: [BaseWeaponSubMachineGun, BaseGunWieldable]
|
||||||
id: WeaponSubMachineGunDrozd
|
id: WeaponSubMachineGunDrozd
|
||||||
description: An excellent fully automatic Heavy SMG.
|
description: An excellent fully automatic Heavy SMG.
|
||||||
components:
|
components:
|
||||||
@@ -125,6 +127,8 @@
|
|||||||
- type: Clothing
|
- type: Clothing
|
||||||
sprite: Objects/Weapons/Guns/SMGs/drozd.rsi
|
sprite: Objects/Weapons/Guns/SMGs/drozd.rsi
|
||||||
- type: Gun
|
- type: Gun
|
||||||
|
minAngle: 21
|
||||||
|
maxAngle: 32
|
||||||
fireRate: 6
|
fireRate: 6
|
||||||
selectedMode: FullAuto
|
selectedMode: FullAuto
|
||||||
soundGunshot:
|
soundGunshot:
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
name: Bulldog
|
name: Bulldog
|
||||||
# Don't parent to BaseWeaponShotgun because it differs significantly
|
# Don't parent to BaseWeaponShotgun because it differs significantly
|
||||||
parent: BaseItem
|
parent: [BaseItem, BaseGunWieldable]
|
||||||
id: WeaponShotgunBulldog
|
id: WeaponShotgunBulldog
|
||||||
description: It's a magazine-fed shotgun designed for close quarters combat. Uses .50 shotgun shells.
|
description: It's a magazine-fed shotgun designed for close quarters combat. Uses .50 shotgun shells.
|
||||||
components:
|
components:
|
||||||
@@ -66,6 +66,7 @@
|
|||||||
- Back
|
- Back
|
||||||
- suitStorage
|
- suitStorage
|
||||||
- type: AmmoCounter
|
- type: AmmoCounter
|
||||||
|
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
|
||||||
- type: Gun
|
- type: Gun
|
||||||
fireRate: 2
|
fireRate: 2
|
||||||
selectedMode: FullAuto
|
selectedMode: FullAuto
|
||||||
@@ -101,7 +102,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: double-barreled shotgun
|
name: double-barreled shotgun
|
||||||
parent: BaseWeaponShotgun
|
parent: [BaseWeaponShotgun, BaseGunWieldable]
|
||||||
id: WeaponShotgunDoubleBarreled
|
id: WeaponShotgunDoubleBarreled
|
||||||
description: An immortal classic. Uses .50 shotgun shells.
|
description: An immortal classic. Uses .50 shotgun shells.
|
||||||
components:
|
components:
|
||||||
@@ -111,8 +112,8 @@
|
|||||||
size: Normal
|
size: Normal
|
||||||
shape:
|
shape:
|
||||||
- 0,0,4,0
|
- 0,0,4,0
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi
|
||||||
heldPrefix: db
|
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
|
||||||
- type: Gun
|
- type: Gun
|
||||||
fireRate: 2
|
fireRate: 2
|
||||||
- type: BallisticAmmoProvider
|
- type: BallisticAmmoProvider
|
||||||
@@ -134,7 +135,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: Enforcer
|
name: Enforcer
|
||||||
parent: BaseWeaponShotgun
|
parent: [BaseWeaponShotgun, BaseGunWieldable]
|
||||||
id: WeaponShotgunEnforcer
|
id: WeaponShotgunEnforcer
|
||||||
description: A premium combat shotgun based on the Kammerer design, featuring an upgraded clip capacity. .50 shotgun shells.
|
description: A premium combat shotgun based on the Kammerer design, featuring an upgraded clip capacity. .50 shotgun shells.
|
||||||
components:
|
components:
|
||||||
@@ -143,9 +144,9 @@
|
|||||||
- type: Clothing
|
- type: Clothing
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi
|
||||||
- type: Item
|
- type: Item
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/enforcer_inhands_64x.rsi
|
||||||
heldPrefix: enforcer
|
|
||||||
- type: BallisticAmmoProvider
|
- type: BallisticAmmoProvider
|
||||||
|
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: WeaponShotgunEnforcer
|
parent: WeaponShotgunEnforcer
|
||||||
@@ -157,7 +158,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: Kammerer
|
name: Kammerer
|
||||||
parent: BaseWeaponShotgun
|
parent: [BaseWeaponShotgun, BaseGunWieldable]
|
||||||
id: WeaponShotgunKammerer
|
id: WeaponShotgunKammerer
|
||||||
description: When an old Remington design meets modern materials, this is the result. A favourite weapon of militia forces throughout many worlds. Uses .50 shotgun shells.
|
description: When an old Remington design meets modern materials, this is the result. A favourite weapon of militia forces throughout many worlds. Uses .50 shotgun shells.
|
||||||
components:
|
components:
|
||||||
@@ -165,12 +166,12 @@
|
|||||||
size: Normal
|
size: Normal
|
||||||
shape:
|
shape:
|
||||||
- 0,0,4,0
|
- 0,0,4,0
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/pump_inhands_64x.rsi
|
||||||
heldPrefix: pump
|
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/pump.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/pump.rsi
|
||||||
- type: Clothing
|
- type: Clothing
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/pump.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/pump.rsi
|
||||||
|
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
|
||||||
- type: BallisticAmmoProvider
|
- type: BallisticAmmoProvider
|
||||||
capacity: 4
|
capacity: 4
|
||||||
- type: Tag
|
- type: Tag
|
||||||
@@ -189,8 +190,7 @@
|
|||||||
sprite: Objects/Weapons/Guns/Shotguns/sawn.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/sawn.rsi
|
||||||
- type: Item
|
- type: Item
|
||||||
size: Small
|
size: Small
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi
|
||||||
heldPrefix: sawn
|
|
||||||
- type: Gun
|
- type: Gun
|
||||||
fireRate: 4
|
fireRate: 4
|
||||||
- type: BallisticAmmoProvider
|
- type: BallisticAmmoProvider
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: blunderbuss
|
name: blunderbuss
|
||||||
parent: BaseWeaponShotgun
|
parent: [BaseWeaponShotgun, BaseGunWieldable]
|
||||||
id: WeaponShotgunBlunderbuss
|
id: WeaponShotgunBlunderbuss
|
||||||
suffix: Pirate
|
suffix: Pirate
|
||||||
description: Deadly at close range.
|
description: Deadly at close range.
|
||||||
@@ -251,6 +251,7 @@
|
|||||||
- 0,0,4,0
|
- 0,0,4,0
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/blunderbuss.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/blunderbuss.rsi
|
||||||
|
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
|
||||||
- type: Gun
|
- type: Gun
|
||||||
fireRate: 2
|
fireRate: 2
|
||||||
- type: BallisticAmmoProvider
|
- type: BallisticAmmoProvider
|
||||||
@@ -260,7 +261,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: improvised shotgun
|
name: improvised shotgun
|
||||||
parent: BaseWeaponShotgun
|
parent: [BaseWeaponShotgun, BaseGunWieldable]
|
||||||
id: WeaponShotgunImprovised
|
id: WeaponShotgunImprovised
|
||||||
description: A shitty, hand-made shotgun that uses .50 shotgun shells. It can only hold one round in the chamber.
|
description: A shitty, hand-made shotgun that uses .50 shotgun shells. It can only hold one round in the chamber.
|
||||||
components:
|
components:
|
||||||
@@ -272,8 +273,8 @@
|
|||||||
size: Normal
|
size: Normal
|
||||||
shape:
|
shape:
|
||||||
- 0,0,4,0
|
- 0,0,4,0
|
||||||
sprite: Objects/Weapons/Guns/Shotguns/inhands_64x.rsi
|
sprite: Objects/Weapons/Guns/Shotguns/improvised_shotgun_inhands_64x.rsi
|
||||||
heldPrefix: improvised
|
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
|
||||||
- type: Gun
|
- type: Gun
|
||||||
fireRate: 4 #No reason to stifle the firerate since you have to manually reload every time anyways.
|
fireRate: 4 #No reason to stifle the firerate since you have to manually reload every time anyways.
|
||||||
- type: BallisticAmmoProvider
|
- type: BallisticAmmoProvider
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: Kardashev-Mosin
|
name: Kardashev-Mosin
|
||||||
parent: BaseWeaponSniper
|
parent: [BaseWeaponSniper, BaseGunWieldable]
|
||||||
id: WeaponSniperMosin
|
id: WeaponSniperMosin
|
||||||
description: A weapon for hunting, or endless trench warfare. Uses .30 rifle ammo.
|
description: A weapon for hunting, or endless trench warfare. Uses .30 rifle ammo.
|
||||||
components:
|
components:
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
name: Hristov
|
name: Hristov
|
||||||
parent: BaseWeaponSniper
|
parent: [BaseWeaponSniper, BaseGunWieldable]
|
||||||
id: WeaponSniperHristov
|
id: WeaponSniperHristov
|
||||||
description: A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo.
|
description: A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo.
|
||||||
components:
|
components:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -33,6 +33,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0-inhand-left",
|
"name": "0-inhand-left",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -33,6 +33,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 807 B |
|
After Width: | Height: | Size: 803 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle), backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle), backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -33,6 +33,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 792 B |
|
After Width: | Height: | Size: 805 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -33,6 +33,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 792 B |
|
After Width: | Height: | Size: 805 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -42,6 +42,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-4.0",
|
"license": "CC-BY-SA-4.0",
|
||||||
"copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -21,6 +21,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 839 B |
|
After Width: | Height: | Size: 863 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -27,6 +27,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine), backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine), backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -27,6 +27,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 832 B |
|
After Width: | Height: | Size: 822 B |
@@ -45,6 +45,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 679 B |
|
After Width: | Height: | Size: 671 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -30,6 +30,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 719 B |
|
After Width: | Height: | Size: 709 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Made by brainfood1183(Github) inspired by an image created by rezierré#5003 (Discord)",
|
"copyright": "Made by brainfood1183(Github) inspired by an image created by rezierré#5003 (Discord), wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -20,6 +20,14 @@
|
|||||||
{
|
{
|
||||||
"name": "inhand-left",
|
"name": "inhand-left",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 949 B |
|
After Width: | Height: | Size: 964 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -27,6 +27,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 802 B |
|
After Width: | Height: | Size: 803 B |
|
Before Width: | Height: | Size: 661 B After Width: | Height: | Size: 661 B |
|
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 664 B |
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CC-BY-NC-4.0",
|
||||||
|
"copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244",
|
||||||
|
"size": {
|
||||||
|
"x": 64,
|
||||||
|
"y": 64
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 836 B |
|
After Width: | Height: | Size: 842 B |
|
Before Width: | Height: | Size: 550 B After Width: | Height: | Size: 550 B |
|
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 551 B |
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CC-BY-NC-4.0",
|
||||||
|
"copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244",
|
||||||
|
"size": {
|
||||||
|
"x": 64,
|
||||||
|
"y": 64
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 775 B |
|
After Width: | Height: | Size: 762 B |
|
Before Width: | Height: | Size: 643 B After Width: | Height: | Size: 643 B |
|
Before Width: | Height: | Size: 656 B After Width: | Height: | Size: 656 B |
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CC-BY-NC-4.0",
|
||||||
|
"copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244",
|
||||||
|
"size": {
|
||||||
|
"x": 64,
|
||||||
|
"y": 64
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 867 B |
|
After Width: | Height: | Size: 877 B |
@@ -1,51 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 1,
|
|
||||||
"license": "CC-BY-NC-4.0",
|
|
||||||
"copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, sawn-inhand states modified from db-inhand by Flareguy",
|
|
||||||
"size": {
|
|
||||||
"x": 64,
|
|
||||||
"y": 64
|
|
||||||
},
|
|
||||||
"states": [
|
|
||||||
{
|
|
||||||
"name": "pump-inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pump-inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "enforcer-inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "enforcer-inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "db-inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "db-inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sawn-inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "sawn-inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "improvised-inhand-left",
|
|
||||||
"directions": 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "improvised-inhand-right",
|
|
||||||
"directions": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 584 B After Width: | Height: | Size: 584 B |
|
Before Width: | Height: | Size: 595 B After Width: | Height: | Size: 595 B |
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CC-BY-NC-4.0",
|
||||||
|
"copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, wield sprites by RiceMar1244",
|
||||||
|
"size": {
|
||||||
|
"x": 64,
|
||||||
|
"y": 64
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 905 B |
|
After Width: | Height: | Size: 922 B |
|
Before Width: | Height: | Size: 517 B After Width: | Height: | Size: 517 B |
|
Before Width: | Height: | Size: 535 B After Width: | Height: | Size: 535 B |
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"license": "CC-BY-NC-4.0",
|
||||||
|
"copyright": "Taken from https://github.com/tgstation/tgstation/ at commit fb2d71495bfe81446159ef528534193d09dd8d34, sawn-inhand states modified from db-inhand by Flareguy",
|
||||||
|
"size": {
|
||||||
|
"x": 64,
|
||||||
|
"y": 64
|
||||||
|
},
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -21,6 +21,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 714 B |
|
After Width: | Height: | Size: 733 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"license": "CC-BY-SA-3.0",
|
"license": "CC-BY-SA-3.0",
|
||||||
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e, backpack sling sprite edited by Boaz1111",
|
"copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
|
||||||
"size": {
|
"size": {
|
||||||
"x": 32,
|
"x": 32,
|
||||||
"y": 32
|
"y": 32
|
||||||
@@ -21,6 +21,14 @@
|
|||||||
"name": "inhand-right",
|
"name": "inhand-right",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-left",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wielded-inhand-right",
|
||||||
|
"directions": 4
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "equipped-BACKPACK",
|
"name": "equipped-BACKPACK",
|
||||||
"directions": 4
|
"directions": 4
|
||||||
|
|||||||
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.6 KiB |