Skip to content

Commit

Permalink
Fix capitalization (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Glazelf authored Apr 7, 2024
1 parent b0425da commit fae8411
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions data/SkillData.js
Original file line number Diff line number Diff line change
Expand Up @@ -2044,7 +2044,7 @@ var skillMap = {
},
"Mahamaon": {
"cost": 3400,
"effect": "medium chance of instantly killing all foes.",
"effect": "Medium chance of instantly killing all foes.",
"element": "bless",
"fuse": "Melchizedek",
"personas": {
Expand Down Expand Up @@ -2165,7 +2165,7 @@ var skillMap = {
},
"Mamudoon": {
"cost": 3400,
"effect": "medium chance of instantly killing all foes.",
"effect": "Medium chance of instantly killing all foes.",
"element": "curse",
"fuse": "Alice",
"personas": {
Expand Down Expand Up @@ -2622,7 +2622,7 @@ var skillMap = {
},
"Mudoon": {
"cost": 1500,
"effect": "medium chance of instantly killing 1 foe.",
"effect": "Medium chance of instantly killing 1 foe.",
"element": "curse",
"personas": {
"Anubis": 0,
Expand Down
8 changes: 4 additions & 4 deletions data/SkillData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface SkillData {
cost?: number;
effect: string;
element: "phys" | "gun" | "fire" | "ice" | "electric" | "wind" | "psy" | "nuclear" | "bless" | "curse" |
"almighty" | "ailment" | "support" | "passive" | "healing" | "trait";
"almighty" | "ailment" | "support" | "passive" | "healing" | "trait";
personas?: {
[name: string]: number;
};
Expand Down Expand Up @@ -2073,7 +2073,7 @@ const skillMap: SkillMap = {
},
"Mahamaon": {
"cost": 3400,
"effect": "medium chance of instantly killing all foes.",
"effect": "Medium chance of instantly killing all foes.",
"element": "bless",
"fuse": "Melchizedek",
"personas": {
Expand Down Expand Up @@ -2194,7 +2194,7 @@ const skillMap: SkillMap = {
},
"Mamudoon": {
"cost": 3400,
"effect": "medium chance of instantly killing all foes.",
"effect": "Medium chance of instantly killing all foes.",
"element": "curse",
"fuse": "Alice",
"personas": {
Expand Down Expand Up @@ -2651,7 +2651,7 @@ const skillMap: SkillMap = {
},
"Mudoon": {
"cost": 1500,
"effect": "medium chance of instantly killing 1 foe.",
"effect": "Medium chance of instantly killing 1 foe.",
"element": "curse",
"personas": {
"Anubis": 0,
Expand Down
4 changes: 2 additions & 2 deletions data/SkillDataRoyal.js
Original file line number Diff line number Diff line change
Expand Up @@ -2110,7 +2110,7 @@ var skillMapRoyal = {
"personas": { "Lamia": 30, "Leanan Sidhe": 21, "Nue": 24, "Pisaca": 29 }
},
"Mamudoon": {
"effect": "medium chance of instantly killing all foes.",
"effect": "Medium chance of instantly killing all foes.",
"cost": 2600,
"element": "curse",
"fuse": ["Chernobog"],
Expand Down Expand Up @@ -2524,7 +2524,7 @@ var skillMapRoyal = {
"personas": { "Alice": 0, "Mother Harlot": 0, "Thanatos Picaro": 70 }
},
"Mudoon": {
"effect": "medium chance of instantly killing 1 foe.",
"effect": "Medium chance of instantly killing 1 foe.",
"cost": 1200,
"element": "curse",
"personas": {
Expand Down
4 changes: 2 additions & 2 deletions data/SkillDataRoyal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2110,7 +2110,7 @@ const skillMapRoyal: SkillMap = {
"personas": { "Lamia": 30, "Leanan Sidhe": 21, "Nue": 24, "Pisaca": 29 }
},
"Mamudoon": {
"effect": "medium chance of instantly killing all foes.",
"effect": "Medium chance of instantly killing all foes.",
"cost": 2600,
"element": "curse",
"fuse": ["Chernobog"],
Expand Down Expand Up @@ -2524,7 +2524,7 @@ const skillMapRoyal: SkillMap = {
"personas": { "Alice": 0, "Mother Harlot": 0, "Thanatos Picaro": 70 }
},
"Mudoon": {
"effect": "medium chance of instantly killing 1 foe.",
"effect": "Medium chance of instantly killing 1 foe.",
"cost": 1200,
"element": "curse",
"personas": {
Expand Down

0 comments on commit fae8411

Please sign in to comment.