diff options
-rw-r--r-- | npc/012-5/nicholas.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/012-5/nicholas.txt b/npc/012-5/nicholas.txt index 08d3bb5f4..024b0d295 100644 --- a/npc/012-5/nicholas.txt +++ b/npc/012-5/nicholas.txt @@ -152,7 +152,8 @@ L_Shield: select l("Nothing, sorry!"), l("Wooden Shield"), - l("Iron Blade Shield"); + l("Iron Blade Shield"), + rif(getq(NivalisQuest_Baktar) >= 3, l("Bronze Braknar Shield")); switch (@menu) { case 1: @@ -163,6 +164,9 @@ L_Shield: case 3: blacksmith_create(IronIngot, 16, TitaniumIngot, 2, BladeShield, 1500); break; + case 4: + blacksmith_create(CopperIngot, 18, TinIngot, 2, BraknarShield, 6000); + break; } goto L_Shield; |