[MOD] Home Blocks [home_blocks]

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

[MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

Home_blocks is my first mod for Minetest, inspired by xdecor. It adds some nodes to make buildings with.
If my topic or anything needs edits, feedback is appreciated.

Image
Image
Image
Image
The mod currently contains:
- Stone Table
- Desert Stone Table
- Lightbulb (on and off)
- Clay Pot
- Wooden Crate (No inventory yet)
- Ice Brick
- Rough Stone
- Pathstone
- Arrow Stone
- Spotted Stone
- Rope Ladder
- Shingles
- Tin Roofing
- Wooden Tables
- Chandeliers, Copper, Steel, and Gold
- Chains, Copper, Steel, and Gold
- Bonzai trees, red, pink, and green
- Every color carpet there is for wool
- Tiki Torches
- Un-functional Music box
- Gold Brick
- Mese Brick
-Picket Fence
-Cardboard Box
I'm open to node suggestions; I really need them!

Download
Rename to "home_blocks" and place in mods directory, found in the minetest_game folder in most versions.

Credits: GamingAssociation39 (Fixing table node)
License: MIT
Version: 1.0
Depends: default, wool, dye, farming (all already in game)
Attachments
screenshot_20190505_155523.png
screenshot_20190505_155523.png (1002.96 KiB) Viewed 1578 times
Last edited by SteveDaSteve on Sun May 05, 2019 20:10, edited 24 times in total.

User avatar
Stix
Member
Posts: 1385
Joined: Fri Aug 04, 2017 14:19
IRC: nil
In-game: Stix [+alts]
Location: USA

Re: [MOD] Home Blocks [home_blocks]

by Stix » Post

Hi! im rlly glad someone is making a new decor mod that is lightweight and fits into the minetest theme, so ill give you some ideas: Furnace-Slab, Chest-Slab, Tables for every stone type, Carpet, Wood-Table, and Paintings, and a Workbench.

Ill try to think of more later.
Hey, what can i say? I'm the bad guy.

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

Stix wrote:Hi! im rlly glad someone is making a new decor mod that is lightweight and fits into the minetest theme, so ill give you some ideas: Furnace-Slab, Chest-Slab, Tables for every stone type, Carpet, Wood-Table, and Paintings, and a Workbench.

Ill try to think of more later.
Thanks! The furnace-slab is not a bad idea, I may add it if I can figure out half-blocks. These ideas are good, and if you get good ideas I'd love to hear!
Home_Blocks Mod- The default texture block-adding mod

entuland
Member
Posts: 123
Joined: Wed May 09, 2018 15:47
GitHub: entuland
IRC: entuland
In-game: entuland

Re: [MOD] Home Blocks [home_blocks]

by entuland » Post

SteveDaSteve wrote:
Stix wrote:Hi! im rlly glad someone is making a new decor mod that is lightweight and fits into the minetest theme, so ill give you some ideas: Furnace-Slab, Chest-Slab, Tables for every stone type, Carpet, Wood-Table, and Paintings, and a Workbench.

Ill try to think of more later.
Thanks! The furnace-slab is not a bad idea, I may add it if I can figure out half-blocks. These ideas are good, and if you get good ideas I'd love to hear!
Half blocks can be achieved with meshes or with this:
https://rubenwardy.com/minetest_modding ... ml#nodebox

A stair is pretty much a slab plus half a slab, to only get the slab you change this:

Code: Select all

      fixed = {
            {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
            {-0.5, 0, 0, 0.5, 0.5, 0.5},
        },
into this:

Code: Select all

      fixed = {
            {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
        },
Much more there in that handy guide (a NodeBox editor is linked there in the very section I pointed out).

Have fun modding :)

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

Thanks entuland! I did check out that handbook, but that'll help me out. Do I have to do anything special to the textures for a half node?
Home_Blocks Mod- The default texture block-adding mod

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Added Desert Stone Table, topic yet to be updated.
Home_Blocks Mod- The default texture block-adding mod

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Added something "cool"... The Ice Brick!
Home_Blocks Mod- The default texture block-adding mod

entuland
Member
Posts: 123
Joined: Wed May 09, 2018 15:47
GitHub: entuland
IRC: entuland
In-game: entuland

Re: [MOD] Home Blocks [home_blocks]

by entuland » Post

SteveDaSteve wrote:Thanks entuland! I did check out that handbook, but that'll help me out. Do I have to do anything special to the textures for a half node?
You're welcome :)
I didn't fiddle a lot with non-mesh types of blocks. My guess is that any nodeblock part will use textures from the various sides automatically, side textures should get properly "stamped" on each nodeblock side regardless of the nodeblock exact boundaries.

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Add Ice Brick Slabs
Home_Blocks Mod- The default texture block-adding mod

User avatar
Stix
Member
Posts: 1385
Joined: Fri Aug 04, 2017 14:19
IRC: nil
In-game: Stix [+alts]
Location: USA

Re: [MOD] Home Blocks [home_blocks]

by Stix » Post

Already this little mod is promising to be the best decor mod in a while, keep up the good work.
Hey, what can i say? I'm the bad guy.

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

Stix wrote:Already this little mod is promising to be the best decor mod in a while, keep up the good work.
Thanks! I hope it becomes as big as xdecor or at least a lot of content!
Home_Blocks Mod- The default texture block-adding mod

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Introducing: The Path Stone! A animated stone bordered by glowing symbols on both sides! Gives off light! (Image yet to be updated)
Home_Blocks Mod- The default texture block-adding mod

User avatar
Stix
Member
Posts: 1385
Joined: Fri Aug 04, 2017 14:19
IRC: nil
In-game: Stix [+alts]
Location: USA

Re: [MOD] Home Blocks [home_blocks]

by Stix » Post

SteveDaSteve wrote:UPDATE: Introducing: The Path Stone! A animated stone bordered by glowing symbols on both sides! Gives off light! (Image yet to be updated)
If its animated then i think a GIF alongside your image would be best :)
Hey, what can i say? I'm the bad guy.

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

Can you record gifs from the minutest game? If not, I could upload the texture.
Home_Blocks Mod- The default texture block-adding mod

entuland
Member
Posts: 123
Joined: Wed May 09, 2018 15:47
GitHub: entuland
IRC: entuland
In-game: entuland

Re: [MOD] Home Blocks [home_blocks]

by entuland » Post

SteveDaSteve wrote:Can you record gifs from the minutest game? If not, I could upload the texture.
I suppose you're using frames put vertically on a single texture, they can be easily converted to GIFs.

You could as well capture a small clip and have it converted to a GIF to show the effect in the game, but the GIF made out of the texture will be fine.

If you have updated your links with it I could do that myself if you want.

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

entuland wrote:
SteveDaSteve wrote:Can you record gifs from the minutest game? If not, I could upload the texture.
I suppose you're using frames put vertically on a single texture, they can be easily converted to GIFs.

You could as well capture a small clip and have it converted to a GIF to show the effect in the game, but the GIF made out of the texture will be fine.

If you have updated your links with it I could do that myself if you want.
I'm using piskelapp.com, so I could download a gif directly from there, but thanks for the offer.
Home_Blocks Mod- The default texture block-adding mod

entuland
Member
Posts: 123
Joined: Wed May 09, 2018 15:47
GitHub: entuland
IRC: entuland
In-game: entuland

Re: [MOD] Home Blocks [home_blocks]

by entuland » Post

SteveDaSteve wrote:
entuland wrote:
SteveDaSteve wrote:Can you record gifs from the minutest game? If not, I could upload the texture.
I suppose you're using frames put vertically on a single texture, they can be easily converted to GIFs.

You could as well capture a small clip and have it converted to a GIF to show the effect in the game, but the GIF made out of the texture will be fine.

If you have updated your links with it I could do that myself if you want.
I'm using piskelapp.com, so I could download a gif directly from there, but thanks for the offer.
Ah nice :)

