mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-21 22:05:46 +00:00
27 lines
488 B
TypeScript
27 lines
488 B
TypeScript
export interface TieredProductionChain {
|
|
colBreak: boolean;
|
|
tierName: string;
|
|
productionChains?: ProductionChain[];
|
|
}
|
|
|
|
export interface ProductionChain {
|
|
productionChain: string;
|
|
chainMultiplier?: string;
|
|
mermaidDefinition: string;
|
|
}
|
|
|
|
export interface InfoCardItem {
|
|
id: string;
|
|
icon: string;
|
|
text: string;
|
|
additionalText?: string;
|
|
}
|
|
|
|
export interface InfoCardItemWorldIcon {
|
|
id: string;
|
|
icon: string;
|
|
textPre: string;
|
|
textPost: string;
|
|
worldIcon: string;
|
|
}
|