Skip to content

Commit 5a464f6

Browse files
authored
Merge pull request #62 from Nikke-db/story-adventure-feature
Story adventure feature
2 parents cf7e7da + 68ae95a commit 5a464f6

File tree

18 files changed

+3400
-29
lines changed

18 files changed

+3400
-29
lines changed

original_Loader.vue

41.3 KB
Binary file not shown.

package-lock.json

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"crypto-js": "^4.2.0",
2525
"html2canvas": "^1.4.1",
2626
"less": "^4.2.0",
27+
"marked": "^17.0.1",
2728
"naive-ui": "^2.34.4",
2829
"ndarray-pixels": "^3.1.0",
2930
"pinia": "^2.1.6",

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const checkMobile = () => {
2727
return market.globalParams.isMobile
2828
}
2929
const isL2d = () => {
30-
return market.route.name === 'visualiser'
30+
return market.route.name === 'visualiser' || market.route.name === 'story-gen'
3131
}
3232
const isChibiMobile = () => {
3333
return checkMobile() && market.route.name === 'chibi'

src/components/common/Credits/Table.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,9 @@ const props = defineProps({
5454
background: #87ceeb;
5555
color: black;
5656
}
57+
58+
.skyblue2 {
59+
background: #52f8f2;
60+
color: black;
61+
}
5762
</style>

src/components/common/Header/routes2Display.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ export const ROUTES: route2DisplayInterface[] = [
2424
path: 'gallery',
2525
text: 'Gallery',
2626
mobile: true
27+
},
28+
{
29+
path: 'story-gen',
30+
text: 'Story/Roleplaying Generator',
31+
mobile: true
2732
}
2833
// {
2934
// path: 'tierlistmaker',

0 commit comments

Comments
 (0)