Browse Source

[added] you can throw away your porn card decks (new cards can be bought again, vintage cards are gone forever)
[added] ability to look at the modern cards in gadsarai
[fixes] vcards can be found again

julzor 5 years ago
parent
commit
3ced201973
2 changed files with 12 additions and 2 deletions
  1. 5 2
      locations/Gadsarai.qsrc
  2. 7 0
      locations/card.qsrc

+ 5 - 2
locations/Gadsarai.qsrc

@@ -323,7 +323,7 @@ if $ARGS[0] = '':
 			*clr & cla
 			minut += 15
 			gs 'stat'
-			if vcard = 0:
+			if vcard = 0 and vcard_trash = 0:
 				*clr & cla
 				if RAND(0,5) >= 4:
 					gs 'stat'
@@ -409,7 +409,10 @@ if $ARGS[0] = '':
 		end
 
 		if vcard > 0:
-			act 'Take card from the vintage deck of erotic cards':card_deck = 0 & gt 'card'
+			act 'Look at your deck of vintage porn cards':card_deck = 0 & gt 'card'
+		end
+		if card > 0:
+			act 'Look at your deck of new porn cards':card_deck = 1 & gt 'card'
 		end
 
 		if pcs_horny >= 50:

+ 7 - 0
locations/card.qsrc

@@ -58,6 +58,13 @@ act 'Pull a card from the deck':
 end
 
 act 'Put the cards away':gt $loc
+
+if card_deck = 0:
+	act 'Throw away your deck of vintage porn cards': vcard = 0 & vcard_trash = 1 & gt $loc
+elseif card_deck = 1:
+	act 'Throw away your deck of new porn cards': card = 0 & gt $loc
+end
+
 !!act 'Playing cards':gt 'blackjack'
 
 --- card ---------------------------------