Add end portal buckets code and screenshot
This commit is contained in:
parent
54ebfda498
commit
616150380e
|
@ -0,0 +1,22 @@
|
|||
local S = minetest.get_translator(minetest.get_current_modname())
|
||||
|
||||
minetest.override_item("mcl_portals:portal_end", {
|
||||
liquidtype = "source",
|
||||
liquid_alternative_flowing = "mcl_portals:portal_end",
|
||||
liquid_alternative_source = "mcl_portals:portal_end",
|
||||
liquid_renewable = false,
|
||||
liquid_range = 0,
|
||||
})
|
||||
|
||||
mcl_buckets.register_liquid({
|
||||
bucketname = "mcl_end_portal_bucket:end_portal_bucket",
|
||||
source_place = function(pos)
|
||||
return "mcl_portals:portal_end"
|
||||
end,
|
||||
source_take = {"mcl_portals:portal_end"},
|
||||
inventory_image = "mcl_end_portal_bucket_bucket.png",
|
||||
name = S("Bucket of End Portal"),
|
||||
londesc = S("This bucket contains end portal which can be placed."),
|
||||
usagehelp = S("Place it to empty the bucket and place an end portal."),
|
||||
tt_help = S("Used to place end portal."),
|
||||
})
|
|
@ -0,0 +1,4 @@
|
|||
Bucket of End Portal=
|
||||
This bucket contains end portal which can be placed.=
|
||||
Place it to empty the bucket and place an end portal.=
|
||||
Used to place end portal.=
|
4
mod.conf
4
mod.conf
|
@ -1,3 +1,7 @@
|
|||
name = mcl_end_portal_bucket
|
||||
title = End Portal Buckets for MineClone 2
|
||||
author = PrairieWind, FossFanatic
|
||||
description = Adds an easy way to carry the end portal where ever you go in MineClone2.
|
||||
depends = mcl_buckets
|
||||
supported_games = mineclone2
|
||||
unsupported_games = mineclone5
|
Binary file not shown.
After Width: | Height: | Size: 658 KiB |
Loading…
Reference in New Issue