Forráskód Böngészése

Move gender and body from util to pc

Scarlett Schäfer 2 éve
szülő
commit
844859835c

+ 3 - 3
source/event/barwitch.qsps

@@ -491,10 +491,10 @@ elseif $ARGS[0] = 'choked':
     *PL 'He releases you and walks down the stairwell. You haven''t even seen his face. What kind of madness was that?!'
 
     act 'Leave':
-        gs 'util_gender','set_body_female'
+        gs 'pc_gender','set_body_female'
 
-        gs 'util_body','chest_size_set',event_barwitch_breasts
-        gs 'util_body','hair_head_set',event_barwitch_hairlength
+        gs 'pc_body','chest_size_set',event_barwitch_breasts
+        gs 'pc_body','hair_head_set',event_barwitch_hairlength
         $body_hair_head_color = $event_barwitch_haircolor
 
         $alterEgo_name_first['original'] = $name_first

+ 3 - 3
source/util/body.qsps → source/pc/body.qsps

@@ -1,4 +1,4 @@
-# util_body
+# pc_body
 
 ! $body_sex_born
 ! $body_torso = {m,f}
@@ -132,8 +132,8 @@ elseif $ARGS[0] = 'hair_grow_dayly':
     temp_hair_face = body_hair_face
     temp_hair_head = body_hair_head
 
-    gs 'util_body','hair_face_length_set', body_hair_face_length + temp_days * body_hair_face_growth
-    gs 'util_body','hair_head_length_set', body_hair_head_length + temp_days * body_hair_head_growth
+    gs 'pc_body','hair_face_length_set', body_hair_face_length + temp_days * body_hair_face_growth
+    gs 'pc_body','hair_head_length_set', body_hair_head_length + temp_days * body_hair_head_growth
 
     if body_hair_face > temp_hair_face:
         gs 'util_message','add','Info','Your facial hair has grown to stage <<body_hair_face>>.'

+ 5 - 7
source/util/gender.qsps → source/pc/gender.qsps

@@ -1,12 +1,10 @@
-# util_gender
-
-
+# pc_gender
 
 if $ARGS[0] = 'set_body_female':
     $body_torso = 'f'
     $body_feet = 'f'
-    gs 'util_body','chest_size_set','C'
-    gs 'util_body','hair_head_set',0
+    gs 'pc_body','chest_size_set','C'
+    gs 'pc_body','hair_head_set',0
     body_hair_face_growth = 0
     body_hair_head_growth = 400
     $body_hair_head_color = 'blond'
@@ -20,8 +18,8 @@ if $ARGS[0] = 'set_body_female':
 elseif $ARGS[0] = 'set_body_male':
     $body_torso = 'm'
     $body_feet = 'm'
-    gs 'util_body','chest_size_set','None'
-    gs 'util_body','hair_head_set', -5
+    gs 'pc_body','chest_size_set','None'
+    gs 'pc_body','hair_head_set', -5
     body_hair_face_growth = 400
     body_hair_head_growth = 400
     $body_hair_head_color = 'black'

+ 2 - 2
source/start/male.qsps

@@ -1,7 +1,7 @@
 # start_male
 
-gs 'util_gender','set_body_male'
-gs 'util_gender','set_born_male'
+gs 'pc_gender','set_body_male'
+gs 'pc_gender','set_born_male'
 
 $name_first = FUNC('util_npc','generate_name','male_90s')
 $name_last = FUNC('util_npc','generate_name','last')

+ 1 - 1
source/util/time.qsps

@@ -115,7 +115,7 @@ elseif $ARGS[0] = 'pass':
 
     temp_dayTicks = temp_tickDayTarget - time_tickDayLast
 
-    gs 'util_body','hair_grow_dayly',temp_dayTicks
+    gs 'pc_body','hair_grow_dayly',temp_dayTicks
 
 
 

+ 5 - 5
source/util/wardrobe.qsps

@@ -70,7 +70,7 @@ elseif $ARGS[0] = 'render_wardrobe':
         else
             $temp_bra_name = 'No Bra'
         end
-        $temp_bra_media = FUNC('util_body','body_image','torso')
+        $temp_bra_media = FUNC('pc_body','body_image','torso')
     else
         gs 'util_item','item_load',$wardrobe_current_bra_file,$wardrobe_current_bra_id
         $temp_bra_name = $item_name
@@ -79,7 +79,7 @@ elseif $ARGS[0] = 'render_wardrobe':
 
     if $wardrobe_current_clothes_file = '':
         $temp_clothes_name = 'No Clothes'
-        !$temp_clothes_media = FUNC('util_body','body_image','torso')
+        !$temp_clothes_media = FUNC('pc_body','body_image','torso')
         $temp_clothes_media = $temp_bra_media
     else
         gs 'util_item','item_load',$wardrobe_current_clothes_file,$wardrobe_current_clothes_id
@@ -93,7 +93,7 @@ elseif $ARGS[0] = 'render_wardrobe':
         else
             $temp_panties_name = 'No Panties'
         end
-        $temp_panties_media = FUNC('util_body','body_image','crotch')
+        $temp_panties_media = FUNC('pc_body','body_image','crotch')
     else
         gs 'util_item','item_load',$wardrobe_current_panties_file,$wardrobe_current_panties_id
         $temp_panties_name = $item_name
@@ -102,7 +102,7 @@ elseif $ARGS[0] = 'render_wardrobe':
 
     if $wardrobe_current_socks_file = '':
         $temp_socks_name = 'No Socks'
-        $temp_socks_media = FUNC('util_body','body_image','feet')
+        $temp_socks_media = FUNC('pc_body','body_image','feet')
     else
         gs 'util_item','item_load',$wardrobe_current_socks_file,$wardrobe_current_socks_id
         $temp_socks_name = $item_name
@@ -111,7 +111,7 @@ elseif $ARGS[0] = 'render_wardrobe':
 
     if $wardrobe_current_shoes_file = '':
         $temp_shoe_name = 'No Shoes'
-        !$temp_shoe_media = FUNC('util_body','body_image','feet')
+        !$temp_shoe_media = FUNC('pc_body','body_image','feet')
         $temp_shoe_media = $temp_socks_media
     else
         gs 'util_item','item_load',$wardrobe_current_shoes_file,$wardrobe_current_shoes_id