mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-16 07:30:27 +01:00
add a few non-Amelia pictures. Remove the least representative Sunless Sea watercolour.
This commit is contained in:
parent
b581f724db
commit
ec861d6047
|
@ -1,81 +1,82 @@
|
||||||
local S = minetest.get_translator(minetest.get_current_modname())
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
local base = 150
|
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({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor tower cap",
|
id = "rose watercolor tower cap",
|
||||||
title = S("A Towercap, By Amelia Rose"),
|
title = S("A Towercap, By Amelia Rose"),
|
||||||
image = "df_lorebooks_towercap.jpg",
|
image = "df_lorebooks_towercap.jpg",
|
||||||
sort = base + 0,
|
sort = base + 1,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor chasm wall",
|
id = "rose watercolor chasm wall",
|
||||||
title = S("Chasm Wall, By Amelia Rose"),
|
title = S("Chasm Wall, By Amelia Rose"),
|
||||||
image = "df_lorebooks_chasm_wall.jpg",
|
image = "df_lorebooks_chasm_wall.jpg",
|
||||||
sort = base + 1,
|
sort = base + 2,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor fungiwood",
|
id = "rose watercolor fungiwood",
|
||||||
title = S("Fungiwood, By Amelia Rose"),
|
title = S("Fungiwood, By Amelia Rose"),
|
||||||
image = "df_lorebooks_fungiwood.jpg",
|
image = "df_lorebooks_fungiwood.jpg",
|
||||||
sort = base + 2,
|
sort = base + 3,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor spore trees",
|
id = "rose watercolor spore trees",
|
||||||
title = S("Forest of Dust, By Amelia Rose"),
|
title = S("Forest of Dust, By Amelia Rose"),
|
||||||
image = "df_lorebooks_spore_trees.jpg",
|
image = "df_lorebooks_spore_trees.jpg",
|
||||||
sort = base + 3,
|
sort = base + 4,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor tunnel tube",
|
id = "rose watercolor tunnel tube",
|
||||||
title = S("Tunnel, By Amelia Rose"),
|
title = S("Tunnel, By Amelia Rose"),
|
||||||
image = "df_lorebooks_tunnel_tube.jpg",
|
image = "df_lorebooks_tunnel_tube.jpg",
|
||||||
sort = base + 4,
|
sort = base + 5,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor goblin cap",
|
id = "rose watercolor goblin cap",
|
||||||
title = S("Goblin Cap, By Amelia Rose"),
|
title = S("Goblin Cap, By Amelia Rose"),
|
||||||
image = "df_lorebooks_goblin_cap.jpg",
|
image = "df_lorebooks_goblin_cap.jpg",
|
||||||
sort = base + 5,
|
sort = base + 6,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor nether cap",
|
id = "rose watercolor nether cap",
|
||||||
title = S("The Cold Path, By Amelia Rose"),
|
title = S("The Cold Path, By Amelia Rose"),
|
||||||
image = "df_lorebooks_nethercap.jpg",
|
image = "df_lorebooks_nethercap.jpg",
|
||||||
sort = base + 6,
|
sort = base + 7,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor black cap",
|
id = "rose watercolor black cap",
|
||||||
title = S("Torches in the Dark, By Amelia Rose"),
|
title = S("Torches in the Dark, By Amelia Rose"),
|
||||||
image = "df_lorebooks_black_cap.jpg",
|
image = "df_lorebooks_black_cap.jpg",
|
||||||
sort = base + 7,
|
sort = base + 8,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor bloodthorn",
|
id = "rose watercolor bloodthorn",
|
||||||
title = S("Bloodthorn, By Amelia Rose"),
|
title = S("Bloodthorn, By Amelia Rose"),
|
||||||
image = "df_lorebooks_bloodthorn.jpg",
|
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,
|
sort = base + 9,
|
||||||
})
|
})
|
||||||
|
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
id = "rose watercolor sunless sea 2",
|
id = "rose watercolor sunless sea",
|
||||||
title = S("Coral Glow, By Amelia Rose"),
|
title = S("Coral Glow, By Amelia Rose"),
|
||||||
image = "df_lorebooks_sunless_sea_2.jpg",
|
image = "df_lorebooks_sunless_sea_2.jpg",
|
||||||
sort = base + 10,
|
sort = base + 10,
|
||||||
|
@ -87,3 +88,24 @@ collectible_lore.register_lorebook({
|
||||||
image = "df_lorebooks_sunless_sea_3.jpg",
|
image = "df_lorebooks_sunless_sea_3.jpg",
|
||||||
sort = base + 11,
|
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,
|
||||||
|
})
|
|
@ -1,6 +1,6 @@
|
||||||
local S = minetest.get_translator(minetest.get_current_modname())
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
local base = 100
|
local base = 300
|
||||||
|
|
||||||
--Speleothems introduction
|
--Speleothems introduction
|
||||||
collectible_lore.register_lorebook({
|
collectible_lore.register_lorebook({
|
||||||
|
|
|
@ -23,4 +23,4 @@ dofile(modpath.."/ecology_flora.lua")
|
||||||
dofile(modpath.."/ecology_trees.lua")
|
dofile(modpath.."/ecology_trees.lua")
|
||||||
dofile(modpath.."/geology_the_great_caverns.lua")
|
dofile(modpath.."/geology_the_great_caverns.lua")
|
||||||
dofile(modpath.."/underworld_and_primordial.lua")
|
dofile(modpath.."/underworld_and_primordial.lua")
|
||||||
dofile(modpath.."/watercolours.lua")
|
dofile(modpath.."/art.lua")
|
||||||
|
|
|
@ -1,6 +1,24 @@
|
||||||
# textdomain: df_lorebooks
|
# textdomain: df_lorebooks
|
||||||
|
|
||||||
|
|
||||||
|
### art.lua ###
|
||||||
|
|
||||||
|
A Towercap, By Amelia Rose=
|
||||||
|
Bloodthorn, By Amelia Rose=
|
||||||
|
Cavern Layers, By Dr. Theodore Banks=
|
||||||
|
Chasm Wall, By Amelia Rose=
|
||||||
|
Coral Glow, By Amelia Rose=
|
||||||
|
Destination of Life, By Amelia Rose=
|
||||||
|
Forest of Dust, By Amelia Rose=
|
||||||
|
Fungiwood, By Amelia Rose=
|
||||||
|
Goblin Cap, By Amelia Rose=
|
||||||
|
Portal to Another World, By Amelia Rose=
|
||||||
|
The Cold Path, By Amelia Rose=
|
||||||
|
Torches in the Dark, By Amelia Rose=
|
||||||
|
Tunnel, By Amelia Rose=
|
||||||
|
Underworld Seal, By Sir Reginald Sterling=
|
||||||
|
Underworld Stele, By Sir Reginald Sterling=
|
||||||
|
|
||||||
### ecology_flora.lua ###
|
### ecology_flora.lua ###
|
||||||
|
|
||||||
Amid the darkness deep and true,@nWhere most would fear to venture, too,@nA world of wonders I did find,@nA place to let my heart unwind.@n@nThe caves and tunnels underground,@nA world so different, yet profound,@nA place where life still finds a way,@nAnd flourishes, night and day.@n@nThe spindlestems, they glow so bright,@nA sight that takes my breath away,@nAnd in their caps, the secrets kept,@nOf minerals and secrets kept.@n@nThe dimple cups, with midnight hue,@nA dye so rich, it's hard to view,@nA treasure trove of beauty rare,@nA gift from depths beyond compare.@n@nPig tails twist and twine with grace,@nA fibrous mass of form and space,@nThe thread they give, a wondrous sight,@nA cloth of strength, both day and night.@n@nThe plump helmets, thick and round,@nA staple food, both there and found,@nA sustenance, a common treat,@nA delight, both crisp and sweet.@n@nThe quarry bushes, zingy blades,@nA spicy flavor, well-made,@nThe nodules, the rock nuts sweet,@nA taste that can't be beat.@n@nThe sweet pods, with their sugary treat,@nA delight for both man and beast,@nA gift from life, so rich and true,@nA treasure trove, so rare and few.@n@nThis world, so hidden, far below,@nA world of life, in ebb and flow,@nA world I've found, a world so dear,@nA place I hold so very near.@n@n -- Professor Amelia Rose=
|
Amid the darkness deep and true,@nWhere most would fear to venture, too,@nA world of wonders I did find,@nA place to let my heart unwind.@n@nThe caves and tunnels underground,@nA world so different, yet profound,@nA place where life still finds a way,@nAnd flourishes, night and day.@n@nThe spindlestems, they glow so bright,@nA sight that takes my breath away,@nAnd in their caps, the secrets kept,@nOf minerals and secrets kept.@n@nThe dimple cups, with midnight hue,@nA dye so rich, it's hard to view,@nA treasure trove of beauty rare,@nA gift from depths beyond compare.@n@nPig tails twist and twine with grace,@nA fibrous mass of form and space,@nThe thread they give, a wondrous sight,@nA cloth of strength, both day and night.@n@nThe plump helmets, thick and round,@nA staple food, both there and found,@nA sustenance, a common treat,@nA delight, both crisp and sweet.@n@nThe quarry bushes, zingy blades,@nA spicy flavor, well-made,@nThe nodules, the rock nuts sweet,@nA taste that can't be beat.@n@nThe sweet pods, with their sugary treat,@nA delight for both man and beast,@nA gift from life, so rich and true,@nA treasure trove, so rare and few.@n@nThis world, so hidden, far below,@nA world of life, in ebb and flow,@nA world I've found, a world so dear,@nA place I hold so very near.@n@n -- Professor Amelia Rose=
|
||||||
|
@ -259,18 +277,3 @@ Puzzle Seals=
|
||||||
Slade=
|
Slade=
|
||||||
The Underworld=
|
The Underworld=
|
||||||
Underworld Ruins=
|
Underworld Ruins=
|
||||||
|
|
||||||
### watercolours.lua ###
|
|
||||||
|
|
||||||
A Towercap, By Amelia Rose=
|
|
||||||
Bloodthorn, By Amelia Rose=
|
|
||||||
Chasm Wall, By Amelia Rose=
|
|
||||||
Coral Glow, By Amelia Rose=
|
|
||||||
Destination of Life, By Amelia Rose=
|
|
||||||
Forest of Dust, By Amelia Rose=
|
|
||||||
Fungiwood, By Amelia Rose=
|
|
||||||
Goblin Cap, By Amelia Rose=
|
|
||||||
Sunset Sans Sun, By Amelia Rose=
|
|
||||||
The Cold Path, By Amelia Rose=
|
|
||||||
Torches in the Dark, By Amelia Rose=
|
|
||||||
Tunnel, By Amelia Rose=
|
|
||||||
|
|
BIN
df_lorebooks/textures/df_lorebooks_lower_caverns.jpg
Normal file
BIN
df_lorebooks/textures/df_lorebooks_lower_caverns.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 74 KiB |
BIN
df_lorebooks/textures/df_lorebooks_seal.jpg
Normal file
BIN
df_lorebooks/textures/df_lorebooks_seal.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 112 KiB |
BIN
df_lorebooks/textures/df_lorebooks_sinkhole.jpg
Normal file
BIN
df_lorebooks/textures/df_lorebooks_sinkhole.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 90 KiB |
Binary file not shown.
Before Width: | Height: | Size: 107 KiB |
BIN
df_lorebooks/textures/df_lorebooks_upper_caverns.jpg
Normal file
BIN
df_lorebooks/textures/df_lorebooks_upper_caverns.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 90 KiB |
Loading…
Reference in New Issue
Block a user