From 42d57090dcd749e6c21455b310693704145c84b1 Mon Sep 17 00:00:00 2001 From: Flavien Normand Date: Mon, 3 Jun 2024 17:28:57 +0200 Subject: [PATCH] Add SublimeVariant to GatheringItem SublimeVariant is used in some collectable items, it's a % based on collectability to obtain a higher grade item in the form of another item ID. Inside the sheet, it's represented as a simple link to this other item's GatheringItem entry. I'm not sure how parsers would react with this kind of recursive link but it's not the first one so it should be fine ! --- Schemas/2024.03.27.0000.0000/GatheringItem.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Schemas/2024.03.27.0000.0000/GatheringItem.yml b/Schemas/2024.03.27.0000.0000/GatheringItem.yml index 0de1936..6e0de67 100644 --- a/Schemas/2024.03.27.0000.0000/GatheringItem.yml +++ b/Schemas/2024.03.27.0000.0000/GatheringItem.yml @@ -2,7 +2,9 @@ name: GatheringItem displayField: Item fields: - name: Unknown0 - - name: Unknown1 + - name: SublimeVariant + type: link + targets: [GatheringItem] - name: Item type: link targets: [Item, EventItem]