I would like it in SMB, SMB2, SMB3, and SMW styles. Give the options to set whether or not they will create lava puddles or explode. They should activate bob-ombs once hit, and be destroyed by invincible mario/other characters. large volcanic debris should be able to go through multiple blocks before being shattered, however, the lava variants should create lava geysers upon hitting the bottom of the screen, or lava. (though this is my own original idea; they arent associated with lava geysers in the base games)
you should be able to place both a volcano background object that acts as a generator and the rocks themselves, as well as the geysers.
Re: (request) Volcanic Debris
Posted: Sat Oct 24, 2020 8:56 pm
by DrMekar
Oh Boy, good Luck finding anyone willing to do sich a complex request..
Re: (request) Volcanic Debris
Posted: Sat Oct 24, 2020 10:08 pm
by Chipss
I am laughing at how you actually think someone would just nonchalantly take on such a big request. I thought you would figure out by now that forum requests rarely get fulfilled, and because of the complexity of this one, you might as well just forget about it...
Re: (request) Volcanic Debris
Posted: Sun Oct 25, 2020 4:10 am
by Emral
Making a spawner is actually reeeeally easy. I made a spawner system for future SMBX2 versions recently and it only is like 50 lines per spawner. Fundamentally speaking you can take this code and just change the spawn location, speeds and npc id by tweaking some numbers. For something volcanic, the reznor or ludwig fireball could be a good vanilla option.
local cams = {{enabled = true, timer = 0, delay = 200}, {enabled = true, timer = 0, delay = 200}}
function onTickEnd()
if Defines.levelFreeze then return end
for k,v in ipairs(Camera.get()) do
local c = cams[v.idx]
if c.enabled then
c.timer = c.timer + 1
if c.timer % c.delay == 0 then
local y = v.y
local p = Player.getNearest(v.x + 0.5 * v.width, v.y + 0.5 * v.height)
local n = NPC.spawn(282, v.x + RNG.random(0, 800), y, p.section, false, true)
n.speedY = 4
n.layerName = "Spawned NPCs"
end
end
end
end
Re: (request) Volcanic Debris
Posted: Mon Oct 26, 2020 4:17 pm
by TheGameyFireBro105
I really want something that explodes, without having to be set as a projectile; like a peach bomb with water physics that hurts you.