Skip to content

Commit 87be246

Browse files
committed
Add abyss, enemy and material placeholders for 2.5
1 parent 05dfa50 commit 87be246

7 files changed

Lines changed: 103 additions & 7 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ dist/
9292
**/config.json
9393
**/store.json
9494
*.old
95-
*.db
95+
*.db
96+
*.db-journal

src/commands/misc/material.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ Note: this command supports fuzzy search.`,
128128
.setURL(`${data.baseURL}materials/${urlify(material.name, false)}`)
129129
.setColor(Colors.AQUA)
130130
.setFooter(`Page ${currentPage} / ${maxPages}`)
131-
.setDescription(material.desc)
131+
.setDescription(material.desc ?? "Upcoming material.")
132132

133133
if (material.category || material.type)
134-
embed.addField("Category", `**${material.category}**: ${material.type}`, true)
134+
embed.addField("Category", `**${material.category ?? "Unknown"}**: ${material.type ?? "Unknown"}`, true)
135135

136136
if (material.stars)
137137
embed.addField("Rarity", `${material.stars}★`, true)

src/data/gamedata/abyss_floors.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2032,5 +2032,13 @@
20322032
]
20332033
}
20342034
]
2035+
},
2036+
"36": {
2037+
"teams": 2,
2038+
"leyline": "All characters in the party gain a 60% Electro DMG Bonus.\nAll party members gain 30% Healing Bonus."
2039+
},
2040+
"37": {
2041+
"teams": 2,
2042+
"leyline": "For this floor only, the ley line flow will be normal."
20352043
}
20362044
}

src/data/gamedata/abyss_schedule.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -768,5 +768,49 @@
768768
34,
769769
35
770770
]
771+
},
772+
"35": {
773+
"start": "2022-03-01 04:00:00",
774+
"end": "2022-03-16 03:59:59",
775+
"buff": "Lightning Moon",
776+
"buffDesc": "When opponents take Electro-Charged DMG, their Electro RES decreases by 10% for 10s. Max 4 stacks. Each stack's duration is independent. Each enemy can receive this effect once every 1.2s.",
777+
"regularFloors": [
778+
1,
779+
2,
780+
3,
781+
4,
782+
5,
783+
6,
784+
7,
785+
8
786+
],
787+
"spiralAbyssFloors": [
788+
24,
789+
25,
790+
36,
791+
37
792+
]
793+
},
794+
"36": {
795+
"start": "2022-03-16 04:00:00",
796+
"end": "2022-04-01 03:59:59",
797+
"buff": "Godcall Moon",
798+
"buffDesc": "When the active character's Normal Attacks, Charged Attacks, Plunging Attacks, Elemental Skills, and Elemental Bursts hit an opponent affected by Electro, a shockwave is created at that opponent's position, dealing True DMG. A shockwave may be produced in this manner every 2s.",
799+
"regularFloors": [
800+
1,
801+
2,
802+
3,
803+
4,
804+
5,
805+
6,
806+
7,
807+
8
808+
],
809+
"spiralAbyssFloors": [
810+
24,
811+
25,
812+
36,
813+
37
814+
]
771815
}
772816
}

src/data/gamedata/enemies.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2523,6 +2523,22 @@
25232523
]
25242524
]
25252525
},
2526+
"Magatsu Mitake Narukami no Mikoto": {
2527+
"name": "Magatsu Mitake Narukami no Mikoto",
2528+
"notes": "Upcoming enemy\nThis is the form that the puppet that inherited the Raiden Shogun's authority takes when she is opposing those who threaten Eternity."
2529+
},
2530+
"Shadowy Husk: Standard Bearer": {
2531+
"name": "Shadowy Husk: Standard Bearer",
2532+
"notes": "Upcoming enemy\nAn enigmatic warrior of darkness."
2533+
},
2534+
"Shadowy Husk: Line Breaker": {
2535+
"name": "Shadowy Husk: Line Breaker",
2536+
"notes": "Upcoming enemy\nAn enigmatic warrior of darkness."
2537+
},
2538+
"Shadowy Husk: Defender": {
2539+
"name": "Shadowy Husk: Defender",
2540+
"notes": "Upcoming enemy\nAn enigmatic warrior of darkness."
2541+
},
25262542
"Hydro Mimic Boar": {
25272543
"name": "Hydro Mimic Boar",
25282544
"icon": "img/enemy/Hydro_Mimic.png",

src/data/gamedata/materials.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4844,6 +4844,33 @@
48444844
"Delicious Fragrant Mashed Potatoes": "Increases all party members' ATK by 228 for 300s. In Co-Op Mode, this effect only applies to your own character(s)."
48454845
}
48464846
},
4847+
"Sangayaki": {
4848+
"name": "Sangayaki",
4849+
"desc": "Upcoming food.",
4850+
"type": "Food",
4851+
"category": "Food and Potions",
4852+
"sources": [
4853+
"Obtained by cooking"
4854+
]
4855+
},
4856+
"Udon Noodles": {
4857+
"name": "Udon Noodles",
4858+
"desc": "Upcoming food.",
4859+
"type": "Food",
4860+
"category": "Food and Potions",
4861+
"sources": [
4862+
"Obtained by cooking"
4863+
]
4864+
},
4865+
"Fukuuchi Udon": {
4866+
"name": "Fukuuchi Udon",
4867+
"desc": "Upcoming food.",
4868+
"type": "Food",
4869+
"category": "Food and Potions",
4870+
"sources": [
4871+
"Obtained by cooking"
4872+
]
4873+
},
48474874
"Holy Water": {
48484875
"name": "Holy Water",
48494876
"desc": "A bottle of clear, colorless, and contaminant-free liquid. Indistinguishable from ordinary spring water. May or may not be worth putting all of one's hopes into.",

src/utils/Types.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -518,12 +518,12 @@ export interface Enemy {
518518

519519
export interface Material {
520520
name: string
521-
desc: string
521+
desc?: string
522522
longDesc?: string
523523
stars?: number
524-
type: string
525-
category: string
526-
icon: string
524+
type?: string
525+
category?: string
526+
icon?: string
527527
sources?: string[]
528528
specialty?: { char: string, recipe: string }
529529
recipe?: Item[]

0 commit comments

Comments
 (0)