Log In  
Follow
andrewedstrom

Cart #boom_v0_1-0 | 2023-08-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

An unfinished remake of the shareware game Boom, which was a bizarre combination of Bomberman and Doom.

Arrows to move, x to drop a bomb.

If you're interested in playing an extremely faithful fan remake of BOOM, check out Silverweed's awesome BOOM remake!

Full code on Github if you want to see it broken up into multiple files.

3
1 comment



I'm not 100% sure but I think I found a bug related to PAL and sprite fill patterns. The manual says

PAL() resets to system defaults (including transparency values and fill pattern)

However, the following cart shows that PAL does not clear out the fill pattern applied to sprites.

Cart #fill_pattern_is_not_reset-0 | 2021-03-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Here's the code for that cart. Note that you have to uncomment fillp() in order to reset the fill pattern.

function _draw()
	cls()
	pal()
	--fillp()
	sspr(8,0,8,8,10,10,24,24)
	sspr(16,0,8,8,10,40,24,24)
	fillp(0b1111111111111111.01)
	sspr(8,0,8,8,70,10,24,24)
	sspr(16,0,8,8,70,40,24,24)
end

Please let me know if I'm misunderstanding something! It could be that this is expected behavior and I just misread the docs.

0 comments



Cart #kitten_cannon-3 | 2021-02-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

A non-violent remake of the classic flash game Kitten Cannon.

Aim the cannon with the up and down arrows, and fire with x/z to try to get your little stunt kitten to go as far as possible!

Links

Old Versions


v0.3
Cart #kitten_cannon-2 | 2020-11-29 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

v0.2

Cart #kitten_cannon-1 | 2020-11-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

v0.1

Cart #kitten_cannon-0 | 2020-11-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7


7
4 comments



Cart #tweettweetjamsnake-0 | 2020-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

Just a simple little snake clone for TweetTweetJam 5. Use the arrow keys to move!

I'm already well under the 560 character limit for the jam, but if anyone has ideas about how I could further compress this I'd love to hear! This is my first time ever making a tweetcart. I'm sure there's still a lot I could do to reduce the character count!

4
1 comment



Picolumia

Cart #picolumia-0 | 2020-10-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
100

A demake of Mixolumia. Thanks to the wonderful davemakes for giving me permission to do this!

The goal is to reach level 15 by clearing 450 blocks. If the board fills up you lose.

You clear blocks in 2 ways:

  • getting 3 or more blocks of the same color in a straight line
  • putting 4 blocks of the same color together to make a diamond

Controls

⬅️/➡️

  • move current quad left or right

⬇️

  • hard drop current quad to the bottom of the board

❎ (z/c/n)

  • rotate counter clockwise

🅾️ (x/v/m)

  • rotate clockwise

Press ❎ + 🅾️ to start the game!

[ Continue Reading.. ]

100
9 comments



Fruititarian Snecko

Cart #fruititariansnecko-0 | 2020-07-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Just a simple snake clone made in an afternoon! Eat many fruits to get big and strong. But don't trip over your own tail or fall off the edge of the world in the process!

Controls

Arrow keys - move

3
0 comments



Space Race

Cart #spacerace-2 | 2020-07-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Your private space company SpicoX must successfully deliver 10 rockets to orbit
to win a government contract. Along the way, each rocket will have to dodge its
way through an ever-growing field of space
debris.

As a private space startup, money is tight. Your company only has enough
funding to lose 3 rockets. Any more and you will run out of money and be forced
out of business.

Controls

Up and down arrow keys - control your spaceship.

6
3 comments