BanjoByTheBay / BanjoBotAssets

A tool to export names, descriptions, and other data related to game items from Fortnite: Save The World.
GNU General Public License v3.0
15 stars 3 forks source link

include additional data for schematic type: weapons #10

Closed kass507 closed 2 years ago

kass507 commented 2 years ago

It is possible to add the values:

Both data are displayed for schematics type weapon (in its WID version)

taradinoc commented 2 years ago

7bdc994291fe434ce16d33e0fa9146f7ecc075aa didn't fully implement this: it uses the same DisplayTier for all schematics in a group, but obviously it has to change depending on the tier.

To avoid having to load every schematic asset, we can calculate DisplayTier from Tier and EvoType.

kass507 commented 2 years ago

i guess it would be like this

{
    "0": {
        "ore": "HandMade"
    },
    "1": {
        "ore": "Copper"
    },
    "2": {
        "ore": "Silver"
    },
    "3": {
        "ore": "Malachite"
    },
    "4": {
        "ore": "Obsidian",
        "crystal": "Shadowshard"
    },
    "5": {
        "ore": "Brightcore",
        "crystal": "Sunbeam"
    }
}
taradinoc commented 2 years ago

Fixed in 47c135277a99f331b35de64bc9bc520148755fb4.