Module:Item/Type: Difference between revisions
From Growtopia
More actions
>NekoPillow Replaced content with "local p = { -- ClothingType | NAME ["clothingType"] = { [0] = {"Hat"}, [1] = {"Shirt"}, [2] = {"Pants"}, [3] = {"Feet"}, [4..." |
>NekoPillow No edit summary |
||
| Line 12: | Line 12: | ||
[8] = {"Chest"}, | [8] = {"Chest"}, | ||
}, | }, | ||
["textureType"] = { | |||
[1] = {"Single"}, | |||
[2] = {"8 Directional"}, | |||
[3] = {"Horizontal"}, | |||
[4] = {"Attach to wall (5 Sprites)"}, | |||
[5] = {"4 Directional"}, | |||
[6] = {"Random Sprites"}, | |||
[7] = {"Vertical"}, | |||
[8] = {"Horizontal (Cave Platform)"}, | |||
[9] = {"Attach to wall (4 Sprites)"}, | |||
} | |||
} | } | ||
return p | return p | ||
Revision as of 15:12, 6 March 2019
Documentation for this module may be created at Module:Item/Type/doc
local p = {
-- ClothingType | NAME
["clothingType"] = {
[0] = {"Hat"},
[1] = {"Shirt"},
[2] = {"Pants"},
[3] = {"Feet"},
[4] = {"Face"},
[5] = {"Hand"},
[6] = {"Back"},
[7] = {"Hair"},
[8] = {"Chest"},
},
["textureType"] = {
[1] = {"Single"},
[2] = {"8 Directional"},
[3] = {"Horizontal"},
[4] = {"Attach to wall (5 Sprites)"},
[5] = {"4 Directional"},
[6] = {"Random Sprites"},
[7] = {"Vertical"},
[8] = {"Horizontal (Cave Platform)"},
[9] = {"Attach to wall (4 Sprites)"},
}
}
return p