Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Mind Over Matter] Combination Psychic Powers #73597

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
179 changes: 179 additions & 0 deletions data/mods/MindOverMatter/powers/combination_powers/pyrokinesis.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
[
{
"id": "pyro_photokinetic_combo_flash",
"type": "SPELL",
"//": "Requires Pyrokinesis and Photokinesis to learn.",
"name": "[Ψ]Sunspot",
"description": "By strongly exciting the air at a particular point and enchancing the resulting photons, you produce an extreme burst of light, capable of blinding anyone who sees it, including your friends. The sheer energy of this reaction also creates a searing heatwave.",
"message": "The air erupts into an eye-searing flash!",
"teachable": false,
"valid_targets": [ "hostile", "ally", "ground" ],
"spell_class": "PYROKINETIC",
"skill": "metaphysics",
"flags": [ "PSIONIC", "CONCENTRATE", "NO_HANDS", "NO_PROJECTILE", "NO_LEGS", "RANDOM_DURATION" ],
"difficulty": 4,
"max_level": { "math": [ "int_to_level(1)" ] },
"effect": "attack",
"effect_str": "effect_pyrokinetic_flash",
"extra_effects": [ { "id": "pyro_photokinetic_combo_fireball" }, { "id": "psionic_drained_difficulty_four", "hit_self": true } ],
"shape": "blast",
"affected_body_parts": [ "eyes" ],
"min_range": {
"math": [
"min( (( (u_spell_level('pyro_photokinetic_combo_flash') * 4) + 6) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling), 50)"
]
},
"max_range": 80,
"min_aoe": {
"math": [
"min( (( (u_spell_level('pyro_photokinetic_combo_flash') * 1.2) + 6) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling), 8)"
]
},
"max_aoe": 30,
"min_duration": {
"math": [
"( (u_spell_level('pyro_photokinetic_combo_flash') * 1000) + 5000) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"max_duration": {
"math": [
"( (u_spell_level('pyro_photokinetic_combo_flash') * 1100) + 7000) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"energy_source": "STAMINA",
"base_energy_cost": 2500,
"final_energy_cost": 1200,
"energy_increment": -109,
"base_casting_time": 200,
"final_casting_time": 100,
"casting_time_increment": -8,
"ignored_monster_species": [ "PSI_NULL" ]
},
{
"id": "pyro_photokinetic_combo_fireball",
"type": "SPELL",
"name": "[Ψ]Sunspot Fireball",
"description": "Cause a burst of flames for Sunspot. It is a bug if you have this.",
"valid_targets": [ "hostile", "ground", "ally" ],
"flags": [ "PSIONIC", "CONCENTRATE", "LOUD", "NO_PROJECTILE", "IGNITE_FLAMMABLE", "RANDOM_DAMAGE", "NO_HANDS", "NO_LEGS" ],
"max_level": { "math": [ "int_to_level(1)" ] },
"spell_class": "PYROKINETIC",
"effect": "attack",
"shape": "blast",
"damage_type": "heat",
"difficulty": 0,
"min_damage": {
"math": [
"( (u_spell_level('pyro_photokinetic_combo_fireball') * 1.5) + 6) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"max_damage": {
"math": [
"( (u_spell_level('pyro_photokinetic_combo_fireball') * 3) + 12) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"min_range": {
"math": [
"clamp( ( (u_spell_level('pyro_photokinetic_combo_fireball') + 1) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling), 1, 5)"
]
},
"min_aoe": {
"math": [
"min( (( (u_spell_level('pyro_photokinetic_combo_flash') * 0.25) + 3) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling), 8)"
]
},
"max_aoe": 10,
"max_range": 12,
"ignored_monster_species": [ "PSI_NULL" ]
},
{
"id": "pyro_biokinetic_dragon_breath",
"type": "SPELL",
"//": "Requires Pyrokinesis and Biokinesis to learn.",
"name": "[Ψ]Dragon's Spittle",
"description": "Your body synthesizes a flammable, sticky goop, which is expelled from one of your orificies and ignited. Causes a raging inferno which sticks around, slowing down enemies caught in the blast..",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is definitely much too much like magic for a psionic power. The power limitations guide says that biokinesis cannot be used to allow the body to do anything completely outside its normal capabilities, which organic napalm definitely fits under.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Come to think of it, would it be possible to gate the acquisition/use of this power behind mutations that allow the player to produce webs or other flammable substances, like some of the spider lines? I.e you can't learn it unless you have the web-spinner mutation.
Can psionic powers even interact with mutations in this way, or does that also break lore constraints?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That would be a good solution, since there are already psionic animals in the mod. If you can already produce webs, then that's within your normal capabilities and it fits the design docs.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider it done, then. I'll rig this into any learning EOCs I might make with it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, this finally gave me an idea for a psionic spider to make, so thank you!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, you're quite welcome!

"message": "You spew forth burning goop!",
"teachable": false,
"valid_targets": [ "hostile", "ground", "ally" ],
"spell_class": "PYROKINETIC",
"skill": "metaphysics",
"flags": [ "PSIONIC", "CONCENTRATE", "IGNITE_FLAMMABLE", "RANDOM_DAMAGE", "NO_HANDS", "NO_LEGS" ],
"difficulty": 6,
"max_level": { "math": [ "int_to_level(1)" ] },
"effect": "attack",
"extra_effects": [ { "id": "pyro_biokinetic_dragon_breath_goop_effect" }, { "id": "psionic_drained_difficulty_six", "hit_self": true } ],
"shape": "line",
"damage_type": "heat",
"min_damage": {
"math": [
"( (u_spell_level('pyro_biokinetic_dragon_breath') * 3) + 40) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"max_damage": {
"math": [
"( (u_spell_level('pyro_biokinetic_dragon_breath') * 3) + 55) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"min_range": {
"math": [
"( (u_spell_level('pyro_biokinetic_dragon_breath') * 0.5) + 5) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"max_range": {
"math": [
"( (u_spell_level('pyro_biokinetic_dragon_breath') * 0.5) + 5) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"field_id": "fd_fire",
"min_field_intensity": 1,
"max_field_intensity": 4,
"field_chance": 2,
"energy_source": "STAMINA",
"base_energy_cost": 3000,
"final_energy_cost": 1750,
"energy_increment": -156,
"base_casting_time": 100,
"final_casting_time": 35,
"casting_time_increment": -4,
"sound_type": "combat",
"sound_id": "fire_spell",
"sound_description": "a crackle!",
"ignored_monster_species": [ "PSI_NULL" ]
},
{
"id": "pyro_biokinetic_dragon_breath_goop_effect",
"type": "SPELL",
"name": "[Ψ]Dragon's Spittle Effect",
"description": "Projects a spray of flammable bile.",
"valid_targets": [ "ground" ],
"effect": "attack",
"shape": "cone",
"flags": [ "VERBAL", "PERMANENT" ],
"difficulty": 6,
"max_level": { "math": [ "int_to_level(1)" ] },
"min_range": {
"math": [
"( (u_spell_level('pyro_biokinetic_dragon_breath') * 0.5) + 5) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"max_range": {
"math": [
"( (u_spell_level('pyro_biokinetic_dragon_breath') * 0.5) + 5) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling"
]
},
"min_aoe": {
"math": [
"min( (( (u_spell_level('pyro_biokinetic_dragon_breath') * 0.5) + 2) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling), 8)"
]
},
"max_aoe": {
"math": [
"min( (( (u_spell_level('pyro_biokinetic_dragon_breath') * 0.5) + 8) * (scaling_factor(u_val('intelligence') ) ) * u_nether_attunement_power_scaling), 8)"
]
},
"field_id": "fd_web",
"field_chance": 1,
"min_field_intensity": 3,
"max_field_intensity": 3
}
]
Loading