From 1e3050b638726ea407d28f4b860fb2b5722b069b Mon Sep 17 00:00:00 2001
From: wushin <pasekei@gmail.com>
Date: Mon, 9 Nov 2015 14:34:54 -0600
Subject: Purged gender from quest dialogue Changed Eurni to new genders

---
 world/map/npc/002-2/eurni.txt | 29 +++++++++++++++++++++++++++--
 1 file changed, 27 insertions(+), 2 deletions(-)

(limited to 'world/map/npc/002-2')

diff --git a/world/map/npc/002-2/eurni.txt b/world/map/npc/002-2/eurni.txt
index f965b84b..c9735ad0 100644
--- a/world/map/npc/002-2/eurni.txt
+++ b/world/map/npc/002-2/eurni.txt
@@ -18,14 +18,39 @@
     next;
 
     menu
-        "Please do.", L_Change,
+        "Please do.", L_Change_Menu,
         "Leave my family treasures alone!", L_Close;
 
+L_Change_Menu:
+    menu
+        "Female.", L_Female,
+        "Male.", L_Male,
+        "Non-binary.", L_NonBinary;
+
+L_Female:
+    set @sex, 0;
+    goto L_Change;
+
+L_Male:
+    set @sex, 1;
+    goto L_Change;
+
+L_NonBinary:
+    set @sex, 3;
+    goto L_Change;
+
 L_Change:
+    if (Sex == @sex)
+        goto L_Already_Change;
     if (Zeny < @SERVICES_ZENY)
         goto L_NoMoney;
     set Zeny, Zeny - @SERVICES_ZENY;
-    set Sex, !Sex;
+    set Sex, @sex;
+    close;
+
+L_Already_Change:
+    mes "[Eurni the Surgeon]";
+    mes "\"Umm, you are that gender already.\"";
     close;
 
 L_TooYoung:
-- 
cgit v1.2.3-70-g09d2