@kitten-science/kitten-scientists
Version:
Add-on for the wonderful incremental browser game: https://kittensgame.com/web/
26 lines • 658 B
TypeScript
import type { Price, Resource, ResourceCraftable } from "./index.js";
export type ResourceInfo = {
calculatePerDay?: boolean;
calculatePerYear?: boolean;
color?: string;
craftable?: boolean;
description?: string;
maxValue: number;
name: Resource;
tag?: string;
title: string;
type: "common" | "uncommon";
unlocked: boolean;
value: number;
};
export type CraftableInfo = {
name: ResourceCraftable;
label: string;
description: string;
prices: Array<Price>;
ignoreBonuses?: boolean;
progressHandicap: number;
tier: number;
unlocked?: boolean;
};
//# sourceMappingURL=craft.d.ts.map