Viewing old revision of Module:Attributes
You are viewing an old revision of this page from 12/9/2025, 10:28:07 AM.
View latest versionNo documentation subpage (
/doc) found for this module.const { resolveArgs } = await require("Utils");
exports.wikiAttribute = function(frame) {
const args = resolveArgs(frame);
switch (args[0]?.toLowerCase()) {
case "dark":
case "umbro":
return "[[Attributes#Umbro|Umbro]]"
break;
}
return ""
}