diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-08-13 20:29:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-08-13 20:29:57 -0300 |
commit | 59578953e21d0e3bc989918b8d62ddb9fedb37f0 (patch) | |
tree | 20f3c8d5a130e79ba95cc39ec3230cc614599627 | |
parent | 8d56bd93a5ad1d912b03408601018ccaee190e47 (diff) | |
download | serverdata-59578953e21d0e3bc989918b8d62ddb9fedb37f0.tar.gz serverdata-59578953e21d0e3bc989918b8d62ddb9fedb37f0.tar.bz2 serverdata-59578953e21d0e3bc989918b8d62ddb9fedb37f0.tar.xz serverdata-59578953e21d0e3bc989918b8d62ddb9fedb37f0.zip |
Tweak a bit the Monster Grants price when your alignment is set to EVIL
-rw-r--r-- | npc/003-1/ishi.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt index 637ffced3..ece2b5209 100644 --- a/npc/003-1/ishi.txt +++ b/npc/003-1/ishi.txt @@ -331,7 +331,7 @@ L_Grants: // Evil alignment discount if (alignment() < 0) - .@value -= 100; + .@value -= 250; // Base price (+20%) .@value = .@value * 6 / 5; |