Skip to content

Commit

Permalink
[MoM] Merge lasers and photokinetic damage (#69366)
Browse files Browse the repository at this point in the history
* Initial commit

* change photokinetic damage verbs

* Add laser turret
  • Loading branch information
Standing-Storm authored Nov 14, 2023
1 parent edb0334 commit 72d4bd6
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data/mods/MindOverMatter/damage_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "damage_type",
"physical": false,
"magic_color": "yellow",
"name": "photokinetic",
"name": "focused light",
"skill": "metaphysics",
"derived_from": [ "heat", 0.8 ],
"immune_flags": { "character": [ "PHOTOKIN_CHAR_IMMUNE" ], "monster": [ "PHOTOKIN_MONSTER_IMMUNE" ] },
Expand All @@ -28,7 +28,7 @@
"id": "psi_photokinetic_damage",
"type": "damage_info_order",
"info_display": "detailed",
"verb": "buffeting",
"verb": "dazzling",
"bionic_info": { "order": 999903, "show_type": false },
"protection_info": { "order": 999903, "show_type": false },
"pet_prot_info": { "order": 999903, "show_type": false },
Expand Down
2 changes: 1 addition & 1 deletion data/mods/MindOverMatter/items/ammo.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"range": 40,
"dispersion": 0,
"recoil": 0,
"damage": { "damage_type": "heat", "amount": 55, "armor_penetration": 5 }
"damage": { "damage_type": "psi_photokinetic_damage", "amount": 55, "armor_penetration": 4 }
},
{
"type": "AMMO",
Expand Down
58 changes: 58 additions & 0 deletions data/mods/MindOverMatter/items/laser_overrides.json
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 }
}
]

0 comments on commit 72d4bd6

Please sign in to comment.