Make Riche text MSEA-like (at least)

MSEA text is likely not the same as GMS text, but it's better than making things up.
This commit is contained in:
P0nk
2022-08-31 22:04:58 +02:00
parent ea76880b7f
commit 958286e078
4 changed files with 52 additions and 8 deletions

View File

@@ -19,7 +19,18 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
Tombstone in Forest of Dead Trees I
MSEA reference: http://mymapleland.blogspot.com/2009/09/kill-lich-at-forest-of-dead-trees-i-to.html
*/
function hit() {
if (rm.getReactor().getState() !== 0) {
return
}
rm.weakenAreaBoss(6090000, "As the tombstone lit up and vanished, Lich lost all his magic abilities.")
}
function act() {
// I could not find the text from GMS, so I made something up.
rm.weakenAreaBoss(6090000, "Riche has been weakened.")
// If the chest is destroyed before Riche, killing him should yield no exp
}

View File

@@ -19,7 +19,18 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
Tombstone in Forest of Dead Trees II
MSEA reference: http://mymapleland.blogspot.com/2009/09/kill-lich-at-forest-of-dead-trees-i-to.html
*/
function hit() {
if (rm.getReactor().getState() !== 0) {
return
}
rm.weakenAreaBoss(6090000, "As the tombstone lit up and vanished, Lich lost all his magic abilities.")
}
function act() {
// I could not find the text from GMS, so I made something up.
rm.weakenAreaBoss(6090000, "Riche has been weakened.")
// If the chest is destroyed before Riche, killing him should yield no exp
}

View File

@@ -19,7 +19,18 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
Tombstone in Forest of Dead Trees III
MSEA reference: http://mymapleland.blogspot.com/2009/09/kill-lich-at-forest-of-dead-trees-i-to.html
*/
function hit() {
if (rm.getReactor().getState() !== 0) {
return
}
rm.weakenAreaBoss(6090000, "As the tombstone lit up and vanished, Lich lost all his magic abilities.")
}
function act() {
// I could not find the text from GMS, so I made something up.
rm.weakenAreaBoss(6090000, "Riche has been weakened.")
// If the chest is destroyed before Riche, killing him should yield no exp
}

View File

@@ -19,7 +19,18 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
Tombstone in Forest of Dead Trees IV
MSEA reference: http://mymapleland.blogspot.com/2009/09/kill-lich-at-forest-of-dead-trees-i-to.html
*/
function hit() {
if (rm.getReactor().getState() !== 0) {
return
}
rm.weakenAreaBoss(6090000, "As the tombstone lit up and vanished, Lich lost all his magic abilities.")
}
function act() {
// I could not find the text from GMS, so I made something up.
rm.weakenAreaBoss(6090000, "Riche has been weakened.")
// If the chest is destroyed before Riche, killing him should yield no exp
}