Skip to content

Commit

Permalink
Added Sundered Isles Settlement Entity (#387)
Browse files Browse the repository at this point in the history
Co-authored-by: Kerk Wilson <[email protected]>
  • Loading branch information
bloodynine and kewilsonfacts authored Jul 8, 2024
1 parent f456726 commit 98dc9c4
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions src/entity/specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,4 +399,61 @@ export const ENTITIES: Record<string, EntityDescriptor<EntitySpec>> = {
},
},
},
siSettlement: {
label: "Settlement",
collectionId: "oracle_collection:sundered_isles/settlement",
nameGen: (ent) => `${ent.name[0].simpleResult}`,
spec: {
region: {
id: "oracle_rollable:sundered_isles_supp/core/region",
firstLook: true,
definesAttribute: {
order: 1,
mechanism: AttributeMechanism.Snakecase,
},
},
location: {
id: "oracle_rollable:sundered_isles/settlement/location",
firstLook: true,
definesAttribute: {
order: 2,
mechanism: AttributeMechanism.Snakecase,
},
},
size: {
name: "Size",
id: "oracle_rollable:sundered_isles/settlement/size/{{region}}",
firstLook: true,
},
name: {
firstLook: true,
id: "oracle_rollable:sundered_isles/settlement/name",
},
aesthetics: {
id: "oracle_rollable:sundered_isles/settlement/aesthetics",
firstLook: true,
},
first_look: {
id: "oracle_rollable:sundered_isles/settlement/first_look",
firstLook: true,
},
controlling_faction: {
name: "Controlling faction",
id: "oracle_rollable:sundered_isles/settlement/identity/controlling_faction/{{region}}",
},
disposition: {
id: "oracle_rollable:sundered_isles/settlement/identity/disposition",
},
authority: {
id: "oracle_rollable:sundered_isles/settlement/identity/authority",
},
focus: {
name: "Focus",
id: "oracle_rollable:sundered_isles/settlement/identity/focus/{{location}}",
},
details: {
id: "oracle_rollable:sundered_isles/settlement/details",
},
},
},
};

0 comments on commit 98dc9c4

Please sign in to comment.