Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:CosmeticCrates/Data: Difference between revisions

From MCC Island Wiki
1/26 crates, in order to test module
 
m modified structure so it works with ipairs
Line 1: Line 1:
return {
return {
    ["Mechanic Cosmetic Crate"] = {
["Mechanic Cosmetic Crate"] = {
        ["Toolbox"] = 12.5,
{"Toolbox", 12.5},
        ["Wrench (Pipe)"] = 12.5,
{"Wrench (Pipe)", 12.5},
        ["Hair Dryer"] = 12.5,
{"Hair Dryer", 12.5},
        ["Mechanic's Cap"] = 12.5,
{"Mechanic's Cap", 12.5},
        ["Gauntlet"] = 8.33,
{"Gauntlet", 8.33},
        ["Holosword"] = 8.33,
{"Holosword", 8.33},
        ["Night Vision Goggles"] = 8.33,
{"Night Vision Goggles", 8.33},
        ["Holosword (Serrated)"] = 7.5,
{"Holosword (Serrated)", 7.5},
        ["Night Vision Goggles (Arachno)"] = 7.5,
{"Night Vision Goggles (Arachno)", 7.5},
        ["Fire Fist"] = 4,
{"Fire Fist", 4},
        ["Hothead"] = 4,
{"Hothead", 4},
        ["Gauntlet (Elemental)"] = 1,
{"Gauntlet (Elemental)", 1},
        ["Hothead (Explode)"] = 1,
{"Hothead (Explode)", 1}
    }
}
}
}

Revision as of 20:47, 12 July 2025

Documentation for this module may be created at Module:CosmeticCrates/Data/doc

return {
	["Mechanic Cosmetic Crate"] = {
		{"Toolbox", 12.5},
		{"Wrench (Pipe)", 12.5},
		{"Hair Dryer", 12.5},
		{"Mechanic's Cap", 12.5},
		{"Gauntlet", 8.33},
		{"Holosword", 8.33},
		{"Night Vision Goggles", 8.33},
		{"Holosword (Serrated)", 7.5},
		{"Night Vision Goggles (Arachno)", 7.5},
		{"Fire Fist", 4},
		{"Hothead", 4},
		{"Gauntlet (Elemental)", 1},
		{"Hothead (Explode)", 1}
	}
}