An incremental game in which you start a cult and must grow it into the dominant world religion.
This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Rudis Muiznieks 14e1b646a9 moved all math.floor(value) logic to baseclass 2021-09-12 13:58:57 -05:00
public moved all math.floor(value) logic to baseclass 2021-09-12 13:58:57 -05:00
src moved all math.floor(value) logic to baseclass 2021-09-12 13:58:57 -05:00
.editorconfig removed node_modules 2021-09-05 06:31:51 -05:00
.eslintrc.json added a couple eslint rules back 2021-09-06 12:42:25 -05:00
.gitignore added deploy script and updated readme 2021-09-06 09:51:23 -05:00
.prettierrc.json replaced eslint formatting rules with prettier 2021-09-06 12:02:38 -05:00
README.md updated readme 2021-09-06 10:07:48 -05:00
TODO.md added reminder to change value to a getter 2021-09-11 22:47:06 -05:00
package-lock.json replaced eslint formatting rules with prettier 2021-09-06 12:02:38 -05:00
package.json replaced eslint formatting rules with prettier 2021-09-06 12:02:38 -05:00
tsconfig.json fixes for linter 2021-09-05 14:45:37 -05:00

README.md

irreligio.us

An incremental game in which you start a cult and must grow it into the dominant world religion.

Current State

Playable, but lightyears from complete and not very pretty or fun yet.

Play Online

https://irreligio.us/

The online version may be behind what's in the repository.

Build and Run Locally

npm install
npm run build
firefox public/index.html

Development Philosophy

  • Keep it client-side—it runs in a web browser, even offline.
  • Keep it lean—no third-party libraries of any kind.
  • Keep it clean with strict typescript rules and linting.
  • Compile to a single file—no module loaders or other fancy schmancy nonsense of that sort.