Unique missions in Duviri don't give special resources #561

Open
opened 2024-10-17 15:43:12 -07:00 by VampireKitten · 8 comments
VampireKitten commented 2024-10-17 15:43:12 -07:00 (Migrated from github.com)

This Kullervo mission...

RewardInfo: {
    EOM_AFK: 0,
    node: 'SolNode236',
    JobTier: -5,
    EncounterEnemyLevel: 5000,
    T: 15,
    CheckpointCounter: 59
  },

Rewarded normal resources, rather than Kullervo's Banes:

2024-10-18T00:40:13:126 [0.1.0] debug:  Mission rewards: {
  '0': {
    type: '/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriPlantItemA',
    itemCount: 1,
    probability: 0.22
  }
 }

Same occurred with the special portal giving neither Pathos Clamps nor an Eidolon Arcane, but I realized too late to figure out what the RewardInfo was for it.

This Kullervo mission... ``` RewardInfo: { EOM_AFK: 0, node: 'SolNode236', JobTier: -5, EncounterEnemyLevel: 5000, T: 15, CheckpointCounter: 59 }, ``` Rewarded normal resources, rather than Kullervo's Banes: ``` 2024-10-18T00:40:13:126 [0.1.0] debug: Mission rewards: { '0': { type: '/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriPlantItemA', itemCount: 1, probability: 0.22 } } ``` Same occurred with the special portal giving neither Pathos Clamps nor an Eidolon Arcane, but I realized too late to figure out what the RewardInfo was for it.

At first glance I'd say this is not enough information to implement this.

At first glance I'd say this is not enough information to implement this.
VampireKitten commented 2024-10-17 15:53:13 -07:00 (Migrated from github.com)

T seems to be marking what type of reward it's meant to be given, as T: 1 is always used for "default" common decree+random resource reward, T: 5 seems to be for "main quest" Undercroft that gives Rare Decree, and T: 15 is Kullervo. I'll add the numbers for the rest of the Undercroft Portals and the end boss once I reach them, and do a second run to see if they're consistent.

T seems to be marking what type of reward it's meant to be given, as T: 1 is always used for "default" common decree+random resource reward, T: 5 seems to be for "main quest" Undercroft that gives Rare Decree, and T: 15 is Kullervo. I'll add the numbers for the rest of the Undercroft Portals and the end boss once I reach them, and do a second run to see if they're consistent.

Hmm, then it might refer to the tier of the missiondeck/droptable, in which case ExportRewards is a bit inadequate in this area and would need to be improved to add this extra dimensionality for duviri.

Hmm, then it might refer to the _tier_ of the missiondeck/droptable, in which case ExportRewards is a bit inadequate in this area and would need to be improved to add this extra dimensionality for duviri.
VampireKitten commented 2024-10-17 16:16:15 -07:00 (Migrated from github.com)

T: 70 appears to be the final Orowyrm chest. T: 13 seems to be the extra Undercroft Portals. All tested in Normal Path, I presume the Undercroft Portals have a different Tier in Steel Path since they reward exclusive Duviri Arcanes in Steel Path. Got a T: 2 after Feeding the Maw that gave me a Rare Decree.

Given how the reward seems to be setup, is it possible it's also used for the various Bounty systems across Open Worlds and Zariman/Laboratories?

T: 70 appears to be the final Orowyrm chest. T: 13 seems to be the extra Undercroft Portals. All tested in Normal Path, I presume the Undercroft Portals have a different Tier in Steel Path since they reward exclusive Duviri Arcanes in Steel Path. Got a T: 2 after Feeding the Maw that gave me a Rare Decree. Given how the reward seems to be setup, is it possible it's also used for the various Bounty systems across Open Worlds and Zariman/Laboratories?

Well, the bounty reward tiers are already handled correctly in ExportRewards, iirc.

Well, the bounty reward tiers are already handled correctly in ExportRewards, iirc.
VampireKitten commented 2024-10-18 09:20:30 -07:00 (Migrated from github.com)

Bounties appear to use "JobStage" instead, alongside "jobId". I believe jobId was also present for Duviri, but it was in a separate section and always reported back the spiral, which doesn't affect the rewards as far as I know. This is from the "Prove Yourself" bounty in Cetus, with Q I believe being whether you completed the secondary objective or not:

RewardInfo: {
    EOM_AFK: 0,
    node: 'SolNode228',
    JobTier: -2,
    jobId: '/Lotus/Types/Gameplay/Eidolon/Jobs/NewbieJob_-2_CetusHub4',
    JobStage: 0,
    Q: true,
    CheckpointCounter: 2
  },
Bounties appear to use "JobStage" instead, alongside "jobId". I believe jobId was also present for Duviri, but it was in a separate section and always reported back the spiral, which doesn't affect the rewards as far as I know. This is from the "Prove Yourself" bounty in Cetus, with Q I believe being whether you completed the secondary objective or not: ``` RewardInfo: { EOM_AFK: 0, node: 'SolNode228', JobTier: -2, jobId: '/Lotus/Types/Gameplay/Eidolon/Jobs/NewbieJob_-2_CetusHub4', JobStage: 0, Q: true, CheckpointCounter: 2 }, ```
Contributor

I know for certain that T: 13 was the second extra Undercroft Portal I did, and I presume T: 1 has to be the normal random decree bounties.

I also noticed that none of the bounties seem to be rewarding the plants anymore? Only Intrinsics and a Decree.

  RewardInfo: {
    EOM_AFK: 0,
    node: 'SolNode236',
    JobTier: -5,
    EncounterEnemyLevel: 3000,
    T: 1,
    CheckpointCounter: 32
  },
  RewardInfo: {
    EOM_AFK: 0,
    node: 'SolNode236',
    JobTier: -5,
    EncounterEnemyLevel: 6000,
    T: 13,
    CheckpointCounter: 33
  },
I know for certain that `T: 13` was the second extra Undercroft Portal I did, and I presume `T: 1` has to be the normal random decree bounties. I also noticed that none of the bounties seem to be rewarding the plants anymore? Only Intrinsics and a Decree. ``` RewardInfo: { EOM_AFK: 0, node: 'SolNode236', JobTier: -5, EncounterEnemyLevel: 3000, T: 1, CheckpointCounter: 32 }, RewardInfo: { EOM_AFK: 0, node: 'SolNode236', JobTier: -5, EncounterEnemyLevel: 6000, T: 13, CheckpointCounter: 33 }, ```

So, I guess for T: 1, we should give one of these items:

image.webp

So, I guess for `T: 1`, we should give one of these items: ![image.webp](/attachments/929e9c1c-b646-4f60-a21b-3ede9f744444)
2.9 KiB
Sign in to join this conversation.
No description provided.