Skip to content

Commit

Permalink
Merge pull request #14 from propfeds/dev
Browse files Browse the repository at this point in the history
v0.1.4
  • Loading branch information
propfeds authored Jul 8, 2023
2 parents 33b703c + bb069a7 commit 1a2a81c
Show file tree
Hide file tree
Showing 5 changed files with 657 additions and 431 deletions.
5 changes: 5 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ do nothing. Do you feel like it could be more interesting?

## Compost bin

- [x] Chapter about floods
- Happens when maximum statements
- Condition: tau > 0, time < 10

- [ ] Simple solitary flower
- Tulip?
- Buttercup
Expand Down Expand Up @@ -86,6 +90,7 @@ do nothing. Do you feel like it could be more interesting?
- [x] Rose campion as first bush plant
- [ ] Maximum statements
- [ ] Death? Propagation?
- [ ] Shrub form?
- [x] Income per evolution instead of night
- [x] Double growth cost
- [ ] Flower turns into fruit faster
Expand Down
6 changes: 4 additions & 2 deletions design_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,11 @@ between tau not feeling bloated and pub multipliers not too small)

- **The Lindenmaker (Mutations)**: let players mutate a plant for one level
- Adopts the new plant's ruleset
- Example colony: 24 of Hopleek (35) x Dog rose
- Cutting leaves or harvesting fruits will have the same notation:
- Example notation: 24 of Hopleek (35) x Dog rose
- Cutting leaves or harvesting fruits will have the same notation?
- 24 of Hopleek (20, 30, 35) x Dog rose (48, 59, etc.)
- Example short notation: 24 of Hopleek x C34, stage 35
(just mutated calendula at stage 34)
- Milestones:
- Marigold (calendula) generates gold (p) passively
Expand Down
10 changes: 9 additions & 1 deletion src/api/Theory.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,15 @@ export class Theory {
/**
* Completely resets the theory. Only available within its own custom theory.
*/
reset(): any;
reset(): void;
/**
* Pauses the theory.
*/
pause(): void;
/**
* Resumes the theory from a paused state.
*/
resume(): void;
}
/**
* Instance of the current custom theory. Only available within a custom theory.
Expand Down
Loading

0 comments on commit 1a2a81c

Please sign in to comment.