Moubootaur Legends

Alchemy Blueprint D - Item DB

Alchemy Blueprint D | 7453

Blueprint containing alchemy recipes.

ID 7453
type IT_USABLE
weight 40

Mobs that drop this item:

No Monsters drop this item.

ID for use in Discord:
Expert View

You'd like to see behind the curtain? Then you are here at the right place - lots of data only contributors would normally see.

Open raw JSON
ID 7453
aegisName AlchemyBlueprintD
Script

Script to execute when the item is used/equipped.

if (!CRAFTQUEST) {
	getitem AlchemyBlueprintD, 1;
	dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook));
	end;
}
.@seed=rand(0, 10000)-BaseLevel-readparam(bLuk);

if (.@seed < 100)
	callfunc("MakeBlueprint", CRAFT_ALCHEMY, CRAFT_MASTER);
else if (.@seed < 2000)
	callfunc("MakeBlueprint", CRAFT_ALCHEMY, CRAFT_EXPERT | CRAFT_MASTER);
else if (.@seed < 3000)
	callfunc("MakeBlueprint", CRAFT_ALCHEMY, CRAFT_ADVANCED | CRAFT_EXPERT);
else
	callfunc("MakeBlueprint", CRAFT_ALCHEMY, CRAFT_EXPERT);