Max Arcana Card limit:
MetaUpgradeData.lua
Code: Select all
MetaUpgradeCostData =
{
StartingMetaUpgradeLimit = 10, -- Base metaupgrade 'MEM' limit
MetaUpgradeLevelData =
{
{ CostIncrease = 28, ResourceCost = { MemPointsCommon = 40 }},
{ CostIncrease = 2, ResourceCost = { MemPointsCommon = 45 }},
{ CostIncrease = 2, ResourceCost = { MemPointsCommon = 50 }},
{ CostIncrease = 2, ResourceCost = { MemPointsCommon = 100 }},
{ CostIncrease = 2, ResourceCost = { MemPointsCommon = 120 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 150 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 170 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 200 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 230 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 240 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 260 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 290 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 320 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 350 }},
{ CostIncrease = 1, ResourceCost = { MemPointsCommon = 1000, Mixer6Common = 3, MixerShadow = 3 }},
}
}
This will give you 56 Grasp after you put in all upgrades, which is enough to activate all arcana cards. You can redistribute
CostIncrease = 28
to other levels if you want a more linear progression.
The Queen arcana activation:
Code: Select all
BonusRarity =
{
InheritFrom = { "BaseBonusMetaUpgrade" },
Cost = 0,
Image = "CardArt_20",
ResourceCost =
{
MetaCardPointsCommon = 40,
MixerHBoss = 1,
},
UpgradeResourceCost =
{
{ CardUpgradePoints = 2 },
{ CardUpgradePoints = 4, MetaFabric = 12, },
},
AutoEquipRequirements =
{
MaxDuplicateCount = 4, -- use this value or higher for guaranteed activation
RequiredMetaUpgradesMin = 1,
},
This will guarantee activation of The Queen arcana.