mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-12 13:40:31 +01:00
89 lines
2.3 KiB
Lua
89 lines
2.3 KiB
Lua
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||
|
|
||
|
local base = 150
|
||
|
|
||
|
----------------------------------------------------------
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor tower cap",
|
||
|
title = S("A Towercap, By Amelia Rose"),
|
||
|
image = "df_lorebooks_towercap.jpg",
|
||
|
sort = base + 0,
|
||
|
})
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor chasm wall",
|
||
|
title = S("Chasm Wall, By Amelia Rose"),
|
||
|
image = "df_lorebooks_chasm_wall.jpg",
|
||
|
sort = base + 1,
|
||
|
})
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor fungiwood",
|
||
|
title = S("Fungiwood, By Amelia Rose"),
|
||
|
image = "df_lorebooks_fungiwood.jpg",
|
||
|
sort = base + 2,
|
||
|
})
|
||
|
|
||
|
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 + 3,
|
||
|
})
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor tunnel tube",
|
||
|
title = S("Tunnel, By Amelia Rose"),
|
||
|
image = "df_lorebooks_tunnel_tube.jpg",
|
||
|
sort = base + 4,
|
||
|
})
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor goblin cap",
|
||
|
title = S("Goblin Cap, By Amelia Rose"),
|
||
|
image = "df_lorebooks_goblin_cap.jpg",
|
||
|
sort = base + 5,
|
||
|
})
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor nether cap",
|
||
|
title = S("The Cold Path, By Amelia Rose"),
|
||
|
image = "df_lorebooks_nethercap.jpg",
|
||
|
sort = base + 6,
|
||
|
})
|
||
|
|
||
|
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 + 7,
|
||
|
})
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor bloodthorn",
|
||
|
title = S("Bloodthorn, By Amelia Rose"),
|
||
|
image = "df_lorebooks_bloodthorn.jpg",
|
||
|
sort = base + 8,
|
||
|
})
|
||
|
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor sunless sea",
|
||
|
title = S("Sunset Sans Sun, By Amelia Rose"),
|
||
|
image = "df_lorebooks_sunless_sea.jpg",
|
||
|
sort = base + 9,
|
||
|
})
|
||
|
|
||
|
collectible_lore.register_lorebook({
|
||
|
id = "rose watercolor sunless sea 2",
|
||
|
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,
|
||
|
})
|