Skip to content

Commit

Permalink
coromodir, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mcb5637 committed Apr 19, 2021
1 parent ccdf87a commit e5b9247
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 5 deletions.
4 changes: 2 additions & 2 deletions BTX_CAC_Compatibility/mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Description": "Modifies BTX (and BTXMinusWeapons) for CAC.",
"Author": "mcb",
"Website": "",
"Version": "0.1.12.0",
"Version": "0.1.14.0",

"DependsOn": [ "BT_Extended", "BT_Extended_Timeline", "BT_Extended_CE", "BT_Extended_3050", "BT_Extended_Clans", "BT_Extended_Quirks", "Custom Ammo Categories", "CustomActivatableEquipment", "IRTweaks" ],
"OptionallyDependsOn": [ "BTXMinusWeapons" ],
Expand All @@ -14,7 +14,7 @@
"DLL": "BTX_CAC_CompatibilityDll.dll",

"Settings": {
"Use4LimitOnContractIds": [ "uw1_4_destroyBase", "tournament_1_3wayBattle", "tournament_a1_3wayBattle", "Story_6B_TreasureTrove_Default" ],
"Use4LimitOnContractIds": [ "uw1_4_destroyBase", "tournament_1_3wayBattle", "tournament_a1_3wayBattle", "Story_6B_TreasureTrove_Default", "Story_9_Downfall_Default" ],
"ReplaceInItemCollections": {
"Weapon_Inferno_Inferno2_0-STOCK": { "ID": "Ammo_AmmunitionBox_Generic_SRM_Inferno", "Type": "AmmunitionBox" },
"Weapon_Inferno_Inferno2_1-Harvester": { "ID": "Ammo_AmmunitionBox_Generic_SRM_Inferno", "Type": "AmmunitionBox" },
Expand Down
4 changes: 2 additions & 2 deletions BTX_CAC_CompatibilityDll/BTX_CAC_CompatibilityDll/MC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void Postfix(ref string __result)
string type = MissionControl.MissionControl.Instance.CurrentContract.ContractTypeValue.Name;
if (type=="Panzyr_Attack" || type=="Itrom_Attack")
__result = "PlayerLanceSpawner_Attack";
else if (type=="Smithon_Attack" || type=="Story_6A_TreasureTrove" || type=="Smithon_Defense" || type=="Panzyr_Defense" || type=="Story_7_GunboatDiplomacy" || type=="Tyrlon_Attack")
else if (type=="Smithon_Attack" || type=="Story_6A_TreasureTrove" || type=="Smithon_Defense" || type=="Panzyr_Defense" || type=="Story_7_GunboatDiplomacy" || type=="Tyrlon_Attack" || type=="Story_8_Locura")
__result = "PlayerLanceSpawner";
}
}
Expand All @@ -53,7 +53,7 @@ public static void Postfix(ref string __result)
string type = MissionControl.MissionControl.Instance.CurrentContract.ContractTypeValue.Name;
if (type == "Story_5_ServedCold")
__result = "01_InitialSetup/Chunk_PlayerLance";
else if (type=="Story_6A_TreasureTrove" || type== "Story_7_GunboatDiplomacy")
else if (type=="Story_6A_TreasureTrove" || type== "Story_7_GunboatDiplomacy" || type == "Story_8_Locura")
__result = "Gen_PlayerLance";
else if (type == "Itrom_Attack")
__result = "Chunk_PlayerLance_Attack";
Expand Down
2 changes: 1 addition & 1 deletion BTX_CAC_CompatibilityDll/BTX_CAC_CompatibilityDll/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using System.Threading.Tasks;
using UnityEngine;

[assembly: AssemblyVersion("0.1.13.0")]
[assembly: AssemblyVersion("0.1.14.0")]

namespace BTX_CAC_CompatibilityDll
{
Expand Down
29 changes: 29 additions & 0 deletions MissionControl/config/Contracts/Story_8_Locura_Default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"ID": "Story_8_Locura_Default",
"RandomSpawns": {
"Enable": false
},
"HotDropProtection": {
"Enable": false
},
"AdditionalLances": {
"Enable": false,
"EnemyLanceCount": 2,
"AllyLanceCount": 1
},
"ExtendedLances": {
"Enable": false,
"EnemyLanceSize": 6,
"AllyLanceSize": 5
},
"ExtendedBoundaries": {
"Enable": false,
"IncreaseBoundarySizeByPercentage": 0.5
},
"DynamicWithdraw": {
"Enable": false
},
"AdditionalPlayerMechs": {
"Enable": true
}
}

0 comments on commit e5b9247

Please sign in to comment.