For anyone else who may like to know, one such thing is easily done with imagemagick, this is what could be done with the texture at hand, taken from the repo linked in the OP:

Code: Select all

magick home_blocks_pathstone.png -crop 16x16 +repage home_blocks_pathstone.gif

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Added Rough stone, and new glowing stones: Spotted and Arrow variants.
Home_Blocks Mod- The default texture block-adding mod

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Small changes in Path, Arrow, and Spot stone textures.
Home_Blocks Mod- The default texture block-adding mod

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Rope Ladders are here!
Home_Blocks Mod- The default texture block-adding mod

User avatar
Stix
Member
Posts: 1385
Joined: Fri Aug 04, 2017 14:19
IRC: nil
In-game: Stix [+alts]
Location: USA

Re: [MOD] Home Blocks [home_blocks]

by Stix » Post

SteveDaSteve wrote:UPDATE: Rope Ladders are here!
Cool, could you update the screenie? :)

BTW: Im lovin the new updates, i hope this will get put to work on some servers soon!
Hey, what can i say? I'm the bad guy.

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

Screenshot updated, thanks for the reminder and your support!
Home_Blocks Mod- The default texture block-adding mod

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

UPDATE: Roof Shingles! (And a not fully done table but Its not ready yet.)
Home_Blocks Mod- The default texture block-adding mod

User avatar
ChimneySwift
Member
Posts: 320
Joined: Fri Sep 22, 2017 06:46
GitHub: ChimneySwift
IRC: ChimneySwift
In-game: ChimneySwift
Location: 127.0.0.1

Re: [MOD] Home Blocks [home_blocks]

by ChimneySwift » Post

This is a nice little set of blocks.

I think it would be cool if the crate's future inventory was serialized and saved as item metadata when you pick it up, then put back when you place it, so it could actually be used for transporting stuff
A spoon is basically a tiny bowl with a stick on it

User avatar
SteveDaSteve
Member
Posts: 80
Joined: Fri Jun 22, 2018 19:06
GitHub: SteveDaSteve

Re: [MOD] Home Blocks [home_blocks]

by SteveDaSteve » Post

ChimneySwift wrote: I think it would be cool if the crate's future inventory was serialized and saved as item metadata when you pick it up, then put back when you place it, so it could actually be used for transporting stuff
Thats a nice idea, it would be like a shulkerbox in minecraft.
Home_Blocks Mod- The default texture block-adding mod

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 35 guests