From 3a74e57c653af6abc472cbd03b6313722f07d366 Mon Sep 17 00:00:00 2001 From: Madison Scott-Clary Date: Fri, 12 May 2023 12:42:16 -0700 Subject: [PATCH] Site --- .gitmodules | 3 + .hugo_build.lock | 0 archetypes/default.md | 6 + config.toml | 20 ++ static/charsheet.svg | 689 ++++++++++++++++++++++++++++++++++++++++++ static/css/rpg.css | 50 +++ themes/maddybook | 1 + 7 files changed, 769 insertions(+) create mode 100644 .gitmodules create mode 100644 .hugo_build.lock create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 static/charsheet.svg create mode 100644 static/css/rpg.css create mode 160000 themes/maddybook diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..1c12789 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/maddybook"] + path = themes/maddybook + url = https://github.com/makyo/maddybook diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..1a758a1 --- /dev/null +++ b/config.toml @@ -0,0 +1,20 @@ +baseURL = 'https://rpg.post-self.ink/' +languageCode = 'en-us' +title = 'The Post-Self RPG' +theme = 'maddybook' +paginatePath = "" +disablePathToLower = true + +[permalinks] + post = '/:filename/' + +[params] + author = 'Madison Scott-Clary' + home = 'https://makyo.ink' + copyright = 2021 + customCSS = ['/css/rpg.css'] + subtitle = '' + subtitleLink = 'https://post-self.ink' + +[markup.goldmark.renderer] + unsafe = true diff --git a/static/charsheet.svg b/static/charsheet.svg new file mode 100644 index 0000000..c49a967 --- /dev/null +++ b/static/charsheet.svg @@ -0,0 +1,689 @@ + + + + + + + + + + + + + + + + + Post-Self + MC: + Player: + Character: + + + + Stats + Leverage + Calculating + Whim + Savvy + Canny + Aggressive + Moves + Character + Stat + + + + + + + + + + + Resources + Virtues + + + Remember to keepthe third one secret! + + When you take an action that risk failure or opposition, role with the relevant stat. On a 10+, you succeed at your goal, and the MC may reward you accordingly. On a 7-9, the MC will offer you a bargain or cost. If you agree, you succeed (and the MC will still reward you). Below that, you fail. + You may help or hinder both PCs and NPCs. Roll your Leverage stat for that person. On a 10+ for a PC, add or subtract +2 to their roll. On a 7-9, the MC will name +a cost to do so. For an NPC, rather than adding or subtracing 2, you choose whether they succeed or fail. + Playing the game + Reputation + Sanity + /20 + Ŕ + Dissolutionstrategy + TaskerTrackerDispersionista + + + Avery + Jace + Maddy + Love + Faith + 12k + 18 + +1 + +1 + +2 + -1 + 0 + Doru + +1 + Dear, Also... + 0 + + diff --git a/static/css/rpg.css b/static/css/rpg.css new file mode 100644 index 0000000..c66153b --- /dev/null +++ b/static/css/rpg.css @@ -0,0 +1,50 @@ +@import url('https://fonts.googleapis.com/css2?family=Gentium+Basic:ital,wght@0,400;0,700;1,400;1,700&family=Gotu&display=swap'); + +body { + font-family: "Gentium Basic", serif; +} + +h1, h2 { + font-family: "Gotu", sans-serif; +} + +blockquote { + overflow-wrap: break-word; +} + +ul { + list-style-type: disc; + margin-left: 2rem; +} + +ul + p { + margin-top: 1rem; +} + +dt { + font-size: 90%; + font-style: italic; + line-height: 1.2; + text-decoration: underline; + color: #555; +} + +dt:after { + content: ':' +} + +dd { + margin-left: 1rem; + margin-bottom: 1rem; +} + +figure { + margin: 1rem auto; + max-width: 90%; +} + +figcaption { + text-align: center; + opacity: 0.9; + font-size: 50%; +} diff --git a/themes/maddybook b/themes/maddybook new file mode 160000 index 0000000..d675998 --- /dev/null +++ b/themes/maddybook @@ -0,0 +1 @@ +Subproject commit d67599865d19f00353c3ffbeb513cf108b3d0442