From 032267841e638c7f3a3add98f905331ee0655f56 Mon Sep 17 00:00:00 2001 From: k21971 Date: Thu, 10 Oct 2024 01:59:53 +0000 Subject: [PATCH] Change the recipe for the forged artifact Ithilmar. The old recipe did two things: it made forging Ithilmar very difficult to do in terms of all of the artifacts needed to create it, and one of the artifacts needed to make it (Gauntlets of Purity) was rather difficult to give up. Swapped out the gauntlets with Dramborleg, which hasn't been used in any previous recipies, and its magic resistance fits with the abilities Ithilmar can impart to the steed wearing it. --- doc/evilhack-changelog.md | 1 + src/fountain.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/evilhack-changelog.md b/doc/evilhack-changelog.md index 2c8fae3be..91c336aa5 100644 --- a/doc/evilhack-changelog.md +++ b/doc/evilhack-changelog.md @@ -3649,4 +3649,5 @@ The following changes to date are: - Fix: monster stealing worn gold objects from other monsters (AD_SGLD) not properly handled - New object - helm of caution, change 'shatterproof' to 'tempered' +- Change the recipe for the forged artifact Ithilmar diff --git a/src/fountain.c b/src/fountain.c index db05d23b2..d11e45486 100644 --- a/src/fountain.c +++ b/src/fountain.c @@ -518,9 +518,9 @@ static const struct forge_arti { { ART_HAMMER_OF_THE_GODS, ART_SUNSWORD, ART_DEMONBANE }, { ART_TEMPEST, ART_CLEAVER, ART_MJOLLNIR }, { ART_DICHOTOMY, ART_FIRE_BRAND, ART_FROST_BRAND }, + { ART_ITHILMAR, ART_VORPAL_BLADE, ART_DRAMBORLEG }, /* forged artifacts that require at least one other forged artifact to be created */ - { ART_ITHILMAR, ART_VORPAL_BLADE, ART_GAUNTLETS_OF_PURITY }, { ART_ARMOR_OF_RETRIBUTION, ART_SWORD_OF_ANNIHILATION, ART_ASHMAR }, { 0, 0, 0 } };