[WIP] Samhain Mod [0.1]

User avatar
Gambit
Member
 
Posts: 452
Joined: Sat Oct 29, 2011 19:31

[WIP] Samhain Mod [0.1]

by Gambit » Sun Oct 13, 2013 01:44

This is the Samhain Mod

Image

This mod is designed much like Glowstone from Minecraft only there are two kinds of stones. The first is Sol and the other is Luna. Sol is reference to the sun while Luna is obviously reference to the moon. These two sets are of course in different colors.

To make these stones, you much venture deep into the earth to find minerals, which are dust. Crafting the dust together will make either Sol Stone or Luna Stone. Both omit light source. Not much are different unless you craft the main recipe, Solidus and Lunavesta. These require 8 Sol/Luna Stones and 1 Obsidian. These main stones aren't much different than the normal stones, just be careful where you place Solidus.

Solidus and Lunavesta are designed to act differently. Lunavesta can only put out fire, however I originally wanted it to freeze nearby water into ice. Until I can figure that out along with your guys n' gals help, maybe it could.

So enjoy the mod for what it's worth... oh one more thing... the ores glow so they're not to hard to spot in the dark.

This will be extended further than glowstone in the coming future


Download:


Crafting Recipe:
Image

Licensed: WTFPL
Last edited by Gambit on Sun Feb 09, 2014 10:46, edited 1 time in total.
Current Projects: MineToon | PixelBOX
Gambit's Checkmate Server - 43.65.296.232 - port: 30001
 

User avatar
Chinchow
Member
 
Posts: 683
Joined: Tue Sep 18, 2012 21:37

by Chinchow » Sun Oct 13, 2013 01:53

Looks nice good name choices
Sometimes, it's harder to think up a mod than it is to create it.
Mods: Orichalcum Stonebricks Extra Chests
 

User avatar
Ikishida
Member
 
Posts: 107
Joined: Sat Aug 17, 2013 08:02

by Ikishida » Wed Oct 16, 2013 11:39

The names kinda reminds me of the roman gods(or greek gods) anime i used to watch hehe...
Luna-the Goddess of Moon
Sol-the God of Sun

Lol
When life hands you lemons,throw it back at life saying "I don't need your goddamn lemons!" =D
 

User avatar
kaeza
Member
 
Posts: 2141
Joined: Thu Oct 18, 2012 05:00
GitHub: kaeza
IRC: kaeza diemartin blaaaaargh
In-game: kaeza

by kaeza » Wed Oct 16, 2013 12:16

Gambit wrote:however I originally wanted it to freeze nearby water into ice. Until I can figure that out along with your guys n' gals help, maybe it could.

Something like this should work (untested):

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_abm({
    nodenames = {"samhain:lunavesta"},
    neighbors = {"default:water_source"},
    interval = 5.0,
    chance = 1, -- (chance of trigger is 1.0/this)
    action = function(pos)
        minetest.set_node(pos, {name="default:ice"})
    end,
})
Last edited by kaeza on Wed Oct 16, 2013 12:16, edited 1 time in total.
Your signature is not the place for a blog post. Please keep it as concise as possible. Thank you!

Check out my stuff! | Donations greatly appreciated! PayPal | BTC: 1DFZAa5VtNG7Levux4oP6BuUzr1e83pJK2
 

leetelate
Member
 
Posts: 205
Joined: Thu Aug 29, 2013 18:07

by leetelate » Wed Oct 16, 2013 15:58

kaeza wrote:
Gambit wrote:however I originally wanted it to freeze nearby water into ice. Until I can figure that out along with your guys n' gals help, maybe it could.

Something like this should work (untested):

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_abm({
    nodenames = {"samhain:lunavesta"},
    neighbors = {"default:water_source"},
    interval = 5.0,
    chance = 1, -- (chance of trigger is 1.0/this)
    action = function(pos)
        minetest.set_node(pos, {name="default:ice"})
    end,
})


and the lunavesta turns to ice lol
btdt in the gespensterwald mod, turned everything to pumpkin
you have to use find_nodes_in_area for default:water source around the original pos of the lunavesta and set those to what you want
niceu names - i like them, and samhain!
MT IS MC'S SMARTER BROTHER
minetest 0.4.8 compiled from latest git on linux mint 15 with qjoypad and wired 360 controller
freeminer, pilztest, buildcraft and next are the idea factories
my minetest page is http://1337318.zymichost.com if zymic isn't down - meh, it is free...
 

User avatar
Gambit
Member
 
Posts: 452
Joined: Sat Oct 29, 2011 19:31

by Gambit » Wed Oct 16, 2013 21:01

Hybrid Dog wrote:This might work:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_abm({
    nodenames = {"samhain:lunavesta"},
    neighbors = {"default:water_source"},
    interval = 5,
    chance = 1,
    action = function(pos)
        for i = -1,1,2 do
             for _,p in ipairs({
                  {x=pos.x+i, y=pos.y, z=pos.z},
                  {x=pos.x, y=pos.y+i, z=pos.z},
                  {x=pos.x, y=pos.y, z=pos.z+i}
             } do
                  if minetest.get_node(p).name == "default:water_source" then
                       minetest.set_node(p, {name="default:ice"})
                  end
             end
         end
    end
})


I actually had to add ) just for it to work, but it does the job. Thanks. Also I was wondering is it possible to add-
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
if minetest.get_node(p).name == "default:dirt_with_grass" then
   minetest.set_node(p, {name="default:_dirt_with_snow"})

-in along with the code above or do you have to make a separate set? I've tried to merge them to save space but it's a little more complicated than I thought. I've tried-

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
neighbors = {"default:water_source","default:dirt_with_grass"},


Also I'm thinking of turning default:stone turning into default:lava_source if near Solidus. What do you guys think?
Last edited by Gambit on Wed Oct 16, 2013 21:05, edited 1 time in total.
Current Projects: MineToon | PixelBOX
Gambit's Checkmate Server - 43.65.296.232 - port: 30001
 

User avatar
Gambit
Member
 
Posts: 452
Joined: Sat Oct 29, 2011 19:31

by Gambit » Sun Feb 09, 2014 10:44

I made some minor tweaks with this mod. The Lunavesta can freeze nearby water (source/flowing) and did some adjustent to the generation for the ores.

One thing I do plan to do is add to the mod than just glowstones. Time will tell. And it won't be tools, that nonsense is getting too repetitive.
Current Projects: MineToon | PixelBOX
Gambit's Checkmate Server - 43.65.296.232 - port: 30001
 

User avatar
jp
Member
 
Posts: 705
Joined: Wed Dec 18, 2013 09:03
GitHub: kilbith

Re: [WIP] Samhain Mod [0.1]

by jp » Wed Aug 26, 2015 08:18

By any luck, someone kept a copy of that mod ? The D/L link is 404.
 

CWz
Member
 
Posts: 185
Joined: Tue Dec 24, 2013 17:01

Re: [WIP] Samhain Mod [0.1]

by CWz » Wed Aug 26, 2015 08:34

jp wrote:By any luck, someone kept a copy of that mod ? The D/L link is 404.


I have a copy and I uploaded it to github

Github link
 

User avatar
jp
Member
 
Posts: 705
Joined: Wed Dec 18, 2013 09:03
GitHub: kilbith

Re: [WIP] Samhain Mod [0.1]

by jp » Wed Aug 26, 2015 08:37

Thanks a lot ! You made my day ;)
 


Return to WIP Mods

Who is online

Users browsing this forum: No registered users and 53 guests

cron