Template:Modbox/doc: Difference between revisions
Created page with "This template creates a tile that has two halves - either both containing text (coming soon), or the bottom half linking to a page. ==Usage== * <code>Name</code> – Name of..." |
Oscillator (talk | contribs) m updated docs to include Ship Class |
||
| (3 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
This template creates a | {{documentation}} | ||
{{Confuse|Template:Infobox Mod}} | |||
This template creates a Mod Infobox for usage only for the '''Mod Stores'''. | |||
==Usage== | ==Usage== | ||
| Line 10: | Line 12: | ||
* <code>ID</code> – Mod ID | * <code>ID</code> – Mod ID | ||
* <code>Multi Install?</code> – Yes or No | * <code>Multi Install?</code> – Yes or No | ||
* <code>Ship</code> - Ship Class: Any? Freighter? Fighter? Scout? | |||
* <code>Condition</code> | * <code>Condition</code> | ||
** 1 = Craftable | ** 1 = Craftable | ||
| Line 30: | Line 33: | ||
|ID= 283 | |ID= 283 | ||
|Multi= Yes | |Multi= Yes | ||
|Ship=Any | |||
|Condition= 1 | |Condition= 1 | ||
|Attr= +1% Damage Reflection | |Attr= +1% Damage Reflection | ||
| Line 51: | Line 55: | ||
|ID= 283 | |ID= 283 | ||
|Multi= Yes | |Multi= Yes | ||
|Ship=Any | |||
|Condition= 1 | |Condition= 1 | ||
|Attr= +1% Damage Reflection | |Attr= +1% Damage Reflection | ||
| Line 67: | Line 72: | ||
{ | { | ||
"params": { | "params": { | ||
" | "ReqLevel": { | ||
"type": "string", | "type": "string", | ||
"description": "Required Level of the Mod", | |||
"example": "ReqLevel= 35", | |||
"required": true | "required": true | ||
}, | }, | ||
" | "ItemLevel": { | ||
"type": "string", | |||
"description": "Item Rating/Tier of Mod", | |||
"example": "ItemLevel= 515", | |||
"required": true | |||
}, | |||
"ID": { | |||
"type": "string", | |||
"description": "Mod ID", | |||
"example": "ID= 19204", | |||
"required": true | |||
}, | |||
"Multi": { | |||
"type": "string", | |||
"description": "Is it Multi Install? Yes or No.", | |||
"example": "Multi= Yes", | |||
"required": true | |||
}, | |||
"Image": { | |||
"type": "string", | |||
"description": "Mod Image.", | |||
"example": "Image= Armor.png", | |||
"required": true | |||
}, | |||
"Name": { | |||
"type": "string", | |||
"required": true, | |||
"description": "Name of the Mod", | |||
"example": "Name= Hammered Garbage" | |||
}, | |||
"Location": { | |||
"type": "string", | |||
"description": "Location of the Mod (Armor, Weapons, Sensors, etc.)", | |||
"example": "Location= Utility", | |||
"required": true | |||
}, | |||
"Attr": { | |||
"type": "string", | |||
"description": "The Mod Attribute(s)", | |||
"example": "Attr= +25 Damage", | |||
"required": true | |||
}, | |||
"Desc": { | |||
"type": "string", | |||
"description": "Mod Description/Summary", | |||
"example": "Desc= Info: This Martian damage reflector sends 1% of all damage back to the attacker's shields", | |||
"required": true | |||
}, | |||
"Condition": { | |||
"type": "string", | |||
"description": "Is Mod Craftable, Purchasable or Both?", | |||
"example": "1 = Craftable | 2 = Purchasable | 3 = Both Purchasable & Craftable", | |||
"required": true | |||
}, | |||
"MatsReq": { | |||
"type": "string", | |||
"description": "Materials Required to Craft a Craftable Mod", | |||
"required": true, | |||
"example": "See Example Above" | |||
}, | |||
"Cost": { | |||
"type": "string", | |||
"description": "Mod Cost", | |||
"example": "Cost= $75,000", | |||
"required": true | |||
}, | |||
"Rep": { | |||
"type": "string", | |||
"description": "Reputation Required to use Mod", | |||
"example": "Rep= 1,000", | |||
"required": true | "required": true | ||
}, | }, | ||
" | "Ship": { | ||
"label": "Ship", | |||
"description": "Ship Class?", | |||
"example": "Any, Freighter, Fighter, Scout", | |||
"type": "string" | |||
} | |||
}, | }, | ||
"format": "block" | "format": "block", | ||
"paramOrder": [ | |||
"Name", | |||
"Image", | |||
"Location", | |||
"ReqLevel", | |||
"ItemLevel", | |||
"ID", | |||
"Multi", | |||
"Condition", | |||
"Attr", | |||
"Desc", | |||
"Cost", | |||
"Rep", | |||
"MatsReq", | |||
"Ship" | |||
], | |||
"description": "Detailed Guidelines for Parameter Usage" | |||
} | } | ||
</templatedata> | </templatedata> | ||