Stardew Valley
0 of 0

File information

Last updated

Original upload

Created by

Hikari014

Uploaded by

Hikari014

Virus scan

Safe to use

20 comments

  1. Hikari014
    Hikari014
    • supporter
    • 2 kudos
    Sticky
    UPDATE: I've remade this as a separate mod. Feel free to try it!

    Hey People! It's been a while.

    As STF is deprecated and EPU is not fully compatible with the 1.6 update yet, I might have just remade this mod again (I've heard it's much easier now, thanks to the 1.6 update). Unfortunately, I couldn't for the time being, haven't had the time. I've been looking to spare my time in a few days, but for now, this mod won't work (maybe installing EPU's optional file would help, if it doesn't, then just bear with me for a moment).

    Cheers!
  2. vecchete
    vecchete
    • premium
    • 0 kudos
    I was so happy to find this mod, but it doesn't work in 1.6 
    pleeeeeease, update this mod (>")> 
  3. emma080
    emma080
    • member
    • 0 kudos
    please update this for 1.6 i loveeeee this mod :((
  4. DZK312
    DZK312
    • supporter
    • 7 kudos
    will this be updated to 1.6 to be able to be used without the shoptile framework and epu mods? i saw there was new data stuff for modded shops in 1.6. or are there better unmodded ways to get clay now in 1.6 (havent gotten into it yet myself)?
  5. TheBoli
    TheBoli
    • member
    • 0 kudos
    I love you.
  6. BintArabiyah
    BintArabiyah
    • member
    • 0 kudos
    it says "- Purchasable Clay 1.0.1 because it requires mods which aren't installed (Cherry.ShopTileFramework)." for me what should I do
    1. BintArabiyah
      BintArabiyah
      • member
      • 0 kudos
      nvm- sorry I got it
  7. graxia9255
    graxia9255
    • member
    • 1 kudos
    THank you so much for this mod! 
  8. fairygenesis
    fairygenesis
    • member
    • 0 kudos
    Can I add two items?
    I would like to add "Clay" and "Hardwood". Thank you for making an example

    I don't know English. Sorry for using the translator.
    1. Hikari014
      Hikari014
      • supporter
      • 2 kudos
      Yes you can. Just open my shops.json in any text editor, delete all of the text, and paste this (don't forget to save it though)
      {
          "VanillaShops": [
              {
                  "ShopName": "RobinShop",
                  "AddStockAboveVanilla": "true",
                  "ItemStocks": [
                      {
                          "ItemType": "Object",
                          "ItemNames": [
                              "Clay"
                          ],
                          "StockPrice": "30"
                      },
                      {
                          "ItemType": "Object",
                          "ItemNames": [
                              "Hardwood"
                          ],
                          "StockPrice": "20"
                      }
                  ]
              }
          ]
      }
      Sorry for the late reply, haven't open Nexus for a while.
  9. Spikefan74
    Spikefan74
    • premium
    • 4 kudos
    Thanks!
    1. Spikefan74
      Spikefan74
      • premium
      • 4 kudos
      Thank you! I used yours as a guide and it worked! I uploaded my first mod!  :)
  10. Cerubois
    Cerubois
    • member
    • 0 kudos
    Thank you for this! I usually play on SVE's Immersive Farm 2, and I really like my brick paths. It's always been a daunting task to collect all the clay I need, lol.
  11. Spikefan74
    Spikefan74
    • premium
    • 4 kudos
    Is there a way to make purchasable tea leaves? I tried making it, but it doesn't show up.
    1. Hikari014
      Hikari014
      • supporter
      • 2 kudos
      You can edit my shop.json and add it in ItemStocks, here's an example
      {
          "VanillaShops": [
              {
                  "ShopName": "RobinShop",
                  "AddStockAboveVanilla": "true",
                  "ItemStocks": [
                      {
                          "ItemType": "Object",
                          "ItemNames": [
                              "Clay"
                          ],
                          "StockPrice": "30"
                      }
                  ]
              },
              {
                  "ShopName": "PierreShop",
                  "AddStockAboveVanilla": "true",
                  "ItemStocks": [
                      {
                          "ItemType": "Object",
                          "ItemNames": [
                              "Tea Leaves"
                          ],
                          "StockPrice": "50"
                      }
                  ]
              }
          ]
      }
      Keep in mind that I'm not directly adding it in the first ItemStocks, because it won't make sense Robin would sell tea leaves, so I add it to Pierre's instead.