diff options
author | gumi <git@gumi.ca> | 2020-07-30 14:24:11 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2020-08-05 21:40:55 -0400 |
commit | cab095a0e7b132d67a03412a6c3a9cf3e89c943a (patch) | |
tree | 6242a852468f0f2d4140802db7722f9fe755652f /npc/008-2-2 | |
parent | 670b053ae6296e78f42d30a4e89518244a284f67 (diff) | |
download | serverdata-cab095a0e7b132d67a03412a6c3a9cf3e89c943a.tar.gz serverdata-cab095a0e7b132d67a03412a6c3a9cf3e89c943a.tar.bz2 serverdata-cab095a0e7b132d67a03412a6c3a9cf3e89c943a.tar.xz serverdata-cab095a0e7b132d67a03412a6c3a9cf3e89c943a.zip |
remove the all mentions of sex or gender from scripts
Diffstat (limited to 'npc/008-2-2')
-rw-r--r-- | npc/008-2-2/barron.txt | 2 | ||||
-rw-r--r-- | npc/008-2-2/kfahr.txt | 2 | ||||
-rw-r--r-- | npc/008-2-2/ledmitz.txt | 4 | ||||
-rw-r--r-- | npc/008-2-2/melania.txt | 2 | ||||
-rw-r--r-- | npc/008-2-2/melinda.txt | 2 | ||||
-rw-r--r-- | npc/008-2-2/shop.txt | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/npc/008-2-2/barron.txt b/npc/008-2-2/barron.txt index f9914f62..8a14deb9 100644 --- a/npc/008-2-2/barron.txt +++ b/npc/008-2-2/barron.txt @@ -27,7 +27,7 @@ speech S_LAST_NEXT, OnInit: - .sex = G_MALE; + .bodytype = BODYTYPE_3; .distance = 3; end; } diff --git a/npc/008-2-2/kfahr.txt b/npc/008-2-2/kfahr.txt index d1217884..feb6f1e2 100644 --- a/npc/008-2-2/kfahr.txt +++ b/npc/008-2-2/kfahr.txt @@ -778,7 +778,7 @@ OnInit: .KNIFE_QUEST_XP = 50000; .STINGER_QUEST_XP = 80000; - .sex = G_MALE; + .bodytype = BODYTYPE_3; .distance = 2; end; } diff --git a/npc/008-2-2/ledmitz.txt b/npc/008-2-2/ledmitz.txt index 5939428e..4e310961 100644 --- a/npc/008-2-2/ledmitz.txt +++ b/npc/008-2-2/ledmitz.txt @@ -16,7 +16,7 @@ OnTalk: end; OnInit: - .sex = G_MALE; + .bodytype = BODYTYPE_3; .distance = 3; ////////// UNFINISHED ////////// @@ -40,7 +40,7 @@ OnTalk: end; OnInit: - .sex = G_MALE; + .bodytype = BODYTYPE_3; .distance = 3; ////////// UNFINISHED ////////// diff --git a/npc/008-2-2/melania.txt b/npc/008-2-2/melania.txt index cf02dc90..4d5470a9 100644 --- a/npc/008-2-2/melania.txt +++ b/npc/008-2-2/melania.txt @@ -101,7 +101,7 @@ } OnInit: - .sex = G_FEMALE; + .bodytype = BODYTYPE_2; .distance = 2; .inn=RUSTYPICK_INN; end; diff --git a/npc/008-2-2/melinda.txt b/npc/008-2-2/melinda.txt index 17127656..39c97f2b 100644 --- a/npc/008-2-2/melinda.txt +++ b/npc/008-2-2/melinda.txt @@ -123,7 +123,7 @@ OnTouch: end; OnInit: - .sex = G_FEMALE; + .bodytype = BODYTYPE_2; .distance = 5; .speed = 300; initmovegraph "startspot", 40, 29, diff --git a/npc/008-2-2/shop.txt b/npc/008-2-2/shop.txt index d3699092..58c6002d 100644 --- a/npc/008-2-2/shop.txt +++ b/npc/008-2-2/shop.txt @@ -20,7 +20,7 @@ OnInit: sellitem SmallHealing, -1, 50; sellitem MaggotSlimePotion, -1, 50; - .sex = G_OTHER; + .bodytype = BODYTYPE_1; .distance = 10; end; |