-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ac-schmitt/feat/rules-update
2025 Update
- Loading branch information
Showing
35 changed files
with
1,618 additions
and
458 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* fira-sans-regular - latin */ | ||
@font-face { | ||
font-display: swap; | ||
font-family: 'Fira Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('../fonts/fira-sans-v10-latin-regular.eot'); /* IE9 Compat Modes */ | ||
src: local('Fira Sans Regular'), local('FiraSans-Regular'), | ||
url('../fonts/fira-sans-v10-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ | ||
url('../fonts/fira-sans-v10-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ | ||
url('../fonts/fira-sans-v10-latin-regular.woff') format('woff'), /* Modern Browsers */ | ||
url('../fonts/fira-sans-v10-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ | ||
url('../fonts/fira-sans-v10-latin-regular.svg#FiraSans') format('svg'); /* Legacy iOS */ | ||
} | ||
/* roboto-mono-regular - latin */ | ||
@font-face { | ||
font-display: swap; | ||
font-family: 'Roboto Mono'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('../fonts/roboto-mono-v12-latin-regular.eot'); /* IE9 Compat Modes */ | ||
src: url('../fonts/roboto-mono-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ | ||
url('../fonts/roboto-mono-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ | ||
url('../fonts/roboto-mono-v12-latin-regular.woff') format('woff'), /* Modern Browsers */ | ||
url('../fonts/roboto-mono-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ | ||
url('../fonts/roboto-mono-v12-latin-regular.svg#RobotoMono') format('svg'); /* Legacy iOS */ | ||
} | ||
/* ibm-plex-mono-500italic - latin */ | ||
@font-face { | ||
font-display: swap; | ||
font-family: 'IBM Plex Mono'; | ||
font-style: italic; | ||
font-weight: 500; | ||
src: url('../fonts/ibm-plex-mono-v6-latin-500italic.eot'); /* IE9 Compat Modes */ | ||
src: local('IBM Plex Mono Medium Italic'), local('IBMPlexMono-MediumItalic'), | ||
url('../fonts/ibm-plex-mono-v6-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ | ||
url('../fonts/ibm-plex-mono-v6-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ | ||
url('../fonts/ibm-plex-mono-v6-latin-500italic.woff') format('woff'), /* Modern Browsers */ | ||
url('../fonts/ibm-plex-mono-v6-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ | ||
url('../fonts/ibm-plex-mono-v6-latin-500italic.svg#IBMPlexMono') format('svg'); /* Legacy iOS */ | ||
} | ||
|
||
// Default Fonts | ||
//$fonts: "Trebuchet MS", Verdana, "Verdana Ref", "Segoe UI", Candara, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif; | ||
//$code-fonts: Consolas, "Andale Mono WT", "Andale Mono", Menlo, Monaco, "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, "YaHei Consolas Hybrid", monospace, "Segoe UI Emoji", "PingFang SC", "Microsoft YaHei"; | ||
|
||
$fonts: "Fira Sans", "Trebuchet MS", Verdana, "Verdana Ref", "Segoe UI", Candara, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif; | ||
$code-fonts: "Roboto Mono", Consolas, "Andale Mono WT", "Andale Mono", Menlo, Monaco, "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, "YaHei Consolas Hybrid", monospace, "Segoe UI Emoji", "PingFang SC", "Microsoft YaHei"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ enableGitInfo = true | |
pygmentsCodefences = true | ||
pygmentsUseClasses = true | ||
# hasCJKLanguage = true # If Chinese/Japanese/Korean is your main content language, enable this to make wordCount works right. | ||
rssLimit = 10 # Maximum number of items in the RSS feed. | ||
rssLimit = -1 # Maximum number of items in the RSS feed. | ||
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License." # This message is only used by the RSS template. | ||
enableEmoji = true # Shorthand emojis in content files - https://gohugo.io/functions/emojify/ | ||
# googleAnalytics = "UA-123-45" | ||
|
@@ -60,11 +60,8 @@ staticDir = ["static", "static-quickref"] | |
|
||
# Social Icons | ||
# Check https://github.com/Track3/hermit#social-icons for more info. | ||
[[params.social]] | ||
name = "twitter" | ||
url = "https://twitter.com/fohleireih" | ||
|
||
[[params.social]] | ||
[[params.social]] | ||
name = "email" | ||
url = "mailto:[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
title: "Regeln des Hauses" | ||
date: 2024-10-30T00:00:00+01:00 | ||
draft: true | ||
--- | ||
|
||
## Inspiration | ||
|
||
Die Basic Rules zu [Heroic Inspiration](https://www.dndbeyond.com/sources/dnd/free-rules/rules-glossary#HeroicInspiration) werden so wie aufgeschrieben genutzt. Die Hausregel sagt etwas, wie man (auch) eine Inspiration erhalten kann. | ||
|
||
| English | Deutsch | | ||
| ------- | ------- | | ||
| **Gaining Heroic Inspiration.** Whenever a player character rolls a 1 for a D20 Test, that character gains [Heroic Inspiration](https://www.dndbeyond.com/sources/dnd/free-rules/rules-glossary#HeroicInspiration).| **Inspiration erhalten.** Immer wenn ein Spielercharakter bei einem D20-Test eine 1 würfelt, erhält dieser Charakter Inspiration. | | ||
|
||
___ | ||
|
||
## Spells | Zauber | ||
|
||
Die "Homebrew Version" von jedem angepassten Zauber könnt ihr über eure Charakterbögen in meinen Kampagnen auf D&D Beyond finden. | ||
|
||
| Spell | Homebrew Version | Anmerkung | | ||
| ----- | ---------------- | --------- | | ||
| Aid | [Fohleireih's Aid](https://www.dndbeyond.com/spells/1889781-fohleireihs-aid) | Keine Änderung nur Klärung: nur "überschüssige" Hit Points gehen am Ende der Wirkungsdauer verloren. | ||
| Alter Self | [Fohleireih's Alter Self](https://www.dndbeyond.com/spells/1889771-fohleireihs-alter-self) | Erlaubt sich in eine kleine oder mittelgroße Kreatur zu verwandeln, wenn man selbst entweder klein oder mittelgroß ist. | ||
| Conjure Minor Elementals | [Fohleireih's Conjure Minor Elementals](https://www.dndbeyond.com/spells/2742112-fohleireihs-conjure-minor-elementals) | Upcasting reduziert auf 1d8 jedes zweite Level über dem 4. Level analog zu Spirit Shroud. | ||
| Conjure Woodland Beings | [Fohleireih's Conjure Woodland Beings](https://www.dndbeyond.com/spells/2769848-fohleireihs-conjure-woodland-beings) | Klarstellung: Das Bewegen der Emanation um den Trigger für den Schaden auszulösen funktioniert nur im Turn des Casters. Kein "Grapple den Caster" um rumreichen während des Turns des Grapplers. | ||
|
||
___ | ||
|
||
## Fading Spirits | ||
|
||
_Inspiriert von [Matthew Mercers](https://critrole.com/members/matthew-mercer/) gleichnamigen Homebrew-Rules [The Fading Spirit - Alternative Ressurrection Rules (Screenshot)](https://i.imgur.com/bjUbbaB.png), die er seinerzeit auf [Xitter](https://x.com/matthewmercer/status/824054305355247616) veröffentlicht hat._ | ||
|
||
[Revivify](https://www.dndbeyond.com/spells/2618956-revivify), [Raise Dead](https://www.dndbeyond.com/spells/2618922-raise-dead), [Reincarnate](https://www.dndbeyond.com/spells/2618941-reincarnate) oder [Resurrection](https://www.dndbeyond.com/spells/2618953-resurrection) funktionieren nicht automatisch. Der Caster muss einen Skill Check mit der Spellcasting Ability machen. Der DC ist 10 plus 1 für jeden vergangenen Fehlschlag oder erfolgreichen Wiedererweckung des Characters. | ||
|
||
Dem Caster darf mit einer [Help Action](https://www.dndbeyond.com/sources/dnd/free-rules/rules-glossary#HelpAction) geholfen werden, z.B. mittels Gebeten (Religion) oder einer Herzmassage (Medicine, vielleicht eher passend bei Revivify). Bei einem Fehlschlag bleibt das Ziel tot, aber man kann es gleich wieder probieren. Der DC steigt für das Ziel jeweils um 1 für jeden Fehlschlag an. | ||
|
||
[True Resurrection](https://www.dndbeyond.com/spells/2619199-true-resurrection) funktioniert wie in den Basic Rules beschrieben. | ||
|
||
--- | ||
|
||
## 2024 Change Log | ||
|
||
- Offenbar braucht es eine Regel für Conjure Minor Elementals. | ||
- Klarstellung zu Conjure Woodland Beings vermutlich wie RAI. Grundsätzlich gilt das auch für Spirit Guardians, aber bei letzterem gibt es noch den Nachsatz mit den Rettungswürfen, daher ist das RAI da aus meiner Sicht klarer und es braucht keinen Home-Brew-Spell. | ||
- Magic Initiate wurde überarbeitet, daher benötigt es auch keine eigene Spell Scroll Usage Regel mehr. | ||
- Keine Home-Brew-Regel mehr zum Ausgeben von [Heroic Inspiration](https://www.dndbeyond.com/sources/dnd/free-rules/rules-glossary#HeroicInspiration), das folgt den 2024er Regeln. | ||
- Kein eigener Simulacrum Spell mehr, die Randbedingungen wurden klargestellt. | ||
- Fading Spirit kommt nicht bei True Resurrection zur Anwendung. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.