Module:Swatches/data
Jump to navigation
Jump to search
Module:Swatches/data
Dataset of cosmetic swatches.
Schema
The dataset is a dictionary keyed by swatch name. Each key represents the display name of a swatch. The key is case-preserving and used directly for display and sorting.
Record fields
Each value is a table with the following fields:
- colors
- string[4]
- Array of 4 hex color strings: [1] top, [2] left, [3] right, [4] bottom.
- This reflects the ordering under
DuneSandbox/Content/Dune/Systems/Customization/DyePacks, where the swatch values can also be found. - However, for ease of viewing, the rendered swatch infobox displays them clockwise starting from the top (i.e. 1/3/4/2).
- Examples:
#000000#ffffff
- link (optional)
- string
- Wiki page name to link the swatch title to.
- scopes (optional)
- string[]
- Compatibility scopes for the swatch. All values must be lowercase.
- If omitted, the swatch applies to all scopes.
- Valid values:
vehicleweapongarmentplaceable
- onlyClasses (optional)
- string[]
- Specific classes that the swatch applies to, in the form of
<scope>:<class>. scopemust be lowercase and must match one of the validscopevalues.classis case-preserving and used directly for display.- If present, the swatch applies only to the specified classes.
- If omitted, the swatch applies to all classes within its specified
scopes. - Examples:
vehicle:Scout Ornithopterweapon:Rapiersgarment:Stillsuits
return {
["House Atreides"] = {
colors = { "#313F29", "#959595", "#849141", "#BCAB95" },
link = "House Atreides",
},
["House Harkonnen"] = {
colors = { "#2B2B2B", "#3F3F3F", "#7C383D", "#2B2B2B" },
link = "House Harkonnen",
},
["House Alexin"] = {
colors = { "#593730", "#BCAB95", "#D2A552", "#959595" },
link = "House Alexin",
},
["House Argosaz"] = {
colors = { "#2B271D", "#896B36", "#C48642", "#896B36" },
link = "House Argosaz",
},
["House Dyvetz"] = {
colors = { "#505522", "#3F3F3F", "#BC766C", "#5C707C" },
link = "House Dyvetz",
},
["House Ecaz"] = {
colors = { "#364B2B", "#BCAB95", "#D2A552", "#BCAB95" },
link = "House Ecaz",
},
["House Hagal"] = {
colors = { "#345259", "#6C5A57", "#004D59", "#2B2B2B" },
link = "House Hagal",
},
["House Hurata"] = {
colors = { "#534C43", "#2F3F26", "#A2AA50", "#2B2B2B" },
link = "House Hurata",
},
["House Imota"] = {
colors = { "#591A19", "#591A19", "#7CB8C9", "#3F3F3F" },
link = "House Imota",
},
["House Kenola"] = {
colors = { "#5C707C", "#706F7C", "#CCCCCC", "#959595" },
link = "House Kenola",
},
["House Lindaren"] = {
colors = { "#303859", "#3F3F3F", "#303859", "#2B2B2B" },
link = "House Lindaren",
},
["House Maros"] = {
colors = { "#896B36", "#2B2B2B", "#2B2B2B", "#896B36" },
link = "House Maros",
},
["House Mikarrol"] = {
colors = { "#959595", "#3F3F3F", "#BC6C91", "#6C5A57" },
link = "House Mikarrol",
},
["House Moritani"] = {
colors = { "#2B2B2B", "#3F3F3F", "#D2A552", "#A39964" },
link = "House Moritani",
},
["House Mutelli"] = {
colors = { "#592626", "#3F3F3F", "#CCCCCC", "#D5A38D" },
link = "House Mutelli",
},
["House Novebruns"] = {
colors = { "#3F2632", "#2B2B2B", "#955C30", "#CCCCCC" },
link = "House Novebruns",
},
["House Richese"] = {
colors = { "#3F3F3F", "#959595", "#7CB8C9", "#D88746" },
link = "House Richese",
},
["House Sor"] = {
colors = { "#6C5A57", "#6C5A57", "#953030", "#592626" },
link = "House Sor",
},
["House Spinnette"] = {
colors = { "#4D2B0C", "#2B1604", "#CCCCCC", "#CCCCCC" },
link = "House Spinnette",
},
["House Taligari"] = {
colors = { "#1D302D", "#BCAB95", "#54958B", "#A39964" },
link = "House Taligari",
},
["House Thorvald"] = {
colors = { "#C48642", "#D2A552", "#2B2B2B", "#4B4079" },
link = "House Thorvald",
},
["House Tseida"] = {
colors = { "#7C5B20", "#6C5A57", "#D2A552", "#6C5A57" },
link = "House Tseida",
},
["House Varota"] = {
colors = { "#4D2B0C", "#303859", "#303859", "#6C5A57" },
link = "House Varota",
},
["House Vernius"] = {
colors = { "#45203A", "#955C30", "#5C507C", "#2B2B2B" },
link = "House Vernius",
},
["House Wallach"] = {
colors = { "#959595", "#593730", "#953030", "#303859" },
link = "House Wallach",
},
["House Wayku"] = {
colors = { "#29304D", "#959595", "#953030", "#CCCCCC" },
link = "House Wayku",
},
["House Wydras"] = {
colors = { "#546C5B", "#BCAB95", "#507C50", "#2B2B2B" },
link = "House Wydras",
},
["Sunset Dye"] = {
colors = { "#2B2B2B", "#5B4523", "#BCAB95", "#A0581C" },
link = "Sunset Dye Global Swatch",
scopes = { "vehicle", "weapon", "garment" },
},
["Dusk Rider"] = {
colors = { "#27383F", "#2B2B2B", "#434448", "#BC766C" },
link = "Dusk Rider Sandbike Swatch",
scopes = { "vehicle" },
onlyClasses = { "vehicle:Sandbike" },
},
["Blue Dasher"] = {
colors = { "#5C707C", "#502B31", "#2B2B2B", "#D2A552" },
link = "Blue Dasher Ornithopter Swatch",
scopes = { "vehicle" },
onlyClasses = {
"vehicle:Scout Ornithopter",
"vehicle:Assault Ornithopter",
"vehicle:Carrier Ornithopter",
},
},
["Maula"] = {
colors = { "#4D5D6C", "#847867", "#5C707C", "#2B2B2B" },
scopes = { "vehicle", "weapon", "garment" },
},
["CHOAM"] = {
colors = { "#BCAC8F", "#BCAB95", "#D88746", "#BC8700" },
scopes = { "vehicle", "weapon", "garment" },
},
["Vermillius Gap"] = {
colors = { "#593123", "#4C0400", "#D2A552", "#959595" },
scopes = { "vehicle", "weapon", "garment" },
},
["Smuggler"] = {
colors = { "#36486C", "#08192B", "#BC863F", "#957130" },
link = "Raiders of the Broken Lands",
scopes = { "vehicle", "weapon", "garment" },
},
["Water Shipper Utility"] = {
colors = { "#A09B94", "#19303F", "#897468", "#7C2200" },
link = "The Water Wars",
},
}