From 3bd5cdd1985a4797611cde6df6ea809976190b58 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 21 Mar 2023 17:41:19 -0700 Subject: [PATCH] Add logic for showing Lucifer uncap and 250 art --- components/SummonUnit/index.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/components/SummonUnit/index.tsx b/components/SummonUnit/index.tsx index 7f939085..42e98651 100644 --- a/components/SummonUnit/index.tsx +++ b/components/SummonUnit/index.tsx @@ -141,7 +141,14 @@ const SummonUnit = ({ let suffix = '' if (gridSummon.object.uncap.xlb && gridSummon.uncap_level == 6) { - suffix = '_03' + if ( + gridSummon.transcendence_step >= 1 && + gridSummon.transcendence_step < 5 + ) { + suffix = '_03' + } else if (gridSummon.transcendence_step === 5) { + suffix = '_04' + } } else if ( upgradedSummons.indexOf(summon.granblue_id.toString()) != -1 && gridSummon.uncap_level == 5