Compare commits
No commits in common. "3cf2e0ed475f255c6280007b215f89f294ec5df4" and "0db6dd26a1719c393725fc1d418462fa746c3692" have entirely different histories.
3cf2e0ed47
...
0db6dd26a1
|
@ -2,10 +2,3 @@
|
|||
title: You Can Drive Out Nature With A Pitchfork But It Always Comes Roaring Back Again
|
||||
...
|
||||
|
||||
## Introduction
|
||||
|
||||
This is a game about exploring an enchanted forest that is struggling to wake from a shared dream.
|
||||
|
||||
It is written to be played solo, but you can probably run it with a group if you want.
|
||||
|
||||
It does not include a game system. You'll need to provide your own way to resolve conflict and stuff.
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
## Introduction
|
||||
|
||||
This is a game about exploring an enchanted forest that is struggling to wake from a shared dream.
|
||||
|
||||
It is written to be played solo, but you can probably run it with a group if you want.
|
||||
|
||||
It does not include a game system. The beasts all have *temperment* via a Mien table, but don't have any stats. Many scenarios are ambiguous and open-ended. You'll need to provide your own way to resolve conflict.
|
||||
|
||||
It is a game chiefly of exploration and discovery. There are no real objectives. Other than to deliver some blankets to __witch in the coniferous forest.
|
||||
|
||||
Okay, off you go.
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
## Locations
|
||||
|
||||
Each location below contains a description, and a list of encounters. Each time you enter a location, roll 1d6. Count that many items down the list (skipping any crossed out items) and resolve that encounter. Then cross it off the list. Each individual location on the map can have a different encounter every time you return to it. For extra items / additional encounters, see the [Encounters] section.
|
||||
Each location below contains a description, and a list of encounters. Each time you enter a location, roll 1d6. Count that many items down the list (skipping any crossed out items) and resolve that encounter. Then cross it off the list. Each individual location on the map can have a different encounter every time you return to it. For trivial items or additional atmosphere, see [Trinkets and Atmosphere].
|
||||
|
||||
Permenant features: When you encounter a *permenant feature*, add that feature to the map with a marking of your choice, and then check it off the list of encounters. The feature will always be there when you return to that location on the map. Each location can only have one permenant feature.
|
||||
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
### Monocerus
|
||||
|
||||
A large beast with a single, long, spiraling horn growing from the center of its forehead. It resembles a horse, with a goat's hindquarters and beard.
|
||||
|
||||
|
||||
---
|
||||
Mien
|
||||
---
|
||||
Noble
|
||||
|
||||
Shy
|
||||
|
||||
Weeping
|
||||
|
||||
Wounded
|
||||
|
||||
Frightened
|
||||
|
||||
Fierce
|
||||
---
|
|
@ -1,14 +1,14 @@
|
|||
|
||||
## Encounters
|
||||
## Trinkets and Atmosphere
|
||||
|
||||
d66 other things you might find or encounter in the forest
|
||||
d66 minor things you might find or encounter in the forest. These items should evoke the feeling of exploring a forest as a small child and finding useless treasure like a cool rock or a great stick. With that in mind, feel free to add your own items of small wonder.
|
||||
|
||||
11. a human skull
|
||||
12. a beautiful feather
|
||||
13. a perfectly shaped leaf
|
||||
14. a cute bug
|
||||
15. a long branch perfect for a walking stick
|
||||
16. a red brick.
|
||||
16. a red brick
|
||||
|
||||
<p></p>
|
||||
|
||||
|
|
|
@ -80,12 +80,23 @@ blockquote:before {
|
|||
|
||||
label {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
input[type="checkbox"] {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
left: -2rem;
|
||||
}
|
||||
input[type="checkbox"]:checked + span {
|
||||
text-decoration: line-through;
|
||||
font-style: italic;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
li {
|
||||
list-style-type: none;
|
||||
}
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue