Export Weapon and Trap Items#70
Open
TomatechGames wants to merge 11 commits intoBanjoByTheBay:masterfrom
Open
Conversation
Added UObjectExporter equivelents for exporters based on GroupExporter, and disabled GroupExporter exports by making them uninterested in any assets (GroupExporter-based exporters are now suffixed with "Old") Additionally - SchematicExporter now exports ammo and ingredient schematics - HeroPerkName and CommanderPerkName in HeroItemData have been renamed to HeroPerkTemplate and CommanderPerkTemplate, and now export the entire Ability Template Id instead of just the name component - UObjectExporters can now be forced to export rarities (including Uncommon) in cases where the exporter knows that all the items it exports are supposed to have a rarity. This allows applications to differentiate between items with a default rarity and items with no rarity
Adds a new ItemRecipe class that can contain the Cost, Result Template Id and Result Amount of a recipe. This new class is used to represent Tier Upgrade, Rarity Upgrade, and Recycling recipes. Since Recycling and Tier Up recipes change their XP requirements based on an items level, an ItemLevelsToXP curve table is now exported, and items export their relevant rows Alteration Slots now export the base reperk cost of the slot, and Alterations now export the evolution cost and additional reperk cost for that alteration
Adds WeaponExporter, TrapExporter, WeaponItemData and TrapItemData. Weapon and Trap stat classes have been moved from the SchameticItemData file to their respective files (SchematicItemData still contains the stat classes as properties). Moved Weapon/Trap stat converter and Category/Subtype generator methods out of SchematicExporter, and made them public and static so that SchematicExporter can still use them. Weapons/Traps put their Disassembly recipes into the RecycleRecipe property
This reverts commit 826b7a4.
5800305 to
2e1ed61
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Adds WeaponExporter, TrapExporter, WeaponItemData and TrapItemData. Weapon and Trap stat classes have been moved from the SchameticItemData file to their respective files (SchematicItemData still contains the stat classes as properties).
Moved Weapon/Trap stat converter and Category/Subtype generator methods out of SchematicExporter, and made them public and static so that SchematicExporter can still use them.
Weapons/Traps put their Disassembly recipes into the RecycleRecipe property
Depends on #67 and #69