style: format slay-the-spire-like index with double quotes
This commit is contained in:
parent
b264cea305
commit
39ac37b5f2
|
|
@ -14,19 +14,31 @@ export type {
|
|||
EncounterData,
|
||||
IntentData,
|
||||
ItemData,
|
||||
} from './system/types';
|
||||
} from "./system/types";
|
||||
|
||||
// Deck
|
||||
export type { GameCard, GameCardMeta, PlayerDeck, DeckRegions } from './system/deck';
|
||||
export type {
|
||||
GameCard,
|
||||
GameCardMeta,
|
||||
PlayerDeck,
|
||||
DeckRegions,
|
||||
} from "./system/deck";
|
||||
export {
|
||||
generateDeckFromInventory,
|
||||
createCard,
|
||||
createPlayerDeck,
|
||||
generateCardId,
|
||||
} from './system/deck';
|
||||
} from "./system/deck";
|
||||
|
||||
// Grid Inventory
|
||||
export type { CellCoordinate, CellKey, GridInventory, InventoryItem, MutationResult, PlacementResult } from './system/grid-inventory';
|
||||
export type {
|
||||
CellCoordinate,
|
||||
CellKey,
|
||||
GridInventory,
|
||||
InventoryItem,
|
||||
MutationResult,
|
||||
PlacementResult,
|
||||
} from "./system/grid-inventory";
|
||||
export {
|
||||
createGridInventory,
|
||||
flipItem,
|
||||
|
|
@ -38,12 +50,23 @@ export {
|
|||
removeItem as removeItemFromGrid,
|
||||
rotateItem,
|
||||
validatePlacement,
|
||||
} from './system/grid-inventory';
|
||||
} from "./system/grid-inventory";
|
||||
|
||||
// Map
|
||||
export { MapNodeType, MapLayerType } from './system/map';
|
||||
export type { MapNode, MapLayer, PointCrawlMap, MapGenerationConfig } from './system/map';
|
||||
export { generatePointCrawlMap, getNode, getChildren, getParents, findAllPaths } from './system/map';
|
||||
export { MapNodeType, MapLayerType } from "./system/map";
|
||||
export type {
|
||||
MapNode,
|
||||
MapLayer,
|
||||
PointCrawlMap,
|
||||
MapGenerationConfig,
|
||||
} from "./system/map";
|
||||
export {
|
||||
generatePointCrawlMap,
|
||||
getNode,
|
||||
getChildren,
|
||||
getParents,
|
||||
findAllPaths,
|
||||
} from "./system/map";
|
||||
|
||||
// Progress / Run
|
||||
export type {
|
||||
|
|
@ -54,7 +77,7 @@ export type {
|
|||
PlayerState,
|
||||
RunMutationResult,
|
||||
RunState,
|
||||
} from './system/progress';
|
||||
} from "./system/progress";
|
||||
export {
|
||||
assignEncounterToNode,
|
||||
assignEncountersFromPool,
|
||||
|
|
@ -82,7 +105,7 @@ export {
|
|||
getUnresolvedChildren,
|
||||
isAtStartNode,
|
||||
isAtEndNode,
|
||||
} from './system/progress';
|
||||
} from "./system/progress";
|
||||
|
||||
// Combat
|
||||
export type {
|
||||
|
|
@ -95,7 +118,7 @@ export type {
|
|||
LootEntry,
|
||||
CombatState,
|
||||
CombatGameContext,
|
||||
} from './system/combat/types';
|
||||
} from "./system/combat/types";
|
||||
export {
|
||||
addEffect,
|
||||
addEntityEffect,
|
||||
|
|
@ -110,12 +133,15 @@ export {
|
|||
getCombatEntity,
|
||||
canPlayCard,
|
||||
payCardCost,
|
||||
} from './system/combat/effects';
|
||||
export { prompts as combatPrompts, promptMainAction } from './system/combat/prompts';
|
||||
export { createStartWith, type Triggers } from './system/combat/triggers';
|
||||
} from "./system/combat/effects";
|
||||
export {
|
||||
prompts as combatPrompts,
|
||||
promptMainAction,
|
||||
} from "./system/combat/prompts";
|
||||
export { createStartWith, type Triggers } from "./system/combat/triggers";
|
||||
|
||||
// Utils
|
||||
export { parseShapeString, type ParsedShape } from './system/utils/parse-shape';
|
||||
export { parseShapeString, type ParsedShape } from "./system/utils/parse-shape";
|
||||
export {
|
||||
IDENTITY_TRANSFORM,
|
||||
type Transform2D,
|
||||
|
|
@ -129,7 +155,8 @@ export {
|
|||
rotateTransform,
|
||||
flipXTransform,
|
||||
flipYTransform,
|
||||
} from './system/utils/shape-collision';
|
||||
} from "./system/utils/shape-collision";
|
||||
|
||||
// Data
|
||||
export { default as data } from './data';
|
||||
export type { ContentModule } from "./data";
|
||||
export { default as data } from "./data";
|
||||
|
|
|
|||
Loading…
Reference in New Issue