update info card text

This commit is contained in:
2022-10-08 20:20:54 +01:00
parent 12973a1a9d
commit 4143b03351
3 changed files with 11 additions and 13 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -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
}
];