|
@@ -220,35 +220,35 @@ if $ARGS[0] = 'Pier':
|
|
|
if pcs_piercings['total'] < pierPrefTmpMin:
|
|
|
'The artist takes a look at your unpierced ears, and with a quick sharp pain, pierces them.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/c1.jpg"></center>'
|
|
|
- gs 'piercing_management', 'add', 'ears', '1'
|
|
|
+ gs 'piercing_management', 'add', 'ears', 1
|
|
|
gs 'pain', 7, 'ears', 'pierce'
|
|
|
end
|
|
|
elseif randchan = 1 and pcs_piercings['tongue'] = 0:
|
|
|
if pcs_piercings['total'] < pierPrefTmpMin:
|
|
|
'He asks you to stick out your tongue. You comply and then start to regret it as he pierces your tongue.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/a1.jpg"></center>'
|
|
|
- gs 'piercing_management', 'add', 'tongue', '1'
|
|
|
+ gs 'piercing_management', 'add', 'tongue', 1
|
|
|
gs 'pain', 7, 'tongue', 'pierce'
|
|
|
end
|
|
|
elseif randchan = 2 and pcs_piercings['lip'] = 0:
|
|
|
if pcs_piercings['total'] < pierPrefTmpMin:
|
|
|
'The artist gently holds your lip as he drives the needle through to pierce it.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/b1.jpg"></center>'
|
|
|
- gs 'piercing_management', 'add', 'lip', '1'
|
|
|
+ gs 'piercing_management', 'add', 'lip', 1
|
|
|
gs 'pain', 7, 'lips', 'pierce'
|
|
|
end
|
|
|
elseif randchan = 3 and pcs_piercings['nose'] = 0:
|
|
|
if pcs_piercings['total'] < pierPrefTmpMin:
|
|
|
'You feel a sharp pain in your nose as he pierces your nose.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/d1.jpg"></center>'
|
|
|
- gs 'piercing_management', 'add', 'nose', '1'
|
|
|
+ gs 'piercing_management', 'add', 'nose', 1
|
|
|
gs 'pain', 7, 'nose', 'pierce'
|
|
|
end
|
|
|
elseif randchan = 4 and pcs_piercings['brow'] = 0:
|
|
|
if pcs_piercings['total'] < pierPrefTmpMin:
|
|
|
'The artist moves to above your eyes and quickly pierces your eyebrow.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/e1.jpg"></center>'
|
|
|
- gs 'piercing_management', 'add', 'brow', '1'
|
|
|
+ gs 'piercing_management', 'add', 'brow', 1
|
|
|
gs 'pain', 7, 'eyebrows', 'pierce'
|
|
|
end
|
|
|
elseif randchan = 5 and pcs_piercings['navel'] = 0:
|
|
@@ -256,7 +256,7 @@ if $ARGS[0] = 'Pier':
|
|
|
'He positions himself to pierce your belly button. You feel a sharp pain through your navel as he pierces it.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/n1.jpg"></center>'
|
|
|
pcs_horny += 2
|
|
|
- gs 'piercing_management', 'add', 'navel', '1'
|
|
|
+ gs 'piercing_management', 'add', 'navel', 1
|
|
|
gs 'pain', 7, 'tummy', 'pierce'
|
|
|
end
|
|
|
elseif randchan = 6 and pcs_piercings['nipples'] = 0:
|
|
@@ -264,7 +264,7 @@ if $ARGS[0] = 'Pier':
|
|
|
'He motions for you to lift up your shirt. After you do the man grabs your breasts rather softly and carefully pierces each nipple.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/f1.jpg"></center>'
|
|
|
pcs_horny += 5
|
|
|
- gs 'piercing_management', 'add', 'nipples', '1'
|
|
|
+ gs 'piercing_management', 'add', 'nipples', 1
|
|
|
gs 'pain', 7, 'nipples', 'pierce'
|
|
|
end
|
|
|
elseif randchan = 7 and pcs_piercings['pussy'] = 0:
|
|
@@ -273,7 +273,7 @@ if $ARGS[0] = 'Pier':
|
|
|
'You cover your mouth as you let out a quick "Eep!", as you feel a quick pain through your labia, but in a second, it''s over.'
|
|
|
'<center><img <<$set_imgh>> src="images/pc/body/piercings/g1.jpg"></center>'
|
|
|
pcs_horny += 7
|
|
|
- gs 'piercing_management', 'add', 'pussy', '1'
|
|
|
+ gs 'piercing_management', 'add', 'pussy', 1
|
|
|
gs 'pain', 7, 'pubic', 'pierce'
|
|
|
end
|
|
|
elseif pcs_piercings['total'] < pierPrefTmpMin:
|