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

add more AEA spells #34193

Merged
merged 1 commit into from
Sep 25, 2019
Merged
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
81 changes: 81 additions & 0 deletions data/json/legacy_artifact_active.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,87 @@
"base_casting_time": 100,
"message": "A wave of nausea passes through you!"
},
{
"type": "SPELL",
"id": "AEA_SHADOWS",
"name": "Artifact Shadows",
"description": "Summons shadows",
"valid_targets": [ "ground" ],
"effect": "summon",
"effect_str": "mon_shadow",
"base_casting_time": 100,
"message": "Shadows form around you.",
"min_damage": 4,
"max_damage": 8,
"min_aoe": 5,
"max_aoe": 5,
"//": "duration is only because the shadow needs to disappear upon death",
"min_duration": 8640000,
"max_duration": 8640000,
"flags": [ "RANDOM_DAMAGE", "HOSTILE_SUMMON" ]
},
{
"type": "SPELL",
"id": "AEA_STAMINA_EMPTY",
"name": "Artifact Stamina Empty",
"description": "does a variable amount of stamina damage",
"min_damage": -1500,
"max_damage": -5500,
"base_casting_time": 100,
"valid_targets": [ "self" ],
"flags": [ "RANDOM_DAMAGE" ],
"message": "Your body feels like jelly.",
"effect": "recover_energy",
"effect_str": "STAMINA"
},
{
"type": "SPELL",
"id": "AEA_RADIATION",
"name": "Artifact Radiation",
"description": "causes radiation",
"message": "Horrible gases are emitted!",
"valid_targets": [ "self", "ground" ],
"effect": "target_attack",
"field_id": "fd_nuke_gas",
"min_aoe": 2,
"max_aoe": 2,
"min_field_intensity": 2,
"max_field_intensity": 2,
"field_chance": 1
},
{
"type": "SPELL",
"id": "AEA_HURTALL",
"name": "Artifact Hurtall",
"description": "Hurts all monsters within your view distance",
"message": "",
"min_damage": 0,
"max_damage": 5,
"min_aoe": 40,
"max_aoe": 40,
"valid_targets": [ "hostile" ],
"flags": [ "RANDOM_DAMAGE", "IGNORE_WALLS" ],
"effect": "target_attack"
},
{
"type": "SPELL",
"id": "AEA_ACIDBALL",
"name": "Artifact Acidball",
"description": "fires an acidball",
"effect": "target_attack",
"message": "",
"min_range": 40,
"max_range": 40,
"min_aoe": 1,
"max_aoe": 1,
"damage_type": "acid",
"field_id": "fd_acid",
"min_field_intensity": 2,
"max_field_intensity": 2,
"valid_targets": [ "self", "hostile", "ally", "ground" ],
"flags": [ "IGNORE_WALLS" ],
"field_chance": 1
},
{
"type": "SPELL",
"id": "art_eff_pet",
Expand Down