Updated JA2_options inis

git-svn-id: https://ja2svn.mooo.com/source/ja2_v1.13_data@2540 4f8fa57e-7814-0410-bad4-adc449f26b7c
This commit is contained in:
Flugente
2020-06-02 15:06:55 +00:00
parent 6d74b49190
commit 6ec0553302
5 changed files with 2473 additions and 1090 deletions
+2 -1
View File
@@ -4225,7 +4225,7 @@ MILITIA_RESOURCES_WEAPONMOD_SHOTGUN = 1.0
;------------------------------------------------------------------------------------------------------------------------------
; The player can acquire and spend the Intel resource. This resource is closely tied to espionage and information brokering.
; The goal is to deepen the game experience by allowing for more espionage/intelligence/reconaissance roleplay.
; The goal is to deepen the game experience by allowing for more espionage/intelligence/reconnaissance roleplay.
;
; Intel can be gained in several ways:
; - interactive actions (like reading classified documents in a military base, hacking computers) can give one-time resources.
@@ -4241,6 +4241,7 @@ MILITIA_RESOURCES_WEAPONMOD_SHOTGUN = 1.0
; - After you've received your first intel, you will receive an email with further tips on this. One will be the link to the
; R.I.S. website. You can buy information on several things (troop presence & movement, enemy VIPs, location of imprisoned mercs...) here.
; - Rumours say that a special trader deals high-tech weaponry exclusively for intel.
; - Disguised spies can use it to boost their chances of creating turncoats out of enemies, see the 'Covert Ops' section of Skills_Settings.ini.
;------------------------------------------------------------------------------------------------------------------------------
RESOURCE_INTEL = TRUE
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -4215,7 +4215,7 @@ MILITIA_RESOURCES_WEAPONMOD_SHOTGUN = 1.0
;------------------------------------------------------------------------------------------------------------------------------
; The player can acquire and spend the Intel resource. This resource is closely tied to espionage and information brokering.
; The goal is to deepen the game experience by allowing for more espionage/intelligence/reconaissance roleplay.
; The goal is to deepen the game experience by allowing for more espionage/intelligence/reconnaissance roleplay.
;
; Intel can be gained in several ways:
; - interactive actions (like reading classified documents in a military base, hacking computers) can give one-time resources.
@@ -4231,6 +4231,7 @@ MILITIA_RESOURCES_WEAPONMOD_SHOTGUN = 1.0
; - After you've received your first intel, you will receive an email with further tips on this. One will be the link to the
; R.I.S. website. You can buy information on several things (troop presence & movement, enemy VIPs, location of imprisoned mercs...) here.
; - Rumours say that a special trader deals high-tech weaponry exclusively for intel.
; - Disguised spies can use it to boost their chances of creating turncoats out of enemies, see the 'Covert Ops' section of Skills_Settings.ini.
;------------------------------------------------------------------------------------------------------------------------------
RESOURCE_INTEL = FALSE
+18
View File
@@ -708,6 +708,24 @@ PhotoFlag =
-- sOptimalNumber: how many items the trader should have at maximum
function AddArmsDealerAdditionalIntelData()
-- price is affected by player progress - on higher progress items get cheaper (as they are less useful at that point)
progress = CurrentPlayerProgressPercentage()
ratio = (200.0 - progress) / 100.0
-- black market:
-- guns
AddArmsDealerAdditionalIntelDataItem(68, 65, 40 * ratio, 1) -- Auto Rocket Rifle
AddArmsDealerAdditionalIntelDataItem(68, 335, 40 * ratio, 1) -- Barret M82A2
-- Ammo
AddArmsDealerAdditionalIntelDataItem(68, 113, 5 * ratio, 5) -- Minirocket 5 HEAP
AddArmsDealerAdditionalIntelDataItem(68, 116, 5 * ratio, 4) -- .50 BMG 10 AP
-- Misc
AddArmsDealerAdditionalIntelDataItem(68, 216, 6 * ratio, 3) -- Compound 18
AddArmsDealerAdditionalIntelDataItem(68, 235, 2 * ratio, 4) -- Regeneration Booster
AddArmsDealerAdditionalIntelDataItem(68, 324, 50 * ratio, 1) -- X-Ray Detector
AddArmsDealerAdditionalIntelDataItem(68, 327, 11 * ratio, 2) -- Tank of gas
end