Skip to content

Commit

Permalink
Last minute addition of the forgotten rum bottle + rum shotglass grap…
Browse files Browse the repository at this point in the history
…hics
  • Loading branch information
brightrim committed Oct 12, 2024
1 parent 227b115 commit e7213fe
Show file tree
Hide file tree
Showing 16 changed files with 44 additions and 29 deletions.
1 change: 0 additions & 1 deletion content/specialeggs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,6 @@ local itemList = {
1050 ,--Schattenranseur shadow ranseur
835 ,--schwarz-graues Kleid black grey dress
790 ,--Leere Saftflasche empty juice bottle
518 ,--leere bauchige Flasche empty round body bottle
2560 ,--Apfelholz applewood
1062 ,--Silbererz silver ore
1059 ,--Würfelbecher dice cup
Expand Down
1 change: 0 additions & 1 deletion content/treasure.lua
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ treasureContents[2] = {
{254,1}, --raw diamond
{326,1}, --steel boots
{463,1}, --quill
{518,1}, --empty rum bottle
{1057,1}, --robust jackboots
{1416,1}, --simple horned helmet
{1429,1}, --reinforced steel cap
Expand Down
2 changes: 1 addition & 1 deletion craft/final/brewing.lua
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ catId = brewing:addCategory("Hard Liquors", "Stark alkoholische Getr

-- bottle of rum
product = brewing:addProduct(catId, 517, 1)
product:addIngredient(518, 1) -- empty rum bottle
product:addIngredient(1317, 1) -- empty liquor bottle
product:addIngredient(778, 3) -- sugarcane
product:addIngredient(52, 1) -- bucket of water
product:addRemnant(51, 1) -- bucket
Expand Down
2 changes: 1 addition & 1 deletion craft/final/cooking.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ product:addIngredient(3709, 3) -- smoked chicken
product:addIngredient(290, 2) -- cabbage
product:addIngredient(2493, 3) -- carrots
product:addIngredient(517, 1) -- bottle of rum
product:addRemnant(518, 1) -- empty rum bottle
product:addRemnant(Item.emptyLiquorBottle, 1)

product = cooking:addProduct(catId, Item.rosefishDish, 1)
product:addIngredient(Item.woodenPlate, 1)
Expand Down
4 changes: 0 additions & 4 deletions craft/final/glassblowing.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@ product:addIngredient(41, 1) -- glass ingot
product = glassblowing:addProduct(catId, Item.fruitJuiceBottle, 1)
product:addIngredient(41, 1) -- glass ingot

-- empty rum bottle
product = glassblowing:addProduct(catId, 518, 1)
product:addIngredient(41, 1) -- glass ingot

-- empty tea bottle
product = glassblowing:addProduct(catId, Item.teaBottle, 1)
product:addIngredient(41, 2) -- glass ingot
Expand Down
15 changes: 15 additions & 0 deletions item/bottles.lua
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,21 @@ local bottles = {
{empty = Item.shotGlass, filled = Item.shotGlassWithOrangeSchnapps, amount = 1}
},
},
{
full = {Item.bottleOfRum},
half = {Item.bottleOfRumHalf},
quarter = {Item.bottleOfRumQuarter},
empty = {Item.emptyLiquorBottle},
vessels = {
{empty = Item.clayShotGlass, filled = Item.clayShotGlassWithRum, amount = 1},
{empty = Item.ceramicShotGlass, filled = Item.ceramicShotGlassWithRum, amount = 1},
{empty = Item.ironShotGlass, filled = Item.ironShotGlassWithRum, amount = 1},
{empty = Item.copperShotGlass, filled = Item.copperShotGlassWithRum, amount = 1},
{empty = Item.silverShotGlass, filled = Item.silverShotGlassWithRum, amount = 1},
{empty = Item.goldShotGlass, filled = Item.goldShotGlassWithRum, amount = 1},
{empty = Item.shotGlass, filled = Item.shotGlassWithRum, amount = 1}
},
},
{
full = {Item.bottleOfStoneFace},
half = {Item.bottleOfStoneFaceHalf},
Expand Down
11 changes: 9 additions & 2 deletions item/drinks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ M.drinkList[Item.clayShotGlassWithElvenWine] = {800, Item.clayShotGlass}
M.drinkList[Item.clayShotGlassWithMulledWine] = {800, Item.clayShotGlass}
M.drinkList[Item.clayShotGlassWithOrangeSchnapps] = {800, Item.clayShotGlass}
M.drinkList[Item.clayShotGlassWithStoneFace] = {800, Item.clayShotGlass}
M.drinkList[Item.clayShotGlassWithRum] = {800, Item.clayShotGlass}

M.drinkList[Item.ceramicShotGlassWithAbsinthe] = {800, Item.ceramicShotGlass}
M.drinkList[Item.ceramicShotGlassWithBearSlayer] = {800, Item.ceramicShotGlass}
Expand All @@ -134,6 +135,7 @@ M.drinkList[Item.ceramicShotGlassWithElvenWine] = {800, Item.ceramicShotGlass}
M.drinkList[Item.ceramicShotGlassWithMulledWine] = {800, Item.ceramicShotGlass}
M.drinkList[Item.ceramicShotGlassWithOrangeSchnapps] = {800, Item.ceramicShotGlass}
M.drinkList[Item.ceramicShotGlassWithStoneFace] = {800, Item.ceramicShotGlass}
M.drinkList[Item.ceramicShotGlassWithRum] = {800, Item.ceramicShotGlass}

M.drinkList[Item.ironShotGlassWithAbsinthe] = {800, Item.ironShotGlass}
M.drinkList[Item.ironShotGlassWithBearSlayer] = {800, Item.ironShotGlass}
Expand All @@ -143,6 +145,7 @@ M.drinkList[Item.ironShotGlassWithElvenWine] = {800, Item.ironShotGlass}
M.drinkList[Item.ironShotGlassWithMulledWine] = {800, Item.ironShotGlass}
M.drinkList[Item.ironShotGlassWithOrangeSchnapps] = {800, Item.ironShotGlass}
M.drinkList[Item.ironShotGlassWithStoneFace] = {800, Item.ironShotGlass}
M.drinkList[Item.ironShotGlassWithRum] = {800, Item.ironShotGlass}

M.drinkList[Item.copperShotGlassWithAbsinthe] = {800, Item.copperShotGlass}
M.drinkList[Item.copperShotGlassWithBearSlayer] = {800, Item.copperShotGlass}
Expand All @@ -152,6 +155,8 @@ M.drinkList[Item.copperShotGlassWithElvenWine] = {800, Item.copperShotGlass}
M.drinkList[Item.copperShotGlassWithMulledWine] = {800, Item.copperShotGlass}
M.drinkList[Item.copperShotGlassWithOrangeSchnapps] = {800, Item.copperShotGlass}
M.drinkList[Item.copperShotGlassWithStoneFace] = {800, Item.copperShotGlass}
M.drinkList[Item.copperShotGlassWithRum] = {800, Item.copperShotGlass}


M.drinkList[Item.silverShotGlassWithAbsinthe] = {800, Item.silverShotGlass}
M.drinkList[Item.silverShotGlassWithBearSlayer] = {800, Item.silverShotGlass}
Expand All @@ -161,6 +166,8 @@ M.drinkList[Item.silverShotGlassWithElvenWine] = {800, Item.silverShotGlass}
M.drinkList[Item.silverShotGlassWithMulledWine] = {800, Item.silverShotGlass}
M.drinkList[Item.silverShotGlassWithOrangeSchnapps] = {800, Item.silverShotGlass}
M.drinkList[Item.silverShotGlassWithStoneFace] = {800, Item.silverShotGlass}
M.drinkList[Item.silverShotGlassWithRum] = {800, Item.silverShotGlass}


M.drinkList[Item.goldShotGlassWithAbsinthe] = {800, Item.goldShotGlass}
M.drinkList[Item.goldShotGlassWithBearSlayer] = {800, Item.goldShotGlass}
Expand All @@ -170,6 +177,7 @@ M.drinkList[Item.goldShotGlassWithElvenWine] = {800, Item.goldShotGlass}
M.drinkList[Item.goldShotGlassWithMulledWine] = {800, Item.goldShotGlass}
M.drinkList[Item.goldShotGlassWithOrangeSchnapps] = {800, Item.goldShotGlass}
M.drinkList[Item.goldShotGlassWithStoneFace] = {800, Item.goldShotGlass}
M.drinkList[Item.goldShotGlassWithRum] = {800, Item.goldShotGlass}

M.drinkList[Item.shotGlassWithAbsinthe] = {800, Item.shotGlass}
M.drinkList[Item.shotGlassWithBearSlayer] = {800, Item.shotGlass}
Expand All @@ -179,6 +187,7 @@ M.drinkList[Item.shotGlassWithElvenWine] = {800, Item.shotGlass}
M.drinkList[Item.shotGlassWithMulledWine] = {800, Item.shotGlass}
M.drinkList[Item.shotGlassWithOrangeSchnapps] = {800, Item.shotGlass}
M.drinkList[Item.shotGlassWithStoneFace] = {800, Item.shotGlass}
M.drinkList[Item.shotGlassWithRum] = {800, Item.shotGlass}

M.drinkList[Item.clayTeaCupDruid] = {1000, Item.clayTeaCup}
M.drinkList[Item.clayTeaCupFirNeedle] = {1000, Item.clayTeaCup}
Expand Down Expand Up @@ -215,8 +224,6 @@ M.drinkList[Item.glassTeaCupFirNeedle] = {1000, Item.glassTeaCup}
M.drinkList[Item.glassTeaCupGreen] = {1000, Item.glassTeaCup}
M.drinkList[Item.glassTeaCupVirginWeed] = {1000, Item.glassTeaCup}

M.drinkList[Item.bottleOfRum] = {1000, Item.emptyRumBottle}


function M.UseItem(user, SourceItem)

Expand Down
1 change: 0 additions & 1 deletion item/id_3894_mystical_cracker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,6 @@ local itemList = {
1050 ,--Schattenranseur shadow ranseur
835 ,--schwarz-graues Kleid black grey dress
790 ,--Leere Saftflasche empty juice bottle
518 ,--leere bauchige Flasche empty round body bottle
2560 ,--Apfelholz applewood
1062 ,--Silbererz silver ore
1059 ,--Würfelbecher dice cup
Expand Down
2 changes: 1 addition & 1 deletion item/id_463_quill.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ local function CheckIfContainerPresent(User)
return nil
end

local emptyBottleList = {518, 1317, 790, 164, 2498}
local emptyBottleList = {1317, 790, 164, 2498}

local function CheckIfEmptyBottlePresent(User)

Expand Down
4 changes: 2 additions & 2 deletions npc/borgate_northoff.npc
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ itemShoes = 53
-- You want a ceramic cup for your wine? Well too bad, Borgate can only offer you a golden goblet as he is all out.
-- Thank your lucky stars that he at least bothered to clean it before pouring your drink... or did he?

sellItems = 1909, 4460, 4425, 4435, 4418, 4455, 4465, 4448, 4476, 4572, 4568, 4584, 4600, 2058, 1860, 4344, 4352, 4411
sellItems = 1909, 4460, 4425, 4435, 4418, 4455, 4812, 4465, 4448, 4476, 4572, 4568, 4584, 4600, 2058, 1860, 4344, 4352, 4411
-- glass mug with beer, iron shotglass with absinthe, clay shotglass of bear slayer, copper shotglass of berry booze, ceramic shotglass with cherry schnapps
-- gold shotglass with elven wine, iron shotglass with mulled wine, shotglass with orange schnapps, silver shotglass with stoneface
-- gold shotglass with elven wine, shotglass with rum, iron shotglass with mulled wine, shotglass with orange schnapps, silver shotglass with stoneface
-- clay teacup with druids tea, ceramic teacup with firneedle tea, silver teacup with green tea, glass teacup with virgins weed tea
-- glass with water, silver goblet with wine, clay cup with mead, iron goblet with cider, ceramic cup with milk

Expand Down
4 changes: 2 additions & 2 deletions npc/fronita_emery.npc
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ itemShoes = 369
-- Here are all items the NPCs is able to trade. They will be displayed inside
-- the merchant dialog.

sellItems = 24, 312, 2710, 311, 2140, 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 518, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
sellItems = 24, 312, 2710, 311, 2140, 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
-- shovel, wooden shovel, mould, glass blow pipe, tongs
-- pot ash, clay, coarse sand, quartz sand, large empty bottle, berry juice bottle, vegetable juice bottle, fruit juice bottle, tea bottle, empty rum bottle, empty oil bottle, empty liquor bottle, empty ink bottle, empty potion, glass ingot, glass plate, glass bowl, shotglass, glass tea cup, glass serving jug, glass teapot, glass, wine glass, glass mug, empty salve jar, bricks, clay plate, clay bowl, clay shotglass, clay teacup, clay teapot, clay serving jug, ceramic plate, ceramic bowl, ceramic cup, ceramic shotglass, ceramic teacup, ceramic teapot, ceramic serving jug, clay mug, clay cup, mug with lid, empty alchemy bomb, vase, empty honeyjar
buySecondaryItems = 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 518, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
buySecondaryItems = 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
-- pot ash, clay, coarse sand, quartz sand, large empty bottle, berry juice bottle, vegetable juice bottle, fruit juice bottle, tea bottle, empty rum bottle, empty oil bottle, empty liquor bottle, empty ink bottle, empty potion, glass ingot, glass plate, glass bowl, shotglass, glass tea cup, glass serving jug, glass teapot, glass, wine glass, glass mug, empty salve jar, bricks, clay plate, clay bowl, clay shotglass, clay teacup, clay teapot, clay serving jug, ceramic plate, ceramic bowl, ceramic cup, ceramic shotglass, ceramic teacup, ceramic teapot, ceramic serving jug, clay mug, clay cup, mug with lid, empty alchemy bomb, vase, empty honeyjar

tradeNotEnoughMoneyMsg "Oh, ich f�rchte Ihr k�nnt Euch das nicht leisten.", "Oh, I fear, you can not afford that."
Expand Down
4 changes: 2 additions & 2 deletions npc/hagar_wernson.npc
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ itemShoes = 369
-- Of course, it has to be profitable, so all drinkware he offers is made of locally sourced metals.
-- With the caveat of beer mugs, that he has to begrudingly import from Cadomyr's potters and glassblowers.

sellItems = 4351, 1909, 4355, 4354, 4353, 4352, 4363, 4592, 4593, 4594, 4595, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 1841, 1842, 1843, 1844, 4359, 4577, 4578, 4579, 4580, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 1855, 1860, 1853, 1859, 4361, 4582, 4583, 4584, 4585, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 1854, 1857, 1856, 1861, 4360, 4587, 4588, 4589, 4590, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458
buySecondaryItems = 4351, 1909, 4355, 4354, 4353, 4352, 4363, 4592, 4593, 4594, 4595, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 1841, 1842, 1843, 1844, 4359, 4577, 4578, 4579, 4580, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 1855, 1860, 1853, 1859, 4361, 4582, 4583, 4584, 4585, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 1854, 1857, 1856, 1861, 4360, 4587, 4588, 4589, 4590, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458
sellItems = 4351, 1909, 4355, 4354, 4353, 4352, 4363, 4592, 4593, 4594, 4595, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 1841, 1842, 1843, 1844, 4359, 4577, 4578, 4579, 4580, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 1855, 1860, 1853, 1859, 4361, 4582, 4583, 4584, 4585, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 1854, 1857, 1856, 1861, 4360, 4587, 4588, 4589, 4590, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458, 4808, 4809, 4810, 4811
buySecondaryItems = 4351, 1909, 4355, 4354, 4353, 4352, 4363, 4592, 4593, 4594, 4595, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 1841, 1842, 1843, 1844, 4359, 4577, 4578, 4579, 4580, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 1855, 1860, 1853, 1859, 4361, 4582, 4583, 4584, 4585, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 1854, 1857, 1856, 1861, 4360, 4587, 4588, 4589, 4590, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458, 4808, 4809, 4810, 4811
-- For both the above: clay beer mug with beer, glass beer mug with beer, iron then copper then silver then gold of the following: goblet with(water, wine, mead, cider, milk), teacup with (druids tea, firneedle tea, green tea, virgins weed tea), shotglass with(absinthe, bear slayer, berry booze, cherry schnapps, elven wine, mulled wine, orange schnapps, stone face)

tradeNotEnoughMoneyMsg "Bei mir kann man nicht anschreiben lassen!", "You can't chalk up the drinks!"
Expand Down
4 changes: 2 additions & 2 deletions npc/jonathan_cyrus.npc
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ itemShoes = 770
-- Here are all items the NPCs is able to trade. They will be displayed inside
-- the merchant dialog.

sellItems = 311, 2140, 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 518, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
sellItems = 311, 2140, 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
-- glass blow pipe, tongs
-- pot ash, clay, coarse sand, quartz sand, large empty bottle, berry juice bottle, vegetable juice bottle, fruit juice bottle, tea bottle, empty rum bottle, empty oil bottle, empty liquor bottle, empty ink bottle, empty potion, glass ingot, glass plate, glass bowl, shotglass, glass tea cup, glass serving jug, glass teapot, glass, wine glass, glass mug, empty salve jar, bricks, clay plate, clay bowl, clay shotglass, clay teacup, clay teapot, clay serving jug, ceramic plate, ceramic bowl, ceramic cup, ceramic shotglass, ceramic teacup, ceramic teapot, ceramic serving jug, clay mug, clay cup, mug with lid, empty alchemy bomb, vase, empty honeyjar
buyPrimaryItems = 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 518, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
buyPrimaryItems = 314, 26, 726, 316, 2498, 790, 4634, 4626, 4639, 390, 1317, 1117, 164, 41, 4798, 4791, 4441, 4596, 4525, 4553, 2055, 2457, 1908, 3642, 2588, 4796, 4789, 4423, 4571, 4548, 4485, 4795, 4788, 4407, 4414, 4566, 4547, 4477, 2183, 2184, 310, 1223, 315, 4803
-- pot ash, clay, coarse sand, quartz sand, large empty bottle, berry juice bottle, vegetable juice bottle, fruit juice bottle, tea bottle, empty rum bottle, empty oil bottle, empty liquor bottle, empty ink bottle, empty potion, glass ingot, glass plate, glass bowl, shotglass, glass tea cup, glass serving jug, glass teapot, glass, wine glass, glass mug, empty salve jar, bricks, clay plate, clay bowl, clay shotglass, clay teacup, clay teapot, clay serving jug, ceramic plate, ceramic bowl, ceramic cup, ceramic shotglass, ceramic teacup, ceramic teapot, ceramic serving jug, clay mug, clay cup, mug with lid, empty alchemy bomb, vase, empty honeyjar


Expand Down
6 changes: 3 additions & 3 deletions npc/rose_deepdelver.npc
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ itemShoes = 369
-- In Runewick, its people are learned enough to realise that no matter the drinking vessel, its all the same filth they are drinking anyways.
-- Thus, Rose only offers the cheaper drinking vessels. Locally produced, of course. (wood and clay aka carpentry and pottery)

sellItems = 2186, 2187, 2188, 2189, 4362, 4345, 4346, 4344, 4347, 4357, 4572, 4573, 4574, 4575, 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4351
buySecondaryItems = 2186, 2187, 2188, 2189, 4362, 4345, 4346, 4344, 4347, 4357, 4572, 4573, 4574, 4575, 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4351
-- For both of the above: wooden and clay cups with water, wine, mead, cider, milk, followed by clay tea cups with druids, firneedle, green and virginsweed tea, followed by clay shotglasses with absinthe, bear slayer, berry booze, cherry schnapps, elven wine, mulled wine, orange schnapps and stone face, and lastly a clay mug of beer
sellItems = 2186, 2187, 2188, 2189, 4362, 4345, 4346, 4344, 4347, 4357, 4572, 4573, 4574, 4575, 4424, 4813, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4351
buySecondaryItems = 2186, 2187, 2188, 2189, 4362, 4345, 4346, 4344, 4347, 4357, 4572, 4573, 4574, 4575, 4424, 4813, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4351
-- For both of the above: wooden and clay cups with water, wine, mead, cider, milk, followed by clay tea cups with druids, firneedle, green and virginsweed tea, followed by clay shotglasses with absinthe, rum, bear slayer, berry booze, cherry schnapps, elven wine, mulled wine, orange schnapps and stone face, and lastly a clay mug of beer

tradeNotEnoughMoneyMsg "�berpr�fe bitte deine Geldb�rse.", "Please check your purse."
tradeFinishedMsg "Bis bald!", "See you soon."
Expand Down
Loading

0 comments on commit e7213fe

Please sign in to comment.