diff options
author | ubq323 <ubq323@ubq323.website> | 2023-01-25 23:42:43 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-01-25 23:42:43 +0000 |
commit | 7c18ce981f5f99f719f629bae371053daa3fc5b9 (patch) | |
tree | 3448f118f76b9cb03a1f5bd60a2a77df0f8dc54b /shop2 | |
parent | 41143c599858e2b735a5cc5d3deb1d0882e6b1ed (diff) |
prices shop2
Diffstat (limited to 'shop2')
-rw-r--r-- | shop2/items.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shop2/items.lua b/shop2/items.lua index 0221372..87ed8e1 100644 --- a/shop2/items.lua +++ b/shop2/items.lua @@ -2,20 +2,20 @@ local items = {} local function i(adr,itname,hname,price,colour,check) table.insert(items,{itname=itname,hname=hname,price=price,adr=adr,colour=colour or colors.white,check=check}) end -i("dmn","minecraft:diamond","Diamond",1,colors.cyan) +i("dmn","minecraft:diamond","Diamond",0.25,colors.cyan) i("blz","minecraft:blaze_rod","Blaze Rod",0.5,colors.orange) --i("ely","minecraft:elytra","Elytra",100,colors.purple) -i("mnd","minecraft:enchanted_book","Mending Book",10,colors.green,function(idetail) +i("mnd","minecraft:enchanted_book","Mending Book",4,colors.green,function(idetail) for _,ench in ipairs(idetail.enchantments or {}) do if ench.name == "minecraft:mending" then return true end end return false end) --i("nth","minecraft:nether_star","Nether Star",200,colors.white) -i("zbh","minecraft:zombie_head","Zombie Head",20,colors.lime) +i("zbh","minecraft:zombie_head","Zombie Head",15,colors.lime) i("glw","minecraft:glowstone_dust","Glowstone Dust",0.2,colors.yellow) -i("kin","plethora:module_kinetic","Kinetic Augment",12,colors.red) +-- i("kin","plethora:module_kinetic","Kinetic Augment",12,colors.red) i("sad","minecraft:saddle","Saddle",1,colors.orange) -i("nam","minecraft:name_tag","Name Tag",1,colors.white) +-- i("nam","minecraft:name_tag","Name Tag",1,colors.white) return items |