Skip to content

Commit

Permalink
Island oracles first stab
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Nov 8, 2024
1 parent 2f0b015 commit 193405c
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/module/vue/sf-locationsheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,49 @@ const oracles = computed((): OracleSpec[][] => {
]
]
case 'island':
return [
[
{
title: 'Island size',
dsid: `oracle_rollable:sundered_isles/island/landscape/size`,
fl: true
},
{
title: 'Terrain',
dsid: `oracle_rollable:sundered_isles/island/landscape/terrain`,
fl: true
},
{
title: 'Vitality',
dsid: `oracle_rollable:sundered_isles/island/landscape/vitality/${rc}`,
fl: true
}
],
[
{
title: 'Habitation',
dsid: `oracle_rollable:sundered_isles/island/visible_habitation/${rc}`
},
{
title: 'Nearby Islands',
dsid: `oracle_rollable:sundered_isles/island/nearby_islands/${rc}`
}
],
[
{
title: 'Coastline Aspect',
qty: '1-2',
dsid: `oracle_rollable:sundered_isles/island/coastline_aspects`
},
{
title: 'Offshore Observations 💀',
qty: '1-2',
dsid: `oracle_rollable:sundered_isles/island/offshore_observations`
}
]
]
default:
return []
}
Expand Down

0 comments on commit 193405c

Please sign in to comment.