Skip to content

An incomplete attempt at adding Rice and Rice Seeds in useful places #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion data/item_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -10547,4 +10583,4 @@
"type": "fish",
"xp": 600
}
]
]
24 changes: 23 additions & 1 deletion data/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -6945,4 +6967,4 @@
"givable": true,
"rarity": "Very Rare"
}
]
]
1 change: 1 addition & 0 deletions lib/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ const extraSidebarItems = async state => {
{item: "Cotton"},
{item: "Sunflower"},
{item: "Beet"},
{item: "Rice"},
]
}
// Some special cases.
Expand Down
1 change: 1 addition & 0 deletions py/simulator/farm.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
Item["Cotton Seeds"]: Item["Cotton"],
Item["Sunflower Seeds"]: Item["Sunflower"],
Item["Beet Seeds"]: Item["Beet"],
Item["Rice Seeds"]: Item["Rice"],
}


Expand Down