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', name: 'Grape',
emoji: '🍇', emoji: '🍇',
buyPrice: null, buyPrice: null,
sellPrice: 20, sellPrice: 3,
}, },
grape_juice: { grape_juice: {
id: 'grape_juice', id: 'grape_juice',
name: 'Grape Juice', name: 'Grape Juice',
emoji: '🍇juice', emoji: '🍇juice',
buyPrice: null, buyPrice: null,
sellPrice: 100, sellPrice: 50,
}, },
wine: { wine: {
id: 'wine', id: 'wine',