undercroft side portals have different T for SP
This commit is contained in:
parent
b53260e7bd
commit
8c39ae64c3
@ -1403,23 +1403,30 @@ function getRandomMissionDrops(
|
||||
} else {
|
||||
rewardManifests = [];
|
||||
}
|
||||
} else if (RewardInfo.T == 13) {
|
||||
// Undercroft extra/side portal (normal mode), gives 1 Pathos Clamp + Duviri Arcane.
|
||||
drops.push({
|
||||
StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem",
|
||||
ItemCount: 1
|
||||
});
|
||||
rewardManifests = [
|
||||
"/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriStaticUndercroftResourceRewards"
|
||||
];
|
||||
} else if (RewardInfo.T == 14) {
|
||||
// Undercroft extra/side portal (steel path), gives 3 Pathos Clamps + Eidolon Arcane.
|
||||
drops.push({
|
||||
StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem",
|
||||
ItemCount: 3
|
||||
});
|
||||
rewardManifests = [
|
||||
"/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriSteelPathStaticUndercroftResourceRewards"
|
||||
];
|
||||
} else if (RewardInfo.T == 15) {
|
||||
rewardManifests = [
|
||||
mission?.Tier == 1
|
||||
? "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriKullervoSteelPathRNGRewards"
|
||||
: "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriKullervoNormalRNGRewards"
|
||||
];
|
||||
} else if (RewardInfo.T == 13) {
|
||||
// Undercroft extra/side portal, gives 1 Pathos Clamp + Duviri Arcane, or 3 Pathos Clamp + Eidolon Arcane on Steel Path.
|
||||
drops.push({
|
||||
StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem",
|
||||
ItemCount: mission?.Tier == 1 ? 3 : 1
|
||||
});
|
||||
rewardManifests = [
|
||||
mission?.Tier == 1
|
||||
? "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriSteelPathStaticUndercroftResourceRewards"
|
||||
: "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriStaticUndercroftResourceRewards"
|
||||
];
|
||||
} else if (RewardInfo.T == 70) {
|
||||
// Orowyrm chest, gives 10 Pathos Clamps, or 15 on Steel Path.
|
||||
drops.push({
|
||||
|
Loading…
x
Reference in New Issue
Block a user