the great renaming

This commit is contained in:
2026-02-26 15:33:24 +01:00
parent 4a4df0e799
commit 1ac2de123e
63 changed files with 11931 additions and 2674 deletions

View File

@@ -0,0 +1,27 @@
import { Chibi, ChibiId } from "../../types/chibi/chibi";
import { EChibiName } from "../../types/chibi/chibi-name";
import { EChibiStateName } from "../../types/chibi/chibi-state-name";
export const MAX_STAT_VALUE: number = 100000;
export const CHIBIS: Chibi[] = [
{
id: '978daae3-f3a8-4078-8cc8-2733fe4b406b' as ChibiId,
name: EChibiName.Aperio,
iconPath: '',
spritePath: '',
experience: 0,
unlocked: true,
happyness: MAX_STAT_VALUE,
health: MAX_STAT_VALUE,
hunger: MAX_STAT_VALUE,
boredom: MAX_STAT_VALUE,
energy: MAX_STAT_VALUE,
attentionSpan: 1000,
recoveryRate: 1000,
constitution: 1000,
power: 1000,
maintenanceCals: 0,
state: EChibiStateName.Sleeping
},
];