forked from ChimneySwift/fancy_vend
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathawards.lua
More file actions
52 lines (51 loc) · 1.55 KB
/
awards.lua
File metadata and controls
52 lines (51 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
awards.register_award("fancy_vend:getting_fancy", {
title = "Getting Fancy",
description = "Craft a fancy vendor.",
trigger = {
type = "craft",
item = fancy_vend.rop_vendor,
target = 1,
},
icon = "player_vend_front.png^awards_level1.png",
})
awards.register_award("fancy_vend:wizard", {
title = "You're a Wizard",
description = "Craft a copy tool.",
trigger = {
type = "craft",
item = "fancy_vend:copy_tool",
target = 1,
},
icon = "copier.png",
})
awards.register_award("fancy_vend:trader", {
title = "Trader",
description = "Configure a depositor.",
icon = "player_depo_front.png",
})
awards.register_award("fancy_vend:seller", {
title = "Seller",
description = "Configure a vendor.",
icon = "player_vend_front.png^awards_level2.png",
})
awards.register_award("fancy_vend:shop_keeper", {
title = "Shop Keeper",
description = "Configure 10 vendors or depositors.",
icon = "player_vend_front.png^awards_level3.png",
})
awards.register_award("fancy_vend:merchant", {
title = "Merchant",
description = "Configure 25 vendors or depositors.",
icon = "player_vend_front.png^awards_level4.png",
})
awards.register_award("fancy_vend:super_merchant", {
title = "Super Merchant",
description = "Configure 100 vendors or depositors. How do you even have this much stuff to sell?",
icon = "player_vend_front.png^awards_level5.png",
})
awards.register_award("fancy_vend:god_merchant", {
title = "God Merchant",
description = "Configure 9001 vendors or depositors. Ok wot.",
icon = "player_vend_front.png^awards_level6.png",
secret = true, -- Oi. Cheater.
})