Merge pull request #114 from hppeng-wynn/teleport-wrong-parent

Fix Eye Piercer effect going under Heal instead of TP, and mage atree dooming
This commit is contained in:
hppeng-wynn 2022-07-11 10:51:44 -05:00 committed by GitHub
commit 9da19ff9b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View file

@ -4735,7 +4735,7 @@ const atrees = {
{
"display_name": "Eye Piercer",
"desc": "Teleport will blind enemies, confusing them for a short amount of time.",
"base_abil": "Heal",
"base_abil": "Teleport",
"parents": ["Cheaper Heal"],
"dependencies": ["Teleport"],
"blockers": [],
@ -4754,8 +4754,8 @@ const atrees = {
"base_abil": "Windsweeper",
"archetype": "Riftwalker",
"archetype_req": 0,
"parents": ["Cheaper Heal"],
"dependencies": ["Windsweeper", "Purification"],
"parents": ["Cheaper Heal", "Purification"],
"dependencies": ["Windsweeper"],
"blockers": [],
"cost": 2,
"display": {
@ -5451,7 +5451,8 @@ const atrees = {
"archetype": "Light Bender",
"archetype_req": 0,
"base_abil": "Ophanim",
"parents": ["Explosive Entrance", "Cheaper Meteor II"],
"parents": ["Cheaper Meteor II"],
"_parents": ["Explosive Entrance", "Cheaper Meteor II"],
"dependencies": ["Ophanim"],
"blockers": [],
"cost": 1,
@ -5505,6 +5506,7 @@ const atrees = {
"archetype": "Riftwalker",
"archetype_req": 0,
"parents": ["Time Dilation"],
"_parents": ["Time Dilation", "Dynamic Faith"],
"dependencies": ["Windsweeper"],
"blockers": [],
"cost": 1,

File diff suppressed because one or more lines are too long