Skip to content

Commit

Permalink
SI entities
Browse files Browse the repository at this point in the history
Fixes: #436
  • Loading branch information
zkat committed Jul 19, 2024
1 parent 388e936 commit cca8173
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/entity/specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -511,4 +511,55 @@ export const ENTITIES: Record<string, EntityDescriptor<EntitySpec>> = {
},
},
},
siSociety: {
label: "Faction: Society",
collectionId: "oracle_collection:sundered_isles/faction/society",
nameGen: (ent) => ent.name[0]?.simpleResult,
spec: {
chronicles: {
id: "oracle_rollable:sundered_isles/faction/society/chronicles",
},
overseers: {
id: "oracle_rollable:sundered_isles/faction/society/overseers",
},
touchstones: {
id: "oracle_rollable:sundered_isles/faction/society/touchstones",
},
},
},
siOrganization: {
label: "Faction: Organization",
collectionId: "oracle_collection:sundered_isles/faction/organization",
nameGen: (ent) => ent.name[0]?.simpleResult,
spec: {
type: {
id: "oracle_rollable:sundered_isles/faction/organization/type",
},
methods: {
id: "oracle_rollable:sundered_isles/faction/organization/methods",
},
secrets: {
id: "oracle_rollable:sundered_isles/faction/organization/secrets",
},
},
},
siEmpire: {
label: "Faction: Empire",
collectionId: "oracle_collection:sundered_isles/faction/empire",
nameGen: (ent) => ent.name[0]?.simpleResult,
spec: {
leadership: {
id: "oracle_rollable:sundered_isles/faction/empire/leadership",
},
tactics: {
id: "oracle_rollable:sundered_isles/faction/empire/tactics",
},
vulnerabilities: {
id: "oracle_rollable:sundered_isles/faction/empire/vulnerabilities",
},
},
},
siCursed: {
label: "Faction: The Cursed",
}

Check failure on line 564 in src/entity/specs.ts

View workflow job for this annotation

GitHub Actions / lint

Insert `,`
};

0 comments on commit cca8173

Please sign in to comment.