feat: resource reward along with duviri decree #2066

Merged
Sainan merged 6 commits from duviri-rewards into main 2025-05-13 20:38:37 -07:00
Showing only changes of commit b53260e7bd - Show all commits

View File

@ -1410,12 +1410,16 @@ function getRandomMissionDrops(
: "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriKullervoNormalRNGRewards" : "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriKullervoNormalRNGRewards"
]; ];
} else if (RewardInfo.T == 13) { } else if (RewardInfo.T == 13) {
// Undercroft extra/side portal, gives 1 Pathos Clamp, or 3 on Steel Path. // Undercroft extra/side portal, gives 1 Pathos Clamp + Duviri Arcane, or 3 Pathos Clamp + Eidolon Arcane on Steel Path.
drops.push({ drops.push({
StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem",
ItemCount: mission?.Tier == 1 ? 3 : 1 ItemCount: mission?.Tier == 1 ? 3 : 1
}); });
rewardManifests = []; rewardManifests = [
mission?.Tier == 1
? "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriSteelPathStaticUndercroftResourceRewards"
: "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriStaticUndercroftResourceRewards"
];
} else if (RewardInfo.T == 70) { } else if (RewardInfo.T == 70) {
// Orowyrm chest, gives 10 Pathos Clamps, or 15 on Steel Path. // Orowyrm chest, gives 10 Pathos Clamps, or 15 on Steel Path.
drops.push({ drops.push({