Skip to content

Commit

Permalink
Update ~Unlicensed~ Dungeons & Doomknights.rascript
Browse files Browse the repository at this point in the history
  • Loading branch information
pinguupinguu committed Mar 15, 2023
1 parent a71b534 commit e4b6306
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions NES/~Unlicensed~ Dungeons & Doomknights.rascript
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function artix_health_max() => byte(0x06d6)
// $06DA: [8bit] Number of Coins (Ones)
// $06DB: [8bit] Number of Coins (Tens)
// $06DC: [8bit] Artix Current Level (Ones)
function artix_level_ones() => byte(0x06dc)
// $06DD: [8bit] Artix Current Level (Tens)
// $06E1: [8bit] Skill Unlock - Undead Doggie (Gives Artix Level)

Expand Down Expand Up @@ -64,3 +65,13 @@ achievement(
map_ID() == 0x72 &&
artix_health_max() - prev(artix_health_max()) == 1
)
achievement(
"A Boney Journey for Artix's Axe!",
"Recover your axe in the caves and level Artix up to level 1!",
points=2,
trigger=
location() == caves &&
map_ID() == 0x53 &&
prev(artix_level_ones()) == 0 &&
artix_level_ones() == 1
)

0 comments on commit e4b6306

Please sign in to comment.