-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from 778b/plasma-weapons
Plasma weapons
- Loading branch information
Showing
39 changed files
with
419 additions
and
200 deletions.
There are no files selected for viewing
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
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
99 changes: 99 additions & 0 deletions
99
Resources/Prototypes/TS/Entities/Objects/Weapons/Ammunition/gas_magazines.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,99 @@ | ||
- type: entity | ||
id: MagazinePlasmaRed | ||
parent: BaseItem | ||
name: light plasma mag | ||
suffix: Red | ||
components: | ||
- type: Tag | ||
tags: | ||
- PlasmaMagazine | ||
- LightPlasmaMagazine | ||
- type: Item | ||
size: Small | ||
sprite: TS/Objects/Weapons/Ammunition/Magazine/Plasma/light_plasma_mag.rsi | ||
- type: Sprite | ||
sprite: TS/Objects/Weapons/Ammunition/Magazine/Plasma/light_plasma_mag.rsi | ||
state: base | ||
- type: ProjectileBatteryAmmoProvider | ||
proto: RedPlasmaBullet | ||
fireCost: 1 | ||
- type: Battery | ||
maxCharge: 100 | ||
startingCharge: 100 | ||
- type: Appearance | ||
|
||
- type: entity | ||
id: MagazinePlasmaBlue | ||
parent: MagazinePlasmaRed | ||
name: light plasma mag | ||
suffix: Blue | ||
components: | ||
- type: ProjectileBatteryAmmoProvider | ||
proto: BluePlasmaBullet | ||
fireCost: 1 | ||
- type: Battery | ||
maxCharge: 75 | ||
startingCharge: 75 | ||
|
||
- type: entity | ||
id: MagazinePlasmaGreen | ||
parent: MagazinePlasmaRed | ||
name: light plasma mag | ||
suffix: Green | ||
components: | ||
- type: ProjectileBatteryAmmoProvider | ||
proto: GreenPlasmaBullet | ||
fireCost: 1 | ||
- type: Battery | ||
maxCharge: 50 | ||
startingCharge: 50 | ||
|
||
- type: entity | ||
id: HeavyMagazinePlasmaRed | ||
parent: BaseItem | ||
name: heavy plasma mag | ||
suffix: Red | ||
components: | ||
- type: Tag | ||
tags: | ||
- PlasmaMagazine | ||
- HeavyPlasmaMagazine | ||
- type: Item | ||
size: Large | ||
sprite: TS/Objects/Weapons/Ammunition/Magazine/Plasma/heavy_plasma_mag.rsi | ||
- type: Sprite | ||
sprite: TS/Objects/Weapons/Ammunition/Magazine/Plasma/heavy_plasma_mag.rsi | ||
state: base | ||
- type: ProjectileBatteryAmmoProvider | ||
proto: RedPlasmaBullet | ||
fireCost: 1 | ||
- type: Battery | ||
maxCharge: 350 | ||
startingCharge: 350 | ||
- type: Appearance | ||
|
||
- type: entity | ||
id: HeavyMagazinePlasmaBlue | ||
parent: HeavyMagazinePlasmaRed | ||
name: heavy plasma mag | ||
suffix: Blue | ||
components: | ||
- type: ProjectileBatteryAmmoProvider | ||
proto: BluePlasmaBullet | ||
fireCost: 1 | ||
- type: Battery | ||
maxCharge: 240 | ||
startingCharge: 240 | ||
|
||
- type: entity | ||
id: HeavyMagazinePlasmaGreen | ||
parent: HeavyMagazinePlasmaRed | ||
name: heavy plasma mag | ||
suffix: Green | ||
components: | ||
- type: ProjectileBatteryAmmoProvider | ||
proto: GreenPlasmaBullet | ||
fireCost: 1 | ||
- type: Battery | ||
maxCharge: 160 | ||
startingCharge: 160 |
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
44 changes: 44 additions & 0 deletions
44
Resources/Prototypes/TS/Entities/Objects/Weapons/projectiles.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,44 @@ | ||
- type: entity | ||
id: BluePlasmaBullet | ||
parent: BaseBullet | ||
noSpawn: true | ||
components: | ||
- type: Sprite | ||
sprite: TS/Objects/Weapons/Guns/Projectiles/plasma.rsi | ||
layers: | ||
- state: blue | ||
- type: Projectile | ||
damage: | ||
types: | ||
Heat: 12 | ||
Brute: 7 | ||
|
||
- type: entity | ||
id: GreenPlasmaBullet | ||
parent: BaseBullet | ||
noSpawn: true | ||
components: | ||
- type: Sprite | ||
sprite: TS/Objects/Weapons/Guns/Projectiles/plasma.rsi | ||
layers: | ||
- state: green | ||
- type: Projectile | ||
damage: | ||
types: | ||
Heat: 19 | ||
Brute: 11 | ||
|
||
- type: entity | ||
id: RedPlasmaBullet | ||
parent: BaseBullet | ||
noSpawn: true | ||
components: | ||
- type: Sprite | ||
sprite: TS/Objects/Weapons/Guns/Projectiles/plasma.rsi | ||
layers: | ||
- state: red | ||
- type: Projectile | ||
damage: | ||
types: | ||
Heat: 5 | ||
Brute: 4 |
Oops, something went wrong.