This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
forked from new-frontiers-14/frontier-station-14
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4de25b
commit c36370a
Showing
30 changed files
with
247 additions
and
49 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
clothing-hardsuits-jetpack = Джетпак |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...U/ss14-ru/prototypes/corvax/entities/objects/weapons/guns/salvage/magmiteplasmacutter.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ent-BulletMagmaPlasmacutterCharge = плазменный заряд | ||
ent-WeaponMagmitePlasmaCutter = магмитовый плазменный резак | ||
.desc = Магмитовая версия обычного плазменного резака. |
4 changes: 2 additions & 2 deletions
4
...Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/weapons/melee/magmitecrushers.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
ent-BulletMagnaCharge = магмитовый снаряд | ||
ent-BulletMagmaCharge = магмитовый снаряд | ||
.desc = Помечает цели для нанесения повышенного урона. | ||
ent-WeaponMagmiteCrusher = { ent-WeaponCrusher } | ||
ent-WeaponMagmiteCrusher = магмитовый крушитель | ||
.desc = { ent-WeaponCrusher.desc } | ||
ent-WeaponMagmiteCrusherGlaive = магмитовая глефа | ||
.desc = Ранняя версия протокинетического ускорителя в виде глефы. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ | |
slots: | ||
- Back | ||
- suitStorage | ||
- type: Tag | ||
tags: | ||
- Jetpack | ||
|
||
# Filled blue | ||
- type: entity | ||
|
17 changes: 17 additions & 0 deletions
17
Resources/Prototypes/Corvax/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
- type: entity | ||
id: BulletImpactEffectPlasma | ||
noSpawn: true | ||
components: | ||
- type: TimedDespawn | ||
lifetime: 0.2 | ||
- type: Sprite | ||
drawdepth: Effects | ||
layers: | ||
- shader: unshaded | ||
map: ["enum.EffectLayers.Unshaded"] | ||
sprite: Corvax/Effects/arcs.rsi | ||
state: magma | ||
- type: EffectVisuals | ||
- type: Tag | ||
tags: | ||
- HideContextMenu |
54 changes: 54 additions & 0 deletions
54
Resources/Prototypes/Corvax/Entities/Objects/Weapons/Guns/Projectiles/magic.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
- type: entity | ||
id: BulletMagmaCharge | ||
name: charge bolt | ||
parent: BaseBullet | ||
noSpawn: true | ||
description: Marks a target for additional damage. | ||
components: | ||
- type: Sprite | ||
noRot: false | ||
sprite: Corvax/Objects/Weapons/Guns/Projectiles/magic.rsi | ||
layers: | ||
- state: magmabolt | ||
shader: unshaded | ||
- type: DamageMarkerOnCollide | ||
whitelist: | ||
components: | ||
- MobState | ||
damage: | ||
types: | ||
Blunt: 40 | ||
Slash: 10 | ||
- type: Projectile | ||
impactEffect: BulletImpactEffectKinetic | ||
damage: | ||
types: | ||
Blunt: 0 | ||
Structural: 50 | ||
penetrationScore: 4 | ||
# Short lifespan | ||
- type: TimedDespawn | ||
lifetime: 0.4 | ||
|
||
- type: entity | ||
id: BulletMagmaPlasmacutterCharge | ||
name: charge bolt | ||
parent: BaseBullet | ||
noSpawn: true | ||
components: | ||
- type: Sprite | ||
noRot: false | ||
sprite: Corvax/Objects/Weapons/Guns/Projectiles/magic.rsi | ||
layers: | ||
- state: plasmacharge | ||
shader: unshaded | ||
- type: Projectile | ||
impactEffect: BulletImpactEffectPlasma | ||
damage: | ||
types: | ||
Blunt: 0 | ||
Structural: 50 | ||
penetrationScore: 6 | ||
# Short lifespan | ||
- type: TimedDespawn | ||
lifetime: 0.4 |
38 changes: 38 additions & 0 deletions
38
Resources/Prototypes/Corvax/Entities/Objects/Weapons/Guns/Salvage/magmiteplasmacutter.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
- type: entity | ||
id: WeaponMagmitePlasmaCutter | ||
parent: BaseItem | ||
name: magmite plasmacutter | ||
description: "A magmitic version of a conventional plasma cutter." | ||
components: | ||
- type: Sprite | ||
sprite: Corvax/Objects/Weapons/Guns/Salvage/magmite_plasma_cutter.rsi | ||
layers: | ||
- state: icon | ||
- state: icon-uncharged | ||
visible: false | ||
map: [ "empty-icon" ] | ||
- type: Gun | ||
fireRate: 0.5 | ||
selectedMode: SemiAuto | ||
availableModes: | ||
- SemiAuto | ||
soundGunshot: | ||
collection: MagmaPulse | ||
- type: AmmoCounter | ||
- type: Appearance | ||
- type: GenericVisualizer | ||
visuals: | ||
enum.AmmoVisuals.HasAmmo: | ||
empty-icon: | ||
True: { visible: False } | ||
False: { visible: True } | ||
- type: RechargeBasicEntityAmmo | ||
rechargeCooldown: 0.75 | ||
rechargeSound: | ||
path: /Audio/Weapons/Guns/MagIn/kinetic_reload.ogg | ||
- type: BasicEntityAmmoProvider | ||
proto: BulletMagmaPlasmacutterCharge | ||
capacity: 1 | ||
count: 1 | ||
- type: StaticPrice | ||
price: 3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
- type: soundCollection | ||
id: MagmaPulse | ||
files: | ||
- /Audio/Corvax/Weapons/Guns/Gunshots/pulse.ogg | ||
- /Audio/Corvax/Weapons/Guns/Gunshots/pulse2.ogg | ||
- /Audio/Corvax/Weapons/Guns/Gunshots/pulse3.ogg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
- type: Tag | ||
id: Gems | ||
|
||
- type: Tag | ||
id: Jetpack | ||
|
||
- type: Tag | ||
id: CartridgeVector22 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"version": 1, | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Copyright by https://github.com/ParadiseSS13/Paradise", | ||
"states": [ | ||
{ | ||
"name": "magma", | ||
"delays": [ | ||
[ | ||
0.1, | ||
0.1, | ||
0.1 | ||
] | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ | |
"delays": [ | ||
[ 0.1, 0.1 ] | ||
] | ||
}, | ||
{ | ||
"name": "plasmacharge" | ||
} | ||
] | ||
} | ||
} |
Binary file added
BIN
+151 Bytes
...ces/Textures/Corvax/Objects/Weapons/Guns/Projectiles/magic.rsi/plasmacharge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.81 KB
...orvax/Objects/Weapons/Guns/Salvage/magmite_plasma_cutter.rsi/icon-uncharged.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.26 KB
...Textures/Corvax/Objects/Weapons/Guns/Salvage/magmite_plasma_cutter.rsi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.13 KB
...s/Corvax/Objects/Weapons/Guns/Salvage/magmite_plasma_cutter.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1004 Bytes
.../Corvax/Objects/Weapons/Guns/Salvage/magmite_plasma_cutter.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.