diff options
| author | Sofviic <sofviic1993@gmail.com> | 2024-06-17 15:17:31 +0300 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:20:08 +0200 | 
| commit | 780acc6e06e4cf5746a50ab9f88fe3fff7a966db (patch) | |
| tree | ceefddabf92a1287604c2662db1c03293a0409c9 | |
| parent | 30b65d1d5e7d0f742a430beda2c54c620a76ffce (diff) | |
| download | hurrycurry-780acc6e06e4cf5746a50ab9f88fe3fff7a966db.tar hurrycurry-780acc6e06e4cf5746a50ab9f88fe3fff7a966db.tar.bz2 hurrycurry-780acc6e06e4cf5746a50ab9f88fe3fff7a966db.tar.zst | |
added water item
| -rw-r--r-- | data/items.yaml | 9 | ||||
| -rw-r--r-- | data/recipes.yaml | 12 | ||||
| -rw-r--r-- | data/tiles.yaml | 4 | 
3 files changed, 22 insertions, 3 deletions
| diff --git a/data/items.yaml b/data/items.yaml index 936f498a..d1958937 100644 --- a/data/items.yaml +++ b/data/items.yaml @@ -47,9 +47,12 @@  - glass:    - traits:      - container -    - glass -  - contains: -    - liquid +    - cup +    - empty-cup +- water: +  - traits: +    - container +    - cup  - plate:    - traits:      - container diff --git a/data/recipes.yaml b/data/recipes.yaml index 19a28301..c35bee30 100644 --- a/data/recipes.yaml +++ b/data/recipes.yaml @@ -61,6 +61,18 @@    action: instant    duration: 0 +# cups +- tile: watercooler +  inputs: [glass] +  outputs: [water] +  action: wait +  duration: 2 +- tile: sink +  inputs: [water] +  outputs: [glass] +  action: instant +  duration: 0 +  # cleaning  - tile: sink    inputs: [dirty-glass] diff --git a/data/tiles.yaml b/data/tiles.yaml index 2e1f757d..078a6f29 100644 --- a/data/tiles.yaml +++ b/data/tiles.yaml @@ -1,5 +1,8 @@  # kitchen
  - counter
 +- watercooler:
 +  - accepts:
 +    - empty-cup
  - oven:
    - accepts:
      - bakeable
 @@ -20,6 +23,7 @@  - sink:
    - accepts:
      - dirty
 +    - cup
  # customers
  - table
 | 
