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();
|
||||
const expansionInfoItem = ref({
|
||||
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>
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ import { initialiseMermaid } from 'composables/mermaid';
|
||||
initialiseMermaid();
|
||||
const expansionInfoItem = ref({
|
||||
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>
|
||||
|
||||
|
||||
@@ -49,14 +49,20 @@ export const worldItemDataBase: InfoCardWorldItem[] = [
|
||||
id: 'clay',
|
||||
icon: icons.clayIcon,
|
||||
textPre: 'Enbesa',
|
||||
textPost:
|
||||
' production chains use Clay Collectors. All other chains use Clay Mines.',
|
||||
textPost: ' production chains use Clay Collectors.',
|
||||
worldIcon: icons.enbesaIcon
|
||||
}
|
||||
];
|
||||
|
||||
// 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[] = [
|
||||
...commonWorldItemData,
|
||||
@@ -66,13 +72,5 @@ export const worldItemDataExpansions: InfoCardWorldItem[] = [
|
||||
textPre: 'Hacienda chains use New World',
|
||||
textPost: 'buildings.',
|
||||
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