mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-14 22:50:27 +01:00
112 lines
2.8 KiB
Lua
112 lines
2.8 KiB
Lua
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
local base = 400
|
|
|
|
----------------------------------------------------------
|
|
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor sinkhole",
|
|
title = S("Portal to Another World, By Amelia Rose"),
|
|
image = "df_lorebooks_sinkhole.jpg",
|
|
sort = base + 0,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor tower cap",
|
|
title = S("A Towercap, By Amelia Rose"),
|
|
image = "df_lorebooks_towercap.jpg",
|
|
sort = base + 1,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor chasm wall",
|
|
title = S("Chasm Wall, By Amelia Rose"),
|
|
image = "df_lorebooks_chasm_wall.jpg",
|
|
sort = base + 2,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor fungiwood",
|
|
title = S("Fungiwood, By Amelia Rose"),
|
|
image = "df_lorebooks_fungiwood.jpg",
|
|
sort = base + 3,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor spore trees",
|
|
title = S("Forest of Dust, By Amelia Rose"),
|
|
image = "df_lorebooks_spore_trees.jpg",
|
|
sort = base + 4,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor tunnel tube",
|
|
title = S("Tunnel, By Amelia Rose"),
|
|
image = "df_lorebooks_tunnel_tube.jpg",
|
|
sort = base + 5,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor goblin cap",
|
|
title = S("Goblin Cap, By Amelia Rose"),
|
|
image = "df_lorebooks_goblin_cap.jpg",
|
|
sort = base + 6,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor nether cap",
|
|
title = S("The Cold Path, By Amelia Rose"),
|
|
image = "df_lorebooks_nethercap.jpg",
|
|
sort = base + 7,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor black cap",
|
|
title = S("Torches in the Dark, By Amelia Rose"),
|
|
image = "df_lorebooks_black_cap.jpg",
|
|
sort = base + 8,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor bloodthorn",
|
|
title = S("Bloodthorn, By Amelia Rose"),
|
|
image = "df_lorebooks_bloodthorn.jpg",
|
|
sort = base + 9,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor sunless sea",
|
|
title = S("Coral Glow, By Amelia Rose"),
|
|
image = "df_lorebooks_sunless_sea_2.jpg",
|
|
sort = base + 10,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "rose watercolor sunless sea 3",
|
|
title = S("Destination of Life, By Amelia Rose"),
|
|
image = "df_lorebooks_sunless_sea_3.jpg",
|
|
sort = base + 11,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "banks map",
|
|
title = S("Cavern Layers, By Dr. Theodore Banks"),
|
|
image = "df_lorebooks_upper_caverns.jpg",
|
|
sort = base + 12,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "ster seal",
|
|
title = S("Underworld Seal, By Sir Reginald Sterling"),
|
|
image = "df_lorebooks_seal.jpg",
|
|
sort = base + 13,
|
|
})
|
|
|
|
collectible_lore.register_lorebook({
|
|
id = "ster stele",
|
|
title = S("Underworld Stele, By Sir Reginald Sterling"),
|
|
image = "df_lorebooks_lower_caverns.jpg",
|
|
sort = base + 14,
|
|
})
|