-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MoM] Merge lasers and photokinetic damage (#69366)
* Initial commit * change photokinetic damage verbs * Add laser turret
- Loading branch information
1 parent
edb0334
commit 72d4bd6
Showing
3 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
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,58 @@ | ||
[ | ||
{ | ||
"type": "GUN", | ||
"id": "laser_rifle", | ||
"copy-from": "laser_rifle", | ||
"name": { "str": "A7 laser rifle" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 25, "armor_penetration": 4 } | ||
}, | ||
{ | ||
"type": "GUN", | ||
"id": "bio_laser_gun", | ||
"copy-from": "bio_laser_gun", | ||
"name": { "str": "laser finger" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 10, "armor_penetration": 4 } | ||
}, | ||
{ | ||
"type": "GUN", | ||
"id": "v29", | ||
"copy-from": "v29", | ||
"name": { "str": "V29 laser pistol" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 10, "armor_penetration": 4 } | ||
}, | ||
{ | ||
"type": "GUN", | ||
"id": "v29_turret", | ||
"copy-from": "v29_turret", | ||
"name": { "str": "mounted laser" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 10, "armor_penetration": 4 } | ||
}, | ||
{ | ||
"type": "GUN", | ||
"id": "recon_mech_laser_single", | ||
"copy-from": "recon_mech_laser_single", | ||
"name": { "str": "salvaged RMES marksman laser" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 30, "armor_penetration": 4 } | ||
}, | ||
{ | ||
"type": "GUN", | ||
"id": "recon_mech_laser", | ||
"copy-from": "recon_mech_laser", | ||
"name": { "str": "RMES marksman system" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 30, "armor_penetration": 4 } | ||
}, | ||
{ | ||
"type": "GUN", | ||
"id": "gatling_mech_laser_single", | ||
"copy-from": "gatling_mech_laser_single", | ||
"name": { "str": "salvaged CMES laser cannon" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 20, "armor_penetration": 4 } | ||
}, | ||
{ | ||
"type": "GUN", | ||
"id": "gatling_mech_laser", | ||
"copy-from": "gatling_mech_laser", | ||
"name": { "str": "CMES laser cannon" }, | ||
"ranged_damage": { "damage_type": "psi_photokinetic_damage", "amount": 20, "armor_penetration": 4 } | ||
} | ||
] |