This is the documentation page for Module:Decorations/data
“It's taking longer than I calculated.”
This page is actively being worked on and may not be completely correct. Please assist in making this page accurate. See WARFRAME Wiki:Research on ways to perform research on this game. Click here to add more info.
Add Dormizone decorations here
Database of WARFRAME's Decorations.
Decoration Entry Schema
["Decoration Name"] = {
Name = "Decoration Name",
Image = "DecoDecorationName.png",
Description = "Description",
Cost = {
Capacity = 5,
Time = 24,
Credits = 500,
Resources = {
{ Count = 300, Name = "Ferrite" },
{ Count = 200, Name = "Salvage" },
{ Count = 100, Name = "Polymer Bundle" },
{ Count = 0.07, Name = "Control Module" }
}
}
},
| Key/Column Name | Public Export Equivalent | Data Type | Required? | Explanation/Description | Example(s) |
|---|---|---|---|---|---|
Cost |
N/A | Table (of key-value pairs) | ✔️ | Cost data of decoration | See #Cost Table Schema |
Description |
description |
String | ✔️ | Description of decoration as seen in-game | "Changes the entry point for Tenno arriving in the Dojo. Only one Arrival Gate can be placed in a Dojo."
|
Image |
textureLocation |
String | ✔️ | Image file name of the decoration as uploaded to the wiki | "DecoArrivalGate.png"
|
InternalName |
uniqueName |
String | ❌ | The full unique name of a decoration formatted as a file path | "/Lotus/Types/Recipes/WarframeRecipes/MummyBlueprint"
|
Introduced |
N/A | String | ❌ | The game version in which the decoration was first introduced in the global build of WARFRAME | "30.5" or "Specters of the Rail"
|
Name |
name |
String | ✔️ | Name of decoration | "Beacon"
|
Cost Subtable Schema
Cost = {
Capacity = 5,
Time = 24,
Credits = 500,
Resources = {
{ Count = 300, Name = "Ferrite" },
{ Count = 200, Name = "Salvage" },
{ Count = 100, Name = "Polymer Bundle" },
{ Count = 0.07, Name = "Control Module" }
}
}
| Key/Column Name | Data Type | Required? | Explanation/Description | Example(s) |
|---|---|---|---|---|
Capacity |
Number (int) | ✔️ | The room capacity cost for placing decoration | 5
|
Credits |
Number (int) | ✔️ | The Credits cost for crafting the decoration | 25000
|
Resources |
Table (of tables) | ✔️ | A table containing the crafting components used to build the decoration and the amounts required at Ghost Clan rank | {
{ Count = 4, Name = "Neurodes" },
{ Count = 1200, Name = "Alloy Plate" },
{ Count = 700, Name = "Ferrite" },
{ Count = 1000, Name = "Polymer Bundle" }
}
|
Time |
Number (int) | ✔️ | The time in hours to build an item | 24
|
