FM - Taro Overhaul and Mob Drop Reserved Slots #25
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Warning
Merge #24 before merging this PR.
Features
MiscDropType 0now signifies no drops.MiscDropTypes following that follow this format up until and including level 36:MiscDropType (i - 1) * 4 + 1is the reward for single mobs of leveli.MiscDropType (i - 1) * 4 + 2is the reward for group mobs of leveli.MiscDropType (i - 1) * 4 + 3is the reward for boss mobs of leveli.MiscDropType (i - 1) * 4 + 4is the reward for fusion mobs of leveli.MiscDropTypes after that are free-form, and contain things like Blowfish rewards, and for Academy, the Academy tutorial reward values.MobDrops now follow the following pattern until and up to level 36, leaving IDs unused if there aren't a need for separateMobDrops:MobDrop (i - 1) * 40to(i - 1) * 40 + 9is the mob drops for single mobs of leveli.MobDrop (i - 1) * 40 + 10to(i - 1) * 40 + 19is the mob drops for group mobs of leveli.MobDrop (i - 1) * 40 + 20to(i - 1) * 40 + 29is the mob drops for boss mobs of leveli.MobDrop (i - 1) * 40 + 30to(i - 1) * 40 + 39is the mob drops for single mobs of leveli.MobDrops are free-form, used for bosses, events and specific Academy outputs.MobDropIDs are not overwritten by other patches, they are extracted with a mind to "only add mob drops, not remove or edit them" in a patch. This keeps fix patches low-profile.