Make the sell price of grapes less than the cost of grape juice.

This commit is contained in:
Ryan Lanny Jenkins 2025-06-04 22:21:56 -05:00
parent 1a86c5854e
commit 28d2b10385

View file

@ -224,14 +224,14 @@ export const ITEMS: Record<string, Item> = {
name: 'Grape',
emoji: '🍇',
buyPrice: null,
sellPrice: 20,
sellPrice: 3,
},
grape_juice: {
id: 'grape_juice',
name: 'Grape Juice',
emoji: '🍇juice',
buyPrice: null,
sellPrice: 100,
sellPrice: 50,
},
wine: {
id: 'wine',