Module:Gear/FishingRods/Data

From Fantasy Life Wiki
Jump to navigation Jump to search

Documentation for this module may be created at Module:Gear/FishingRods/Data/doc

-- Fishing Rods Data
local T = "[[Tools|Tool]] ([[Fishing Rods|Fishing Rod]])"
local S = "[[Fishing]]"
local A = "Fishing"
local P = "------"
local C = "[[Carpenter]]"
local H = " (High Level)"

local Data =
{
	["Guppy Rod"] = {
		Description = "Fishing rod made for practising. For those still fishing in the kiddy pool.",
		Rarity = 0,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 1,
		Stat1 = A,
		Stat1Value = 6,
		Special = P,
		Sold = 400,
		Sell = 10,
		Type = T
	},
	["Oak Rod"] = {
		Description = "Crude fishing rod made of oak. An entry-level rod, at best.",
		Rarity = 0,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 1,
		Stat1 = A,
		Stat1Value = 9,
		Special = P,
		CraftClass = C,
		CraftRank = "Fledgling",
		Ingredients = { "[[Oak Beam]]", "[[Straw Thread]]" },
		Amount = { 1, 3 },
		Exp = 10,
		Sold = 900,
		Sell = 320,
		Type = T
	},
	["Pine Rod"] = {
		Description = "Tough fishing rod made of pine. For those who want to fish but lack technique.",
		Rarity = 1,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 2,
		Stat1 = A,
		Stat1Value = 12,
		Special = P,
		CraftClass = C,
		CraftRank = "Apprentice",
		Ingredients = { "[[Pine Beam]]", "[[Straw Thread]]", "[[Pine Nuts]]" },
		Amount = { 1, 3, 1 },
		Exp = 15,
		Sold = 1600,
		Sell = 680,
		Type = T
	},
	["Palm Rod"] = {
		Description = "Decent fishing rod made of palm. Requires technique to get the most out of it.",
		Rarity = 2,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 3,
		Stat1 = A,
		Stat1Value = 16,
		Special = P,
		CraftClass = C,
		CraftRank = "Apprentice",
		Ingredients = { "[[Palm Beam]]", "[[Silk Thread]]", "[[Sunny Cotton]]" },
		Amount = { 1, 3, 2 },
		Exp = 25,
		Sold = 2600,
		Sell = 1520,
		Type = T
	},
	["Sugar Rod"] = {
		Description = "Balanced fishing rod made of sugar wood. Perfect for fishing wherever you go!",
		Rarity = 3,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 4,
		Stat1 = A,
		Stat1Value = 20,
		Special = P,
		CraftClass = C,
		CraftRank = "Adept",
		Ingredients = { "[[Sugar Beam]]", "[[Flax Thread]]", "[[Linen]]" },
		Amount = { 1, 2, 2 },
		Exp = 65,
		Sold = 4300,
		Sell = 2350,
		Type = T
	},
	["Famous Angler's Rod"] = {
		Description = "A fishing rod made for a famous Angler. Any Angler worth their worms would want one!",
		Rarity = 3,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 5,
		Stat1 = A,
		Stat1Value = 24,
		Special = "Line gauge recovery +",
		CraftClass = C,
		CraftRank = "Expert"..H,
		Ingredients = { "[[Mangrove Beam]]", "[[Marine Thread]]", "[[Rainbow Shell]]" },
		Amount = { 1, 3, 1 },
		Exp = 130,
		Sold = 7200,
		Sell = 2700 ,
		Type = T
	},
	["Sandstorm Rod"] = {
		Description = "A fishing rod holding the power of the desert. Perfect for sand fishing.",
		Rarity = 3,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 6,
		Stat1 = A,
		Stat1Value = 30,
		Special = "Desert fish damage +",
		CraftClass = C,
		CraftRank = "Master"..H,
		Ingredients = { "[[Wind Beam]]", "[[Dark Scales]]", "[[Pink Silk Thread]]" },
		Amount = { 2, 1, 3 },
		Exp = 200,
		Sold = 11800,
		Sell = 9600,
		Type = T
	},
	["Whirlpool Rod"] = {
		Description = "Fishing rod able to withstand a whirlpool. Good stability in raging waters.",
		Rarity = 4,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 7,
		Stat1 = A,
		Stat1Value = 36,
		Special = "Sea fish damage +",
		CraftClass = C,
		CraftRank = "Master"..H,
		Ingredients = { "[[Water Beam]]", "[[Swordfish Fin]]", "[[Starry Thread]]" },
		Amount = { 2, 1, 3 },
		Exp = 200,
		Sold = 17000,
		Sell = 10300,
		Type = T
	},
	["Sea Cloud Rod"] = {
		Description = "A special Levitanian fishing rod. The perfect rod for sky fishing!",
		Rarity = 4,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 8,
		Stat1 = A,
		Stat1Value = 44,
		Special = "Sky fish damage +",
		CraftClass = C,
		CraftRank = "God"..H,
		Ingredients = { "[[Water Beam]]", "[[Volcanic Fin]]", "[[Antenna Lantern]]" },
		Amount = { 2, 1, 1 },
		Exp = 200,
		Sold = 23400,
		Sell = 6000 ,7200,
		Type = T
	},
	["Marine Rod"] = {
		Description = "Fishing rod said to have been used by the gods. No fish can escape its allure!",
		Rarity = 5,
		Usable = { "Angler" },
		Skill = S,
		SkillLvl = 11,
		Stat1 = A,
		Stat1Value = 54,
		Special = "Rare fish rate +",
		CraftClass = C,
		CraftRank = "God"..H,
		Ingredients = { "[[Starry Beam]]", "[[Ghost Shell]]", "[[Horror String]]" },
		Amount = { 2, 1, 1 },
		Exp = 200,
		Sold = "N/A",
		Sell = 11000,
		Type = T
	},
	["Gigaga Fishing Rod"] = {
		Description = "Legendary fishing rod crafted long ago. Contains the power of the Fluffkin.",
		Rarity = 5,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 12,
		Stat1 = A,
		Stat1Value = 50,
		Special = "Fish less likely to anger",
		CraftClass = C,
		CraftRank = "God-in-Training",
		Ingredients = { "[[Gigaga Beam]]", "[[Ancient Coral]]", "[[Ancient Nectar]]" },
		Amount = { 1, 1, 1 },
		Exp = 600,
		Sold = 42000,
		Sell = 3600,
		Type = T,
		DLC = 1
	},
	["Victory Fishing Rod"] = {
		Description = "Fishing rod that brings glory to its user. Widely considered THE must-have rod!",
		Rarity = 5,
		Usable = { "All" },
		Skill = S,
		SkillLvl = 13,
		Stat1 = A,
		Stat1Value = 65,
		Special = "Giant fish chance +++",
		CraftClass = C,
		CraftRank = "God-in-Training"..H,
		Ingredients = { "[[Gigaga Beam]]", "[[Other-Worldly Fin]]", "[[Rainbow Thread]]" },
		Amount = { 2, 1, 1 },
		Exp = 1500,
		Sold = "N/A",
		Sell = 12000,
		Type = T,
		DLC = 1
	},
	["Star Fishing Rod"] = {
		Description = "A quality fishing rod endorsed by the gods. Perfect for catching a falling star...fish.",
		Rarity = 5,
		Usable = { "Angler" },
		Skill = S,
		SkillLvl = 15,
		Stat1 = A,
		Stat1Value = 70,
		Special = "All fish damage +",
		CraftClass = C,
		CraftRank = "God"..H,
		Ingredients = { "[[Divine Beam]]", "[[Godfish Moss]]", "[[Rainbow Thread]]" },
		Amount = { 2, 1, 1 },
		Exp = 1800,
		Sold = "N/A",
		Sell = 18000,
		Type = T,
		DLC = 1
	}
}
return Data