diff --git a/src/data/characters.js b/src/data/characters.js index a58749b0..4e8e94e4 100644 --- a/src/data/characters.js +++ b/src/data/characters.js @@ -2122,4 +2122,75 @@ export const characters = { boss: itemList.shadow_of_the_warrior, }, }, + xiao: { + name: 'Xiao', + id: 'xiao', + rarity: 5, + element: elements.anemo, + weapon: weapons.polearm, + sex: 'male', + nation: 'liyue', + ascension: [ + { + items: [ + { item: itemList.vayuda_turquoise_sliver, amount: 1 }, + { item: itemList.none, amount: null }, + { item: itemList.qingxin, amount: 3 }, + { item: itemList.slime_condensate, amount: 3 }, + ], + mora: 20000, + }, + { + items: [ + { item: itemList.vayuda_turquoise_fragment, amount: 3 }, + { item: itemList.juvenile_jade, amount: 2 }, + { item: itemList.qingxin, amount: 10 }, + { item: itemList.slime_condensate, amount: 15 }, + ], + mora: 40000, + }, + { + items: [ + { item: itemList.vayuda_turquoise_fragment, amount: 6 }, + { item: itemList.juvenile_jade, amount: 4 }, + { item: itemList.qingxin, amount: 20 }, + { item: itemList.slime_secretions, amount: 12 }, + ], + mora: 60000, + }, + { + items: [ + { item: itemList.vayuda_turquoise_chunk, amount: 3 }, + { item: itemList.juvenile_jade, amount: 8 }, + { item: itemList.qingxin, amount: 30 }, + { item: itemList.slime_secretions, amount: 18 }, + ], + mora: 80000, + }, + { + items: [ + { item: itemList.vayuda_turquoise_chunk, amount: 6 }, + { item: itemList.juvenile_jade, amount: 12 }, + { item: itemList.qingxin, amount: 45 }, + { item: itemList.slime_concentrate, amount: 12 }, + ], + mora: 100000, + }, + { + items: [ + { item: itemList.vayuda_turquoise_gemstone, amount: 6 }, + { item: itemList.juvenile_jade, amount: 20 }, + { item: itemList.qingxin, amount: 60 }, + { item: itemList.slime_concentrate, amount: 24 }, + ], + mora: 120000, + }, + ], + stats: { hp: 11840, atk: 325, def: 743 }, + material: { + book: [itemList.teachings_of_prosperity, itemList.guide_to_prosperity, itemList.philosophies_of_prosperity], + material: [itemList.slime_condensate, itemList.slime_secretions, itemList.slime_concentrate], + boss: itemList.shadow_of_the_warrior, + }, + }, }; diff --git a/src/data/itemGroup.js b/src/data/itemGroup.js index 8f5f04d6..25b9ee3f 100644 --- a/src/data/itemGroup.js +++ b/src/data/itemGroup.js @@ -161,6 +161,13 @@ export const itemGroup = { ], type: 'ascension_gem', }, + juvenile_jade: { + name: 'Juvenile Jade', + items: [ + itemList.juvenile_jade + ], + type: 'ascension_gem', + }, chaos_device: { name: 'Chaos', items: [ diff --git a/src/data/itemList.js b/src/data/itemList.js index 019af550..2c40aefc 100644 --- a/src/data/itemList.js +++ b/src/data/itemList.js @@ -634,4 +634,5 @@ export const itemList = { silk_flower: { id: 'silk_flower', name: 'Silk Flower' }, qingxin: { id: 'qingxin', name: 'Qingxin' }, shadow_of_the_warrior: { id: 'shadow_of_the_warrior', name: 'Shadow of the Warrior' }, + juvenile_jade: { id: 'juvenile_jade', name: 'Juvenile Jade', rarity: 5 }, }; diff --git a/src/routes/settings.svelte b/src/routes/settings.svelte index e8f6306a..7038ee95 100644 --- a/src/routes/settings.svelte +++ b/src/routes/settings.svelte @@ -80,7 +80,7 @@
-

Data Version: 1.2 (Ganyu Patch)

+

Data Version: 1.3

@@ -150,7 +150,9 @@

{#if changelogOpen}
-
2021/02/02 
+        
2021/02/03 
+- Add Xiao
+
2021/02/02 
 - Add resin approximation on todo list
 - Change todo today farmable item view
 - Add WL and AR setting for resin approximation
diff --git a/src/routes/todo.svelte b/src/routes/todo.svelte index bf541070..404b9432 100644 --- a/src/routes/todo.svelte +++ b/src/routes/todo.svelte @@ -494,38 +494,4 @@ @apply border-b-0; } } - - .tooltip { - @apply relative; - - &:hover { - .tooltip-content { - @apply block; - } - } - } - - .tooltip-content { - @apply hidden; - @apply absolute; - @apply bg-gray-400; - @apply text-gray-900; - @apply rounded-xl; - @apply w-64; - @apply px-4; - @apply py-2; - @apply shadow-lg; - - right: -20px; - top: 40px; - - &:before { - content: ''; - top: -20px; - right: 21px; - border: 10px solid transparent; - border-bottom: 10px solid #cbd5e0; - position: absolute; - } - } diff --git a/static/images/items/juvenile_jade.png b/static/images/items/juvenile_jade.png new file mode 100644 index 00000000..eb0879d1 Binary files /dev/null and b/static/images/items/juvenile_jade.png differ