From 91ae0535c9a1b3967ed103f9fd47b536cc1482b7 Mon Sep 17 00:00:00 2001 From: mwedel Date: Sun, 18 Apr 2004 06:50:45 +0000 Subject: [PATCH] commit modified ring of occidental mages, which reduces the stats. This should balance the item - much harder to get it to have 30 stats now. Updated version by Lalo Martins, applied by Mark Wedel 2004-04-17 git-svn-id: svn://svn.code.sf.net/p/crossfire/code/trunk/maps@2731 282e977c-c81d-0410-88c4-b93c2d0d6712 --- python/ring_occidental_mages.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/ring_occidental_mages.py b/python/ring_occidental_mages.py index 58781697e..c2eabe3a8 100644 --- a/python/ring_occidental_mages.py +++ b/python/ring_occidental_mages.py @@ -22,12 +22,12 @@ if (CFPython.IsApplied(me)): elif (r >= 0.99): CFPython.SetIdentified(me,0) CFPython.SetCursed(me, 1) - CFPython.SetDexterity(me, CFPython.GetDexterity(me)+1) + CFPython.SetDexterity(me, CFPython.GetDexterity(me)-1) elif (r >= 0.98): CFPython.SetIdentified(me,0) CFPython.SetCursed(me, 1) - CFPython.SetIntelligence(me, CFPython.GetIntelligence(me)+1) + CFPython.SetIntelligence(me, CFPython.GetIntelligence(me)-1) elif (r >= 0.97): CFPython.SetIdentified(me,0) CFPython.SetCursed(me, 1) - CFPython.SetConstitution(me, CFPython.GetConstitution(me)+1) + CFPython.SetConstitution(me, CFPython.GetConstitution(me)-1)