Module:Schema/Icy fishing spot

From the RuneScape Wiki, the wiki for all things RuneScape
Jump to navigation Jump to search
Module documentation
This documentation is transcluded from Template:Data help. [edit] [history] [purge]
mw.loadData compatible

This module is a Data Project schema page for Icy fishing spot's drop log.

The Data Project has several pages associated for this drop log:

Modifying this schema after data has been submitted could invalidate all submissions.
return {
	["title"] = "Icy fishing spot",
	["sample"] = "fish",
	["dropsLine"] = "DropsLineFish",
	["fields"] = {
		{
			["name"] = "total",
			["type"] = "number",
			["icon"] = nil,
			["label"] = "Total fish",
			["placeholder"] = "Number of fish caught",
			["info"] = "The number of fish you have caught from the icy fishing spot",
			["required"] = true
		},
		{
			["name"] = "trout",
			["type"] = "number",
			["icon"] = "Frozen trout.png",
			["label"] = "Frozen trout",
			["placeholder"] = "Number of frozen trout caught",
			["info"] = "The total number of times you have caught frozen trout from the icy fishing spot",
			["required"] = true,
			["quantity"] = 1,
			["page"] = "Frozen trout"
		},
		{
			["name"] = "salmon",
			["type"] = "number",
			["icon"] = "Frozen salmon.png",
			["label"] = "Frozen salmon",
			["placeholder"] = "Number of frozen salmon caught",
			["info"] = "The total number of times you have caught frozen salmon from the icy fishing spot",
			["required"] = true,
			["quantity"] = 1,
			["page"] = "Frozen salmon"
		},
		{
			["name"] = "bass",
			["type"] = "number",
			["icon"] = "Frozen bass.png",
			["label"] = "Frozen bass",
			["placeholder"] = "Number of frozen bass caught",
			["info"] = "The total number of times you have caught frozen bass from an icy fishing spot",
			["required"] = true,
			["quantity"] = 1,
			["page"] = "Frozen bass"
		},
	}
}