Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
NexusUnleashed committed Dec 24, 2024
1 parent b23922c commit db6239f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
14 changes: 7 additions & 7 deletions src/base/areas/ageiro.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ageiro = [
areaId: [209],
areaName: "the Isle of Ageiro",
firstPerson:
/^Grabbing up a shovel, a copper malagma jams the blade into your throat. Blood oozes from the gash as you struggle to regain your breath\.$/,
/^Grabbing up a shovel, a copper malagma jams the blade into your throat\. Blood oozes from the gash as you struggle to regain your breath\.$/,
thirdPerson: false,
tags: ["damage"],
},
Expand All @@ -22,7 +22,7 @@ const ageiro = [
areaId: [209],
areaName: "the Isle of Ageiro",
firstPerson:
/^Balling up his fists, a copper malagma smashes several punches into your torso\.$/,
/^Balling up \w+ fists, a copper malagma smashes several punches into your torso\.$/,
thirdPerson: false,
tags: ["damage"],
},
Expand All @@ -40,7 +40,7 @@ const ageiro = [
areaId: [209],
areaName: "the Isle of Ageiro",
firstPerson:
/^With all his might, an iron malagma swings a partially rotted wooden shaft at your head\.$/,
/^With all \w+ might, an iron malagma swings a partially rotted wooden shaft at your head\.$/,
thirdPerson: false,
tags: ["damage"],
},
Expand All @@ -49,7 +49,7 @@ const ageiro = [
areaId: [209],
areaName: "the Isle of Ageiro",
firstPerson:
/^Grabbing your arm in her vice-like hands, an iron malagma snaps the bone in two\.$/,
/^Grabbing your arm in \w+ vice-like hands, an iron malagma snaps the bone in two\.$/,
thirdPerson: false,
tags: ["damage", "brokenleftarm"],
},
Expand All @@ -67,7 +67,7 @@ const ageiro = [
areaId: [209],
areaName: "the Isle of Ageiro",
firstPerson:
/^A golden malagma drives his hand through your stomach, barely missing your spine as his fingers break through the skin of your back\.$/,
/^A golden malagma drives \w+ hand through your stomach, barely missing your spine as \w+ fingers break through the skin of your back\.$/,
thirdPerson: false,
tags: ["damage"],
},
Expand Down Expand Up @@ -96,7 +96,7 @@ const ageiro = [
areaId: [209],
areaName: "the Isle of Ageiro",
firstPerson:
/^A silver malagma backhands you violently, his heavy metal arm nearly caving in your skull\.$/,
/^A silver malagma backhands you violently, \w+ heavy metal arm nearly caving in your skull\.$/,
thirdPerson: false,
tags: ["damage"],
},
Expand All @@ -123,7 +123,7 @@ const ageiro = [
areaId: [209],
areaName: "the Isle of Ageiro",
firstPerson:
/A silver malagma backhands you violently, her heavy metal arm nearly caving in your skull\.$/,
/A silver malagma backhands you violently, \w+ heavy metal arm nearly caving in your skull\.$/,
thirdPerson: false,
tags: ["damage"],
},
Expand Down
4 changes: 3 additions & 1 deletion src/base/areas/tirMuran.js → src/base/areas/tirMurann.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ const tirMuran = [
user: "a Vertani guard",
areaId: [145, 146],
areaName: "Tir Murann",
firstPerson:
firstPerson: [
/^A Vertani guard vaults towards you with surprising speed, bringing the bladed side of his weapon bearing down on you\.$/,
/^The accompanying slash carves deeply through your flesh from your shoulder blade diagonally across to the waist\.$/,
],
thirdPerson: false,
tags: ["damage"],
length: 2.5,
Expand Down
2 changes: 1 addition & 1 deletion src/base/skills/domination.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ const domination = {
id: "gremlinCommand",
fullName: "Gremlin Command",
firstPerson:
/^You command your gremlin to shatter the defences surrounding (?<target>\.+?)\.$/,
/^You command your gremlin to shatter the defences surrounding (?<target>.+?)\.$/,
secondPerson:
/^With a mad cackle, a gremlin leaps at you and batters your shield with a flurry of blows, fracturing it in moments\.$/,
thirdPerson:
Expand Down
2 changes: 1 addition & 1 deletion src/base/skills/weaving.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ export const weaving = {
profession: ["psion"],
skill: "weaving",
balance: "balance",
tags: ["pve", "aff"],
tags: ["pve", "damage", "aff"],
affs: ["asthma"],
length: 2.2,
},
Expand Down

0 comments on commit db6239f

Please sign in to comment.