diff --git a/data/item_api.json b/data/item_api.json index e91cb35..f9fccfd 100644 --- a/data/item_api.json +++ b/data/item_api.json @@ -6875,6 +6875,24 @@ "type": "seeds", "xp": 90720 }, + { + "base_yield_minutes": 14400, + "buy_price": 200000, + "can_buy": 1, + "can_sell": 0, + "craftable": 0, + "crafting_level": 1, + "description": "Harvest every 240 hours", + "id": "631", + "img": "/img/items/riceplant.png", + "mailable": 0, + "masterable": 1, + "min_mailable_level": 0, + "name": "Rice Seeds", + "sell_price": 0, + "type": "seeds", + "xp": 100000 + }, { "base_yield_minutes": 0, "buy_price": 0, @@ -6911,6 +6929,24 @@ "type": "crop", "xp": 90720 }, + { + "base_yield_minutes": 14400, + "buy_price": 0, + "can_buy": 0, + "can_sell": 1, + "craftable": 0, + "crafting_level": 1, + "description": "Sell for 250,000 silver each", + "id": "630", + "img": "/img/items/rice.png", + "mailable": 0, + "masterable": 1, + "min_mailable_level": 0, + "name": "Rice", + "sell_price": 250000, + "type": "crop", + "xp": 100000 + }, { "base_yield_minutes": 0, "buy_price": 0, @@ -10547,4 +10583,4 @@ "type": "fish", "xp": 600 } -] \ No newline at end of file +] diff --git a/data/items.json b/data/items.json index cb141bf..bc11bab 100644 --- a/data/items.json +++ b/data/items.json @@ -4980,6 +4980,28 @@ "rarity": "Common", "mastery": true }, + { + "name": "Rice", + "id": "630", + "image": "/img/items/rice.png", + "sellPrice": 250000, + "xp": 100000, + "rarity": "Common", + "growthTime": 864000, + "mastery": true + }, + { + "id": "631", + "name": "Rice Seeds", + "image": "/img/items/riceplant.png", + "xp": 100000, + "buyPrice": 200000, + "growthTime": 864000, + "type": "seed", + "possibleDrops": [ + "Rice" + ] + }, { "name": "Ring of Renthisj", "id": "365", @@ -6945,4 +6967,4 @@ "givable": true, "rarity": "Very Rare" } -] \ No newline at end of file +] diff --git a/lib/sidebar.js b/lib/sidebar.js index 244f6f9..64fdfa4 100644 --- a/lib/sidebar.js +++ b/lib/sidebar.js @@ -42,6 +42,7 @@ const extraSidebarItems = async state => { {item: "Cotton"}, {item: "Sunflower"}, {item: "Beet"}, + {item: "Rice"}, ] } // Some special cases. diff --git a/py/simulator/farm.py b/py/simulator/farm.py index 36925ac..70afa77 100644 --- a/py/simulator/farm.py +++ b/py/simulator/farm.py @@ -36,6 +36,7 @@ Item["Cotton Seeds"]: Item["Cotton"], Item["Sunflower Seeds"]: Item["Sunflower"], Item["Beet Seeds"]: Item["Beet"], + Item["Rice Seeds"]: Item["Rice"], }