Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
[wip] Add deployment to Itch.io (requires PR)
Browse files Browse the repository at this point in the history
  • Loading branch information
rg-wood committed Sep 12, 2020
1 parent 5787ee0 commit a1ba867
Show file tree
Hide file tree
Showing 13 changed files with 1,248 additions and 83 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
node_modules
*.log
dist
24 changes: 21 additions & 3 deletions README.md
@@ -1,7 +1,25 @@
# Three Meet

**Three Meet** is a low-fantasy hack of the fifth edition of the world's most popular table-top roleplaying game (5E). It offers the following new features:
**Three Meet** is a low-fantasy hack of the fifth edition of the world's most popular table-top roleplaying game (5E).

## Consolidated Attributes
This project has the following requirements:

**Three Meet** consolidates confusing pair of ability scores (Strength/Constitution and Intelligence/Wisdom and Dexterity) for simplicity: **Cunning** (for rogues), **Strength** (for fighters) and **Wisdom** (for wizards and clerics), as well as a “wild card” attribute, Luck.
* [NPM](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
* [Butler](https://itch.io/docs/butler/installing.html)

## Run

Execute:

```sh
$ npm install
$ npm start
```

## Deploy

Execute:

```sh
$ npm run deploy
```
3 changes: 3 additions & 0 deletions book/README.md
@@ -0,0 +1,3 @@
# What is this?

**Three Meet** is a low-fantasy hack of the fifth edition of the world's most popular table-top roleplaying game (5E).
3 changes: 3 additions & 0 deletions book/_coverpage.md
@@ -0,0 +1,3 @@
# Three Meet

A low fantasy 5E hack by R.G. Wood
2 changes: 2 additions & 0 deletions book/_sidebar.md
@@ -0,0 +1,2 @@
* [What is this?](about.md)
* [Design Notes](design-notes.md)
3 changes: 3 additions & 0 deletions book/about.md
@@ -0,0 +1,3 @@
# What is this?

**Three Meet** is a low-fantasy hack of the fifth edition of the world's most popular table-top roleplaying game (5E).
7 changes: 7 additions & 0 deletions book/design-notes.md
@@ -0,0 +1,7 @@
# Design Notes

**Three Meet** offers the following new features:

## Consolidated Ability Scores

**Three Meet** consolidates confusing pair of ability scores (Strength/Constitution and Intelligence/Wisdom and Dexterity) for simplicity: **Cunning** (for rogues), **Stamina** (for fighters) and **Wisdom** (for wizards and clerics), as well as a “wild card” attribute, Luck.
8 changes: 6 additions & 2 deletions index.html → book/index.html
Expand Up @@ -13,9 +13,13 @@
<script>
window.$docsify = {
name: 'Three Meet',
repo: ''
coverpage: true,
loadSidebar: true,
subMaxLevel: 2,
search: 'auto'
}
</script>
<script src="node_modules/docsify/lib/docsify.min.js"></script>
<script src="node_modules/docsify/lib/docsify.js"></script>
<script src="node_modules/docsify/lib/plugins/search.min.js"></script>
</body>
</html>
147 changes: 147 additions & 0 deletions book/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions book/package.json
@@ -0,0 +1,6 @@
{
"dependencies": {
"docsify": "^4.11.6",
"docsify-pagination": "^2.6.0"
}
}

0 comments on commit a1ba867

Please sign in to comment.