osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
67 lines (66 loc) • 2.09 kB
TypeScript
import { LevelRequirement, QuestRequirement } from '../../Requirement';
import { QuestDifficulty, QuestLength } from '../enums';
import { QuestStatus } from '../Quest';
/**
* Details
Start point Map icon Talk to Floopa, an Injured Tortugan, on a Remote Island in the Unquiet Ocean. Show on map
Official difficulty Experienced
Official length Medium
Description Help a stranded tortugan and gain access to the Great Conch.
Requirements
a_squeezer
Slayer 51 Slayer [not boostable][required to start]
Construction 48 Construction [not boostable][required to start]
Sailing 45 Sailing [not boostable][required to start]
Hunter 45 Hunter [not boostable][required to start]
Woodcutting 40 Woodcutting [required to start]
Crafting 34 Crafting [required to start]
Completion of Pandemonium
Items required
Any axe (a bronze axe can be found during the quest, but bringing a better one is recommended for cutting 10 logs)
Hammer (can be found during the quest)
Saw (can be found during the quest)
[uncheck all]
Recommended
At least 4 free inventory spaces (or up to 22 for all the construction materials at once)
Combat level 60 Combat level
Food and combat gear
Stamina Potion
[uncheck all]
Enemies to defeat
Gryphon (level 95)
Shellbane gryphon (level 235)
*/
declare const TroubledTortugans: {
age: string;
description: string;
difficulty: QuestDifficulty;
id: number;
length: QuestLength;
members: boolean;
miniquest: boolean;
name: string;
questPoints: number;
recommendations: string[];
recommendedPrayers: never[];
recommendedSkills: {};
requirements: (LevelRequirement | QuestRequirement)[];
rewards: {
areas: string[];
experience: never[];
items: never[];
lamps: never[];
pets: never[];
points: never[];
questPoints: number;
unlocks: string[];
};
series: string;
shortName: string;
startLocation: string;
status: QuestStatus;
steps: never[];
url: string;
};
export default TroubledTortugans;
//# sourceMappingURL=TroubledTortugans.d.ts.map