Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * Main constants export for Black Trigram Korean martial arts system */ // Fix: Remove duplicate exports and ensure proper imports export { CYBERPUNK_COLORS, KOREAN_COLORS } from "./colors"; export { FONT_FAMILY, FONT_SIZES, FONT_WEIGHTS, KOREAN_FONT_FAMILY, KOREAN_FONT_WEIGHTS, KOREAN_TEXT_SIZES, PIXI_TEXT_STYLES, } from "./typography"; export { HEALTH_COLORS, UI_CONSTANTS } from "./ui"; // Fix: Provide default export export { KOREAN_COLORS as default } from "./colors"; // Fix: Add missing KOREAN_TYPOGRAPHY export export { KOREAN_TYPOGRAPHY } from "./typography"; // Fix: Add missing PIXI_FONT_WEIGHTS export export { PIXI_FONT_WEIGHTS } from "./typography"; // Fix: Add missing ANIMATION_DURATIONS export export { ANIMATION_DURATIONS } from "./animations"; export const ARCHETYPE_TECHNIQUE_BONUSES: Record< string, Record<string, number> > = { // Define bonuses for each archetype }; export const MAX_TRANSITION_COST_KI = 50; export const MAX_TRANSITION_COST_STAMINA = 30; export const MAX_TRANSITION_TIME_MILLISECONDS = 1000; |