Log In  

Cart #mozonogozi-0 | 2020-07-14 | Code ▽ | Embed ▽ | No License
19

Hi, friends!

I've just finished my first ever video game!

I just want to thank this entire community for existing and being so helpful and friendly. I discovered Pico-8 in April; at the peak of COVID-19 hitting my hometown, and in the depths of a massive depression brought on by isolation/lack of work/personal losses from the pandemic. It's been a lifelong dream to make a game, but I never thought I'd ever actually accomplish it, and making a little progress on this project each day feels like one of the few things that has really kept me going. So, thank you all!!!

Special thanks to @Liquidream for leading me here in the first place, and being kind enough to do some playtesting and providing lots of helpful feedback along the way. Also thanks to @MBoffin for their zine, which got me started, and for feedback in the forums when I was trying to figure out managing game state.

Also, I have a resprite with (better?) music up on itch.io:
https://ridgek.itch.io/killer-kegs

I think I'm here to stay! On to the next one!

P#79308 2020-07-14 11:00 ( Edited 2020-07-14 11:04)

I don't get the context but a game with kick-ass music and the enemy is storage containers? Perfection ^_^

P#79312 2020-07-14 11:28
1

@SmellyFishstiks Oh, right, lol! It's a joke based on the intro to the Star Trek: TNG episode, "Ethics", in which Worf faces his most powerful enemy: https://www.youtube.com/watch?v=eBSSZgg_QvI Also, omg, thank you!!! :D

P#79313 2020-07-14 11:33
2

Hey @ridgekuhn,
You're very welcome.
Congrats on the (double 😲) release! 🥳🎉

As mentioned above - I was fortunate to get early access to this game and provide a few suggestions, but all the work was already done by @ridgekuhn, and what a great job you did! 👏

Hope to see what else you come up with in future (sounds like you've been bitten by the GameDev bug! 😉)

P#79314 2020-07-14 11:45
1

bit so hard, lol!

P#79316 2020-07-14 14:40
3

This is so, so well done. The pixel art, the gameplay, the music, everything. I cracked up at the "spine" being your health. 🤣🤣🤣 Nice work!

P#79322 2020-07-14 17:14
1

truly epic

P#79327 2020-07-14 19:20
1

How did you get there title screen artwork into pico 8? Were you able to make it elsewhere and import it somehow?

Excellent game btw.

P#79331 2020-07-14 20:02

@MBoffin omg thank you so much!!! 😭😭😭

@Mikesta Thank you! I used this great little tool on GitHub, which converts an image to data and provides a draw function: https://github.com/nodepond/pic2pico/

The catches are: it eats up 16,384 characters; and the image has to be pre-prepared at 128x128 and already using the P8 palette. (It probably also consumes a lot of resources to draw, but I never output any stats for it since it seems to work okay for just the title screen.) Prepping the image is sorta quick in Photoshop, the workflow I came up with looks like:

  1. Crop the image to square aspect ratio at full resolution

  2. Lighten up levels and contrast a lot, color grade so the primaries (RGB/CMY) pop out, then oversaturate.

  3. Crush down to 128x128 using whatever resampling algorithm looks best

  4. Set image mode to indexed color using this custom color table I made, and apply whatever dithering algorithm looks best

  5. Re-paint the result as needed

Good luck! :)

P#79341 2020-07-14 23:45
1

Hilarious.

P#79538 2020-07-18 04:20
1

@ridgekuhn - Great game, cool artwork and amazing music!
Well done!

P#79542 2020-07-18 06:06

@apLundell Thank you! :D

@spellcaster Thank you so much!!! btw, I'm definitely interested in your background images w/o tiles project! I mentioned a tool above which I used to draw the title screen for this, but it consumes 16,384 characters and is a bummer because it prevented me from storing Luadoc-like documentation inline. Looks like yours compresses the image? (I wish I could help with it, but Python isn't really in my stack. 😞)

P#79550 2020-07-18 10:40

I'd like to give it a try - can you send me the image, and I can post the code to render it.

I need to test it with a couple of more images anyway. And add a better command line interface.

Right now I have to change the code to change stuff (which blows) and I'd also like to see if I can get the character count down (although it should be way less than the 16k you mentioned already).

P#79553 2020-07-18 11:48

@spellcaster Thank you so much for offering, but I'm mostly interested for the future. I'm refactoring/decoupling the engine from the game this weekend; but other than that, I consider it done at this point, so I don't want to make you go through all that for nothing!

P#79583 2020-07-18 21:39

That's a good point.
I can clean up the python code a bit and put it on GitHub.
The actual pico 8 code is minimal, so adding it to your future projects should be easy.

P#79598 2020-07-19 09:15

@spellcaster I'll be grateful if you do! I've been a web developer for well over a decade, but Pico-8 and making this game have opened up whole new worlds for me and I feel curious about things I've never had too think too much about before, like bit level programming, image processing, etc. I'm sure I'd learn a lot from it!

P#79599 2020-07-19 10:50

@ridgekuhn

You can find the RLE encoder script and the fucntion to draw the RLE images here: https://github.com/iSpellcaster/pico8rle

P#79628 2020-07-19 20:03

@spellcaster wow, thanks so much! I imagine I'll be making use of this very soon!!!

P#79631 2020-07-19 20:39
1

Great work! Lovely charming pixel art, and high energy gameplay, not to mention a catchy tune!. Love seeing lil' Worf skidding around avoiding those barrels. It'd be great if you could see early where barrels were going to come in from the top of the screen sometimes as some seemed unavoidable. But loved the different barrel types being introduced, and the chaos upon death.

Well done!

P#80044 2020-07-28 19:17

@chowyunbrent Thanks so much! I think the gravitational constant is maybe a little too strong, or the spawn location needs a little adjusting. They never spawn directly on top of you, but they do spawn based on where you were a few frames earlier, rather than where u are now, which means that they totally “spawn” on top of you sometimes, lol! I’ll probably make an adjustment if I ever do an update release. In the meantime, if you keep an eye on the floor, the shadow appears as soon as the barrel is rendered, which gives u just enough time to hit the slide button to get out of the way. Anyway, thanks again for playing and for your kind words!

P#80051 2020-07-28 20:41
1

@ridgekuhn - oh, that's easy to fix. <Q-voice>all you need to do is to change the gravitational constant of the universe... um.. the game</Q-voice>

P#80057 2020-07-28 21:31
P#80060 2020-07-28 22:29

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 12:10:25 | 0.231s | Q:57