Module:Items/Data/doc

From Risk of Rain 2 Wiki
Jump to navigation Jump to search

This is the documentation page for Module:Items/Data

Database of Risk of Rain 2's Items.

Item Entry Schema

	["Item Name"] = {
		Rarity = "Legendary",
		Quote = "Item quote",
		Desc = "Item description",
		Category = { "Damage" },
		Unlock = "Challenge that item is locked behind",
		Corrupt = "Corrupted version of this item",
		Uncorrupt = "Uncorrupted version of this item",
		ID = 1,
		Stats = {
			{
				Stat = "Stat name",
				Value = "Base value",
				Stack = "Bonus stacking operation",
				Add = "Additional value added per item"
			}
		},
		LocalizationInternalName = "ITEM_NAME",
	},
Key/Column Name Data Type Required? Explanation/Description Example(s)
Category Table (of strings) ✔️ Array of internal item categories that the item belongs to { "Utility", "BrotherBlacklist" }
Corrupt String SotV Icon.pngSotV Icon.pngSurvivors of the Void - DLC Content
This content is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.
Click for more info.
Corrupted version of the item (EN localization)
"Safer Spaces"
Desc String ✔️ Description of item (EN localization), formatted using wikitext and templates to match in-game UI "{{Color|d|10%}} chance to fire a missile that deals {{Color|d|300%}} {{Stack|(+300% per stack)}} TOTAL damage."
Expansion String Abbreviation of the expansion that unlocks this item "SotV"
ID Number (integer) Internal ID of item 1
Introduced String The game version in which the item was first introduced on PC build "1.2.1.0" or Anniversary Update
LocalizationInternalName String ✔️ Internal name of item used for localization in \Risk of Rain 2\Risk of Rain 2_Data\StreamingAssets\Language\en\Items.txt "ITEM_CLOVER"
Name String Name of item (EN localization) "Ukulele"
Quote String ✔️ Item's flavor text (EN localization) "Luck is on your side."
Rarity String ✔️ Rarity of the item (EN localization). Possible values are:
"Common"
"Uncommon"
"Legendary"
"Boss"
"Void"
"Untiered"
"Legendary"
Stats Table (of table entries) Table containing information on the item's stats See #Stat Entry Schema
Uncorrupt String Uncorrupted version of the item (EN localization) "Tougher Times"
Unlock String Name of challenge that item is locked behind (EN localization) "Learning Process"

Stat Entry Schema

		Stats = {
			{
				Stat = "Stat 1 name",
				Value = "Base value",
				Stack = "Bonus stacking operation",
				Add = "Additional value added per item"
			},
			{
				Stat = "Stat 2 name",
				Value = "Base value",
				Stack = "Bonus stacking operation",
				Add = "Additional value added per item"
			}
		}
Key/Column Name Data Type Required? Explanation/Description Example(s)
Stat String ✔️ Name of stat (EN localization) "Damage"
Value String ✔️ Stat's base value when only one instance of corresponding item is held "350%"
Stack String ✔️ Stat's value stacking operation when multiple instances of a corresponding item is held "Linear"
Add String ✔️ Stat's stacking value for every instance of a corresponding item is held "+280%"