mirror of
https://github.com/dtomlinson91/anno-production-chain-renderer.git
synced 2025-12-22 06:15:45 +00:00
update info card text
This commit is contained in:
@@ -63,7 +63,7 @@ import { initialiseMermaid } from 'composables/mermaid';
|
|||||||
initialiseMermaid();
|
initialiseMermaid();
|
||||||
const expansionInfoItem = ref({
|
const expansionInfoItem = ref({
|
||||||
icon: icons.landOfLionsIcon,
|
icon: icons.landOfLionsIcon,
|
||||||
text: 'Contains all chains from Base Game through to Season 2 (Land of Lions).'
|
text: 'All chains from Base Game through Season 2 (Land of Lions).'
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ import { initialiseMermaid } from 'composables/mermaid';
|
|||||||
initialiseMermaid();
|
initialiseMermaid();
|
||||||
const expansionInfoItem = ref({
|
const expansionInfoItem = ref({
|
||||||
icon: icons.empireOfTheSkiesIcon,
|
icon: icons.empireOfTheSkiesIcon,
|
||||||
text: 'Contains all chains from Season 3 through to Season 4 (Empire of the Skies).'
|
text: 'All chains from Season 3 through Season 4 (Empire of the Skies).'
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -49,14 +49,20 @@ export const worldItemDataBase: InfoCardWorldItem[] = [
|
|||||||
id: 'clay',
|
id: 'clay',
|
||||||
icon: icons.clayIcon,
|
icon: icons.clayIcon,
|
||||||
textPre: 'Enbesa',
|
textPre: 'Enbesa',
|
||||||
textPost:
|
textPost: ' production chains use Clay Collectors.',
|
||||||
' production chains use Clay Collectors. All other chains use Clay Mines.',
|
|
||||||
worldIcon: icons.enbesaIcon
|
worldIcon: icons.enbesaIcon
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
// S2 to S4
|
// S2 to S4
|
||||||
export const itemDataExpansions: InfoCardItem[] = [...commonItemData];
|
export const itemDataExpansions: InfoCardItem[] = [
|
||||||
|
{
|
||||||
|
id: 'airship',
|
||||||
|
icon: icons.airshipIcon,
|
||||||
|
text: 'Airship drop chain ratios are the same for Old World & New World.'
|
||||||
|
},
|
||||||
|
...commonItemData
|
||||||
|
];
|
||||||
|
|
||||||
export const worldItemDataExpansions: InfoCardWorldItem[] = [
|
export const worldItemDataExpansions: InfoCardWorldItem[] = [
|
||||||
...commonWorldItemData,
|
...commonWorldItemData,
|
||||||
@@ -66,13 +72,5 @@ export const worldItemDataExpansions: InfoCardWorldItem[] = [
|
|||||||
textPre: 'Hacienda chains use New World',
|
textPre: 'Hacienda chains use New World',
|
||||||
textPost: 'buildings.',
|
textPost: 'buildings.',
|
||||||
worldIcon: icons.newWorldIcon
|
worldIcon: icons.newWorldIcon
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'airship',
|
|
||||||
icon: icons.airshipIcon,
|
|
||||||
textPre:
|
|
||||||
'Ratios for airship drop chains are the same when built in the New World',
|
|
||||||
textPost: '.',
|
|
||||||
worldIcon: icons.newWorldIcon
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user