new fish/seaweed textures and food items (Thanks Blue Tangs Rock)
@ -98,6 +98,12 @@ several examples are at the documentation of [api.txt](api.txt) file.
|
|||||||
A huge thanks to Chinchow who was the inspiration behind Ethereal and everyone
|
A huge thanks to Chinchow who was the inspiration behind Ethereal and everyone
|
||||||
who helped make this mod bigger and better throughout it's release :)
|
who helped make this mod bigger and better throughout it's release :)
|
||||||
|
|
||||||
|
### 1.30
|
||||||
|
- New fish textures by SirroBzeroone and BlueTangs Rock
|
||||||
|
- New fish added along with food recipes (thanks BlueTangs Rock)
|
||||||
|
- Fishing rod now has 65 uses
|
||||||
|
- Fixed willow leaves scaling and forced schematic trunk placement
|
||||||
|
|
||||||
#### 1.29
|
#### 1.29
|
||||||
- Use "stratum" to generate mesa biome for stripey goodness
|
- Use "stratum" to generate mesa biome for stripey goodness
|
||||||
- Added coloured candles (thanks wRothbard)
|
- Added coloured candles (thanks wRothbard)
|
||||||
|
35
fishing.lua
@ -26,7 +26,14 @@ local fish_items = {
|
|||||||
{"ethereal:fish_seahorse_blue", "frost_ocean"},
|
{"ethereal:fish_seahorse_blue", "frost_ocean"},
|
||||||
{"ethereal:fish_seahorse_yellow", "desert_ocean"},
|
{"ethereal:fish_seahorse_yellow", "desert_ocean"},
|
||||||
{"ethereal:fish_piranha", "jungle"},
|
{"ethereal:fish_piranha", "jungle"},
|
||||||
{"ethereal:fish_trout", "ocean"}
|
{"ethereal:fish_tuna", "jungle"},
|
||||||
|
{"ethereal:fish_trout", "ocean"},
|
||||||
|
{"ethereal:fish_cod", "ocean"},
|
||||||
|
{"ethereal:fish_flounder", "ocean"},
|
||||||
|
{"ethereal:fish_redsnapper", "ocean"},
|
||||||
|
{"ethereal:fish_squid", "ocean"},
|
||||||
|
{"ethereal:fish_shrimp", "ocean"},
|
||||||
|
{"ethereal:fish_carp", "swamp"}
|
||||||
}
|
}
|
||||||
-- grassland_ocean, desert_ocean, sakura_ocean, mesa_ocean, coniferous_forest_ocean,
|
-- grassland_ocean, desert_ocean, sakura_ocean, mesa_ocean, coniferous_forest_ocean,
|
||||||
-- taiga_ocean, frost_ocean, deciduous_forest_ocean, grayness_ocean, grassytwo_ocean,
|
-- taiga_ocean, frost_ocean, deciduous_forest_ocean, grayness_ocean, grassytwo_ocean,
|
||||||
@ -491,25 +498,33 @@ minetest.register_craft({
|
|||||||
|
|
||||||
local fish = {
|
local fish = {
|
||||||
{"Blue Fin", "bluefin", 2},
|
{"Blue Fin", "bluefin", 2},
|
||||||
{"Blue Ram", "blueram", 2},
|
{"Blue Ram Chichlid", "blueram", 2},
|
||||||
{"Catfish", "catfish", 2},
|
{"Common Carp", "carp", 2},
|
||||||
|
{"Cod", "cod", 2},
|
||||||
|
{"Redtail Catfish", "catfish", 2},
|
||||||
{"Clownfish", "clownfish", 2},
|
{"Clownfish", "clownfish", 2},
|
||||||
{"Pike", "pike", 2},
|
{"Northern Pike", "pike", 2},
|
||||||
{"Flathead", "flathead", 2},
|
{"Dusky Flathead", "flathead", 2},
|
||||||
{"Plaice", "plaice", 2},
|
{"Plaice", "plaice", 2},
|
||||||
{"Pufferfish", "pufferfish", -2},
|
{"Tiger Pufferfish", "pufferfish", -2},
|
||||||
{"Coy", "coy", 2},
|
{"Coy", "coy", 2},
|
||||||
{"Salmon", "salmon", 2},
|
{"European Flounder", "flounder", 2},
|
||||||
{"Cichlid", "cichlid", 2},
|
{"Atlantic Salmon", "salmon", 2},
|
||||||
|
{"Iceblue Zebra Cichlid", "cichlid", 2},
|
||||||
{"Angler", "angler", 2},
|
{"Angler", "angler", 2},
|
||||||
{"Jellyfish", "jellyfish", 0},
|
{"Moon Jellyfish", "jellyfish", 0},
|
||||||
|
{"Pacific Mackerel", "mackerel", 2},
|
||||||
{"Piranha", "piranha", 2},
|
{"Piranha", "piranha", 2},
|
||||||
{"Trout", "trout", 2},
|
{"Rainbow Trout", "trout", 2},
|
||||||
|
{"Red Snapper", "redsnapper", 2},
|
||||||
{"Red Seahorse", "seahorse", 0},
|
{"Red Seahorse", "seahorse", 0},
|
||||||
{"Green Seahorse", "seahorse_green", 0},
|
{"Green Seahorse", "seahorse_green", 0},
|
||||||
{"Pink Seahorse", "seahorse_pink", 0},
|
{"Pink Seahorse", "seahorse_pink", 0},
|
||||||
{"Blue Seahorse", "seahorse_blue", 0},
|
{"Blue Seahorse", "seahorse_blue", 0},
|
||||||
{"Yellow Seahorse", "seahorse_yellow", 0},
|
{"Yellow Seahorse", "seahorse_yellow", 0},
|
||||||
|
{"Yellowfin Tuna", "tuna", 2},
|
||||||
|
{"Humboldt Squid", "squid", 0},
|
||||||
|
{"White Shrimp", "shrimp", 0}
|
||||||
}
|
}
|
||||||
|
|
||||||
for n = 1, #fish do
|
for n = 1, #fish do
|
||||||
|
67
food.lua
@ -582,3 +582,70 @@ minetest.register_craft({
|
|||||||
{"group:food_bowl"}
|
{"group:food_bowl"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
-- boiled shrimp
|
||||||
|
minetest.register_craftitem("ethereal:fish_shrimp_cooked", {
|
||||||
|
description = S("Boiled Shrimp"),
|
||||||
|
inventory_image = "ethereal_fish_shrimp_cooked.png",
|
||||||
|
on_use = minetest.item_eat(2)
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "ethereal:fish_shrimp_cooked 5",
|
||||||
|
recipe = {
|
||||||
|
{"ethereal:fish_shrimp", "ethereal:fish_shrimp", "ethereal:fish_shrimp"},
|
||||||
|
{"ethereal:fish_shrimp", "group:water_bucket", "ethereal:fish_shrimp"},
|
||||||
|
{"", "ethereal:fire_dust", ""}
|
||||||
|
},
|
||||||
|
replacements = {
|
||||||
|
{"group:water_bucket", "bucket:bucket_empty"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
-- jellyfish salad
|
||||||
|
minetest.register_craftitem("ethereal:jellyfish_salad", {
|
||||||
|
description = S("Jellyfish Salad"),
|
||||||
|
inventory_image = "ethereal_jellyfish_salad.png",
|
||||||
|
on_use = minetest.item_eat(6)
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "ethereal:jellyfish_salad",
|
||||||
|
recipe = {
|
||||||
|
{"farming:cutting_board", "ethereal:fish_jellyfish", "group:food_onion"},
|
||||||
|
},
|
||||||
|
replacements = {{"farming:cutting_board", "farming:cutting_board"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
-- raw calamari
|
||||||
|
minetest.register_craftitem("ethereal:calamari_raw", {
|
||||||
|
description = S("Raw Calamari"),
|
||||||
|
inventory_image = "ethereal_calamari_raw.png",
|
||||||
|
on_use = minetest.item_eat(-2)
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "ethereal:calamari_raw 2",
|
||||||
|
recipe = {
|
||||||
|
{"farming:cutting_board", "ethereal:fish_squid"},
|
||||||
|
},
|
||||||
|
replacements = {{"farming:cutting_board", "farming:cutting_board"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
-- cooked calamari
|
||||||
|
minetest.register_craftitem("ethereal:calamari_cooked", {
|
||||||
|
description = S("Calamari"),
|
||||||
|
inventory_image = "ethereal_calamari_cooked.png",
|
||||||
|
on_use = minetest.item_eat(5)
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "ethereal:calamari_cooked",
|
||||||
|
recipe = {
|
||||||
|
{"farming:skillet", "ethereal:calamari_raw", "farming:flour"},
|
||||||
|
},
|
||||||
|
replacements = {{"farming:skillet", "farming:skillet"}}
|
||||||
|
})
|
||||||
|
64
license.txt
@ -22,6 +22,43 @@ THE SOFTWARE.
|
|||||||
|
|
||||||
Textures by TenPlus1 (CC0) unless listed below...
|
Textures by TenPlus1 (CC0) unless listed below...
|
||||||
|
|
||||||
|
Textures by BlueTangs Rock (CC BY-SA 3.0):
|
||||||
|
ethereal_seaweed.png
|
||||||
|
ethereal_fish_angler.png
|
||||||
|
ethereal_fish_bluefin.png
|
||||||
|
ethereal_fish_blueram.png
|
||||||
|
ethereal_fish_carp.png
|
||||||
|
ethereal_fish_catfish.png
|
||||||
|
ethereal_fish_chichlid.png
|
||||||
|
ethereal_fish_clownfish.png
|
||||||
|
ethereal_fish_cod.png
|
||||||
|
ethereal_fish_flathead.png
|
||||||
|
ethereal_fish_flounder.png
|
||||||
|
ethereal_fish_jellyfish.png
|
||||||
|
ethereal_fish_mackerel.png
|
||||||
|
ethereal_fish_pike.png
|
||||||
|
ethereal_fish_piranha.png
|
||||||
|
ethereal_fish_plaice.png
|
||||||
|
ethereal_fish_pufferfish.png
|
||||||
|
ethereal_fish_redsnapper.png
|
||||||
|
ethereal_fish_salmon.png
|
||||||
|
ethereal_fish_shrimp.png
|
||||||
|
ethereal_fish_shrimp_cooked.png
|
||||||
|
ethereal_fish_squid.png
|
||||||
|
ethereal_fish_tuna.png
|
||||||
|
ethereal_fish_trout.png
|
||||||
|
ethereal_sashimi.png
|
||||||
|
ethereal_calamari_raw.png
|
||||||
|
ethereal_calamari_cooked.png
|
||||||
|
|
||||||
|
Texture by Sirrobzeroone (CC0)
|
||||||
|
ethereal_fish_seahorse*.png
|
||||||
|
ethereal_fish_coy.png
|
||||||
|
ethereal_fish_cooked.png
|
||||||
|
|
||||||
|
Textures by Epoxum (CC0)
|
||||||
|
ethereal_sushi_*.png
|
||||||
|
|
||||||
Based on candle textures and coloured by wRothbard (CC0):
|
Based on candle textures and coloured by wRothbard (CC0):
|
||||||
ethereal_candle_black*.png
|
ethereal_candle_black*.png
|
||||||
ethereal_candle_blue*.png
|
ethereal_candle_blue*.png
|
||||||
@ -48,7 +85,7 @@ Based on texture by ElementW (CC BY-SA 3.0):
|
|||||||
|
|
||||||
Based on tree textures by ElementW (CC BY-SA 3.0):
|
Based on tree textures by ElementW (CC BY-SA 3.0):
|
||||||
ethereal_yellow_tree.png
|
ethereal_yellow_tree.png
|
||||||
ethereal_yellow_tree_top.png
|
ethereal_yellow_tree_top.pngethereal_fish_plaice.png
|
||||||
ethereal_frost_tree.png
|
ethereal_frost_tree.png
|
||||||
ethereal_frost_tree_top.png
|
ethereal_frost_tree_top.png
|
||||||
ethereal_scorched_tree.png
|
ethereal_scorched_tree.png
|
||||||
@ -94,31 +131,6 @@ Textures by Isaiah658 (CC0)
|
|||||||
ethereal_lemonade.png
|
ethereal_lemonade.png
|
||||||
ethereal_bamboo.png
|
ethereal_bamboo.png
|
||||||
|
|
||||||
Textures by SaKeL (CC-BY-SA-4.0)
|
|
||||||
ethereal_fish_bluefin.png
|
|
||||||
ethereal_fish_blueram.png
|
|
||||||
ethereal_fish_catfish.png
|
|
||||||
ethereal_fish_clownfish.png
|
|
||||||
ethereal_fish_flathead.png
|
|
||||||
ethereal_fish_pike.png
|
|
||||||
ethereal_fish_plaice.png
|
|
||||||
ethereal_fish_pufferfish.png
|
|
||||||
ethereal_fish_redsnapper.png
|
|
||||||
ethereal_fish_salmon.png
|
|
||||||
ethereal_fish_trout.png
|
|
||||||
ethereal_fish_piranha.png
|
|
||||||
ethereal_fish_angler.png
|
|
||||||
ethereal_fish_jellyfish.png
|
|
||||||
ethereal_fish_chichlid.png
|
|
||||||
|
|
||||||
Texture by Sirrobzeroone (CC0)
|
|
||||||
ethereal_fish_seahorse*.png
|
|
||||||
ethereal_fish_coy.png
|
|
||||||
ethereal_fish_cooked.png
|
|
||||||
|
|
||||||
Textures by Epoxum (CC0)
|
|
||||||
ethereal_sushi_*.png
|
|
||||||
|
|
||||||
Created by XSSheep (CC BY-SA 4.0 - https://minecraft.curseforge.com/projects/pixel-perfection-freshly-updated)
|
Created by XSSheep (CC BY-SA 4.0 - https://minecraft.curseforge.com/projects/pixel-perfection-freshly-updated)
|
||||||
default_apple_gold.png
|
default_apple_gold.png
|
||||||
|
|
||||||
|
BIN
textures/ethereal_calamari_cooked.png
Normal file
After Width: | Height: | Size: 175 B |
BIN
textures/ethereal_calamari_raw.png
Normal file
After Width: | Height: | Size: 172 B |
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 201 B After Width: | Height: | Size: 286 B |
Before Width: | Height: | Size: 217 B After Width: | Height: | Size: 290 B |
BIN
textures/ethereal_fish_carp.png
Normal file
After Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 281 B |
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 280 B |
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 270 B |
BIN
textures/ethereal_fish_cod.png
Normal file
After Width: | Height: | Size: 239 B |
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 245 B |
BIN
textures/ethereal_fish_flounder.png
Normal file
After Width: | Height: | Size: 272 B |
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 269 B |
BIN
textures/ethereal_fish_mackerel.png
Normal file
After Width: | Height: | Size: 243 B |
Before Width: | Height: | Size: 188 B After Width: | Height: | Size: 250 B |
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 283 B |
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 284 B |
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 292 B |
BIN
textures/ethereal_fish_redsnapper.png
Normal file
After Width: | Height: | Size: 250 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 237 B |
BIN
textures/ethereal_fish_shrimp.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
textures/ethereal_fish_shrimp_cooked.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
textures/ethereal_fish_squid.png
Normal file
After Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 262 B |
BIN
textures/ethereal_fish_tuna.png
Normal file
After Width: | Height: | Size: 318 B |
BIN
textures/ethereal_jellyfish_salad.png
Normal file
After Width: | Height: | Size: 303 B |
Before Width: | Height: | Size: 485 B After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 506 B After Width: | Height: | Size: 213 B |