Skip to content

Commit

Permalink
feat: tension engine
Browse files Browse the repository at this point in the history
  • Loading branch information
RPDeshaies committed Dec 7, 2023
1 parent 9eb1e00 commit faedc88
Show file tree
Hide file tree
Showing 8 changed files with 584 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@ export function ProjectPage(props: {
fontSize: "1.125rem",
lineHeight: "1.75rem",
},
"& a": {
textDecoration: "underline",
},

[`& [id='${scrollTo}']`]: {
borderBottom: `4px solid`,
Expand Down Expand Up @@ -431,8 +434,8 @@ export function ProjectPage(props: {
props.doc.previousPage && props.doc.nextPage
? "space-between"
: props.doc.previousPage
? "flex-start"
: "flex-end"
? "flex-start"
: "flex-end"
}
>
{props.doc.previousPage && (
Expand Down
Binary file modified bun.lockb
Binary file not shown.
7 changes: 6 additions & 1 deletion public/catalog/creators/gamenomicon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default function getData(): ICreatorData {
name: "Gamenomicon",
links: {
Website: "https://www.gamenomicon.com/",
twitter: "https://twitter.com/the_gamenomicon",
"Itch.io": "https://gamenomicon.itch.io/",
DriveThruRPG: "https://www.drivethrurpg.com/browse/pub/11735/Gamenomicon",
Threads: "https://www.threads.net/@gamenomicon",
Bluesky: "https://bsky.app/profile/gamenomicon.bsky.social",
Twitter: "https://twitter.com/the_gamenomicon",
Facebook: "https://www.facebook.com/Gamenomicon",
},
};
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
553 changes: 553 additions & 0 deletions public/catalog/creators/gamenomicon/tension-engine/index.md

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions public/catalog/creators/gamenomicon/tension-engine/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { IProjectData } from "public/catalog/loader";

export default function getData(): IProjectData {
return {
name: "Tension Engine",
description:
"Toolkit to wind your own games with tension, creating cinematic pacing of the environment and exciting breaks.",
license: "CC BY 4.0",
links: {
"itch.io": "https://gamenomicon.itch.io/tension-engine-srd",
},
headingFont: "Oswald",
headingUppercase: true,
textFont: "Quattrocento",
css: `
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');
`,
};
}

0 comments on commit faedc88

Please sign in to comment.