Anonymous
×
Create a new article
Write your page title here:
We currently have 496 articles on WIKI - Idle Pixel. Type your article name above or click on one of the titles below and start writing!



WIKI - Idle Pixel
Revision as of 16:41, 30 July 2024 by Dounford (talk | contribs)

Enemy Infobox

Script error: The function "enemy_page_before" does not exist. Use this to invoke the enemy infobox on the start of its page, the stats come from Module:Enemy_DB Script error: The function "code" does not exist.

Enemy Loot Table

Use this to invoke the enemy Loot Table, this already come with the "Loot" heading, the stats come from Module:Enemy_DB Script error: The function "code" does not exist. Script error: The function "enemy_table" does not exist.

Enemies Navbox + Area Category

This will add both "Monsters" and the Enemy's Area Category and the Template:Navbox Monsters Script error: The function "code" does not exist.

Monsters
Fields (Blood Fields) Chicken (Blood Chicken) Rat (Blood Rat) Spider (Blood Spider)
Lizard (Blood Lizard) Bee (Blood Bee)
Forest (Blood Forest) Snake (Blood Snake) Ants (Blood Ants) Wolf (Blood Wolf)
Ent (Blood Ent) Thief (Blood Thief)
Caves (Blood Caves) Bear (Blood Bear) Goblin (Blood Goblin) Bat (Blood Bat)
Skeleton (Blood Skeleton)
Volcano (Blood Volcano) Fire Hawk (Blood Fire Hawk) Fire Golem (Blood Fire Golem) Fire Snake (Blood Fire Snake)
Fire Witch (Blood Fire Witch)
Northern Fields Ice Hawk Ice Witch Ice Golem
Yeti
Haunted Mansion Ghost Exorcist Grandma
Reaper
Beach Shark Sea Soldier Puffer Fish
Saltwater Crocodile
Faradox Guardian Guardian 1 Guardian 2 Guardian 3 Guardian 4
Castle Castle Ants Castle Golem Castle Saltwater Crocodile
Castle Yeti
Quest Bosses Ent(boss) Tank Thief Leader Ghost Miner
Lab Blood Experiment One Blood Experiment Two Blood Experiment Three
Special Monsters Gem Goblin (Blood Gem Goblin) Evil Pirate
Event Monsters Event Yeti Floating Skull
ToyBox Toy Cute Toy Slinky Toy Teddy Toy Dwarf
Mansion Undead Roaming Ghost Undead Skeleton Zombie Undead Yeti Undead Spiked Skeleton Undead Zombie Undead Leader
Normal Monsters in Blue Bosses/Special Monsters in Bold Purple Blood Monsters in Red Rare Area Monsters in Green

Enemy Stats

This will add the Enemy Stats Table and its Loot Table Script error: The function "code" does not exist. Script error: The function "enemy_stats" does not exist.

All Enemies Stats + Loot

This will add a table with all Enemies Stats and their Loot Script error: The function "code" does not exist. Script error: The function "all_enemies" does not exist.

Area Infobox

This will add the Area Infobox and its Enemies Stats and Loot Script error: The function "code" does not exist. Script error: The function "area_page" does not exist.

Area Stats + Loot

This will add a table will all Enemies Stats and Loot from a selected area Script error: The function "code" does not exist. Script error: The function "enemies_area" does not exist.

All Craftables

This will add a table with all craftable items recipes Script error: The function "code" does not exist. Script error: The function "crafting" does not exist.

Item Crafting Recipes

This will add a table with all Crafting recipes where the selected item is used Script error: The function "code" does not exist. Script error: The function "item_use" does not exist.

Item Cooking Recipes

This will add a table with all Cooks Book Recipes where the selected item is used Script error: The function "code" does not exist. Script error: The function "item_cook" does not exist.

Item Brewing Recipes

This will add a table with all Potions Recipes where the selected item is used Script error: The function "code" does not exist. Script error: The function "item_potion" does not exist.

Item Tablette Use

This will add a table with all Tablettes where the selected item is used Script error: The function "code" does not exist. Script error: The function "item_tablette" does not exist.

Item Drop

This will add a table with all Enemies that drop the selected item Script error: The function "code" does not exist. Script error: The function "item_drop" does not exist.


local u = require("Module:Util")
local em = require("Module:Enemies")
local am = require("Module:Areas")
local cm = require("Module:Crafting")
local edb = require("Module:Enemy_DB")
local adb = require("Module:Area_DB")
local inspect = require("Module:InspectLua")
local p = {}

function p.pp(text)
    return mw.getCurrentFrame():preprocess(text)
end

function p.enemy_page_after(frame)
    return p.pp(em.enemy_page_after(frame.args[1] or frame:getParent():getTitle()))
end

function p.test(frame)
    return frame
end

function p.testo(frame)
    return frame.args[1]
end
return p