Browse Source

[changed] Increased some costs for drugs and added a 1.5 times muliplier to total willpower

KevinSmarts 4 năm trước cách đây
mục cha
commit
e243ca79ef
1 tập tin đã thay đổi với 11 bổ sung7 xóa
  1. 11 7
      locations/willpower.qsrc

+ 11 - 7
locations/willpower.qsrc

@@ -842,6 +842,7 @@ if $ARGS[0] = 'misc':
 			will_cost = (20 + will_calc)/10
 		end
 	end
+	gs 'willpower', 'difficulty', '<<$ARGS[2]>>'
 end
 
 !!modifiers for drink an drugs
@@ -863,31 +864,34 @@ if $ARGS[0] = 'dnd':
 	if amphWithdrawl > 2:
 		will_dnd += 40
 	elseif amphHigh > 0:
-		will_dnd += 60
+		will_dnd += 80
 	end
 	!!heroine
 	if SLomka > 0:
-		will_dnd += 80
+		will_dnd += 100
 	elseif StrongNarkota > 0:
-		will_dnd += 50
+		will_dnd += 60
 	end
 	!!cocaine
 	if narkoman = 1:
-		will_dnd += 40
+		will_dnd += 60
 	elseif nark < 0:
 		will_dnd -= 20
 	end
 end
 
 if $ARGS[0] = 'difficulty':
+!!Multiplier to make willpower cost more. Use if all total costs need adjusting.
+	will_cost = will_cost * 3 / 2
+
 	if $ARGS[1] = 'easy':
 		will_cost = will_cost * 2/3
-		if will_cost < 3: will_cost = 3
+		if will_cost < 5: will_cost = 5
 	elseif $ARGS[1] = 'hard':
 		will_cost = will_cost * 3/2
-		if will_cost < 5: will_cost = 5
+		if will_cost < 7: will_cost = 7
 	else
-		if will_cost < 4: will_cost = 4
+		if will_cost < 6: will_cost = 6
 	end
 end