27 lines
810 B
TypeScript
27 lines
810 B
TypeScript
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
|
|
},
|
|
]; |