programming-game
Version:
The client for programming game, an mmorpg that you interact with entirely through code.
18 lines (16 loc) • 498 B
text/typescript
import { Constants } from "./types";
/**
* @deprecated
* Use heartbeat.constants instead as those will always contain the latest constant values.
*/
export const constants: Constants = {
maxPartySize: 5,
globalCooldown: 0.5, // in seconds
maxCarryWeight: 70_000, // 70 kg
encumbranceThreshold: 0.7, // you become encumbered, and move slower at 70% of maxCarryWeight
maxCalories: 3_000,
maxActiveQuests: 5,
spellbookSize: 15,
spellEquipMS: 5_000,
minRangedAttackRange: 2.5,
};