feat: implement daily character guessing game with local storage and hint system

- Added character selection and history management using local storage.
- Implemented hint system that unlocks based on the number of guesses.
- Enhanced UI with animations for hint unlocks and special win conditions.
- Created a server endpoint to record wins in the database.
This commit is contained in:
2026-03-01 03:59:16 +01:00
parent 6f7bae2307
commit b8b3f8bddc
23 changed files with 2988 additions and 620 deletions

View File

@@ -1,16 +1,29 @@
import { integer, sqliteTable, text, real } from 'drizzle-orm/sqlite-core';
// Define haki types
export type HakiType = 'Observation' | 'Armament' | 'Conqueror';
// Define devil fruit types
export type DevilFruitType = 'Paramecia' | 'Zoan' | 'Logia' | 'Unknown';
// Define the site config table schema
export const config = sqliteTable('config', {
key: text('key').primaryKey(),
value: text('value')
});
// Define the arc table schema
export const arc = sqliteTable('arc', {
id: text('id').primaryKey(),
name: text('name').notNull(),
startChapter: integer('startChapter').notNull(),
endChapter: integer('endChapter'),
url: text('url')
});
// Define the devil fruit table schema
export const devilFruit = sqliteTable('devilFruit', {
id: text('id').primaryKey(),
name: text('name').notNull().unique(),
type: text('type').$type<DevilFruitType>()
type: text('type').$type<DevilFruitType>(),
url: text('url')
});
// Define the character table schema
@@ -19,15 +32,66 @@ export const character = sqliteTable('character', {
name: text('name').notNull(),
gender: text('gender'),
age: integer('age'),
affiliations: text('affiliations'),
devilFruit: text('devilFruit').references(() => devilFruit.id),
haki: text('haki', { mode: 'json' }).$type<HakiType[]>(),
bounty: integer('bounty'),
// height in meters as a float (e.g. 1.75)
affiliations: text('affiliations', { mode: 'json' }).$type<string[]>(),
devilFruitId: text('devilFruitId').references(() => devilFruit.id),
hakiObservation: integer('hakiObservation', { mode: 'boolean' }).default(false),
hakiArmament: integer('hakiArmament', { mode: 'boolean' }).default(false),
hakiConqueror: integer('hakiConqueror', { mode: 'boolean' }).default(false),
bounty: integer('bounty').default(0),
height: real('height'),
origin: text('origin'),
firstAppearance: text('firstAppearance'),
pictureUrl: text('pictureUrl')
firstAppearance: integer('firstAppearance').notNull(),
pictureUrl: text('pictureUrl'),
epithets: text('epithets', { mode: 'json' }).$type<string[]>(),
status: text('status'),
arcId: text('arcId').references(() => arc.id),
url: text('url'),
isInDailyMode: integer('isInDailyMode', { mode: 'boolean' }).default(true)
});
// Define the character override table schema
export const characterOverride = sqliteTable('characterOverride', {
characterId: text('characterId').primaryKey().references(() => character.id),
name: text('name'),
gender: text('gender'),
age: integer('age'),
affiliations: text('affiliations', { mode: 'json' }).$type<string[]>(),
devilFruitId: text('devilFruitId').references(() => devilFruit.id),
hakiObservation: integer('hakiObservation', { mode: 'boolean' }),
hakiArmament: integer('hakiArmament', { mode: 'boolean' }),
hakiConqueror: integer('hakiConqueror', { mode: 'boolean' }),
bounty: integer('bounty'),
height: real('height'),
origin: text('origin'),
firstAppearance: integer('firstAppearance').notNull(),
pictureUrl: text('pictureUrl'),
epithets: text('epithets', { mode: 'json' }).$type<string[]>(),
status: text('status'),
arcId: text('arcId').references(() => arc.id),
url: text('url'),
notes: text('notes')
});
// Define the character scrape validation table schema
export const characterScrapeValidation = sqliteTable('characterScrapeValidation', {
id: text('id').primaryKey(),
name: text('name').notNull(),
gender: text('gender'),
age: integer('age'),
affiliations: text('affiliations', { mode: 'json' }).$type<string[]>(),
devilFruitId: text('devilFruitId').references(() => devilFruit.id),
hakiObservation: integer('hakiObservation', { mode: 'boolean' }).default(false),
hakiArmament: integer('hakiArmament', { mode: 'boolean' }).default(false),
hakiConqueror: integer('hakiConqueror', { mode: 'boolean' }).default(false),
bounty: integer('bounty'),
height: real('height'),
origin: text('origin'),
firstAppearance: integer('firstAppearance').notNull(),
pictureUrl: text('pictureUrl'),
epithets: text('epithets', { mode: 'json' }).$type<string[]>(),
status: text('status'),
arcId: text('arcId').references(() => arc.id),
url: text('url')
});
// Define the caracter history table schema
@@ -36,9 +100,11 @@ export const characterHistory = sqliteTable('characterHistory', {
.primaryKey()
.$defaultFn(() => crypto.randomUUID()),
characterId: text('characterId').references(() => character.id),
date: integer('date'),
date: text('date'),
won: integer('won').notNull().default(0),
createdAt: integer('createdAt').notNull().$default(() => Date.now()),
updatedAt: integer('updatedAt').notNull().$default(() => Date.now()),
});
export * from './auth.schema';