mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-22 06:15:45 +00:00
add latest
This commit is contained in:
@@ -1,34 +1,51 @@
|
||||
import * as icons from './icons';
|
||||
import fullChainMultiplierIcon from 'assets/productionChainMultiplier.svg';
|
||||
import { InfoCardItem, InfoCardWorldItem } from './models';
|
||||
|
||||
export const worldItemData = [
|
||||
export const worldItemData: InfoCardWorldItem[] = [
|
||||
{
|
||||
id: 'furs',
|
||||
icon: icons.fursIcon,
|
||||
worldIcon: icons.oldWorldIcon,
|
||||
text: 'Furs use Old World'
|
||||
text: 'Furs use Old World',
|
||||
worldIcon: icons.oldWorldIcon
|
||||
},
|
||||
{
|
||||
id: 'clay',
|
||||
icon: icons.clayIcon,
|
||||
worldIcon: icons.oldWorldIcon,
|
||||
text: 'Clay uses Old World'
|
||||
text: 'Clay uses Old World',
|
||||
worldIcon: icons.oldWorldIcon
|
||||
},
|
||||
{
|
||||
id: 'gold',
|
||||
icon: icons.goldOreIcon,
|
||||
worldIcon: icons.newWorldIcon,
|
||||
text: 'Gold mines use New World'
|
||||
text: 'Gold mines use New World',
|
||||
worldIcon: icons.newWorldIcon
|
||||
}
|
||||
];
|
||||
|
||||
export const itemData = [
|
||||
export const itemDataBase: InfoCardItem[] = [
|
||||
{
|
||||
id: 'charcoal',
|
||||
icon: icons.charcoalKilnIcon,
|
||||
text: '2 Charcoal Kilns can be replaced with 1 Coal Mine'
|
||||
},
|
||||
{
|
||||
id: 'electricity',
|
||||
icon: icons.electricityIcon,
|
||||
text: 'Building has electricity'
|
||||
},
|
||||
{
|
||||
id: 'fullChain',
|
||||
icon: fullChainMultiplierIcon,
|
||||
text: 'Multiplier for a full chain. To scale chain to 100%:',
|
||||
additionalText:
|
||||
'multiply together number * efficiency * multiplier for each building in the chain.'
|
||||
}
|
||||
];
|
||||
|
||||
export const itemDataExpansions: InfoCardItem[] = [
|
||||
{
|
||||
id: 'fullChain',
|
||||
icon: fullChainMultiplierIcon,
|
||||
text: 'Multiplier for a full chain. To scale chain to 100%:',
|
||||
additionalText:
|
||||
|
||||
Reference in New Issue
Block a user