FoonLudum Dare ExplorerLD36 → Buy The Moon

Buy The Moon

By notruespaceman

View on Wayback Machine

CategoryRankScoreCount

Comments

imogiagames 2016-08-29 09:54

Hi, nice little game, it's perfect for waiting while the other ld games are loading! The steps for building an empire are funly named.

temmytemjin 2016-08-29 09:57

Nice and simple. What sort of empire wouldn't try and buy the moon (a lame empire, that's who). Hope you had fun learning new things!

qwaklak 2016-08-29 09:57

1000 Double robots, 1000 factiories, 1000 sweatshops, 100 islands,10 guys corrupted, 1 moon after secends
That's how realy work Economy.btw. moon costs a lot of money. :D http://screenshot.sh/ovY9pfa9nHxVu

wowods 2016-08-29 15:34

I don't want to go 'to the moon', I will 'buy the moon'.

Great little game to waste your time ;)

toeboe 2016-08-30 01:42

I'm kind of a sucker for clicker games. Broke a mouse on Clicker Heroes.
I quite enjoyed this one! Ludum Dare is a bold way to learn a new stack, you brave soul you.
The game was fun. I've always wanted to own the moon.
Thank you!

bendev 2016-08-31 02:57

Nice and chill game. Clicker games are not my type of game but i had fun buying a moon. Congrats and hope you had fun learning new things.

cortica 2016-08-31 03:31

Nice game, makes you want to know what appears next, but there's a bug where u can see what is next if you try to select the text from the blanks (i guess the text is there but white?)

bestnickname 2016-08-31 06:10

Interesting game. Unless I am mistaken, are some of the more expensive options objectively worse than the cheaper ones? For example a factory makes 1 dollar every 4 seconds(so 2 every 8) whereas a double robot makes 2 every 6.

oostap 2016-08-31 11:15

Interesting, but I can't get why more expensive options are worse them cheaper ones :)

hippolyta 2016-08-31 16:02

Wohhooo I got my Moon, but my fingers huert^^.

gonutz 2016-08-31 17:03

That's a nice little clicker right there. Simple yet effective.
Learning something new is always a good thing, kudos for creating something and sharing the code (I especially like that it is on a code sharing web site and not a .zip download). Keep it up!

gonutz 2016-08-31 18:33

OK now I played it again and got to the moon in 244 seconds.
https://msdn.microsoft.com/en-us/library/ms646310.aspx

2016-08-31 20:16

A fun little game, if you happen to have endless clicking stamina ~ I'd like some music to keep me company, maybe a pretty background. Anyhow, good job.

notruespaceman 2016-08-31 21:11

Thanks for the reviews everyone!

@BestNickname - Some more expensive things are 'worse' as a way to keep you on your toes! It means you have to do a little math to figure things out.

@cortica - Yep, the text is still there. I wanted to hide the text and it was a super easy way to "hide" it. I should have added a method to show/hide the text but I was in a rush!

@Cody Hansen - I actually learned a _ton_ by being 'thrown into the fire' for this one. It resulted in a less fancy game, but next time I'll have a good project start.

martinfernandez 2016-08-31 21:27

Interesting game, the matrix is waiting.

notruespaceman 2016-09-01 01:47

@gonutz - If you're interested in a minimal Typescript project with a build system, unit testing, and a way to deploy, all of those things should be setup by this commit: https://github.com/eparadis/LD36/commit/958b956cfae15ecfb1308b0d998522e3469bbfd4

Everything after that point is making the actual game.

linver 2016-09-01 08:21

Oh, you created a clicker too, man, GJ ^D
I writed a bot to make a LOT of benjamins. But it takes a lot of time yet.
I've a bug - when text line so big all buttons fall \0_o/
And I think you sould add some bonuses to moar dynamic :3

tommyboys0107 2016-09-01 10:32

A little boring after 500 seconds without some refeshments.
It will be better with some events, sound effects or music :)

strike 2016-09-01 11:43

A cookie clicker clone ! HAAAAA !!!
This game ruined my life, I don't want to touch that any more, I have serious addiction problem XD
I stopped at the sweat shop, to be honest. Your implementation looks quite solid. It only needs a bit more icing to be even better.

local-minimum 2016-09-01 15:31

While my bots are working for me to take over the moon I start with the review here. I'm a sucker for clicking (and just letting it tick). One detail that would have been nice would be if the game fit the view port here on the ludum. I like that there are new click levels when you gain enough dollars. Good job.

thomastc 2016-09-02 15:00

Mocha and Chai? You mean, you *unit test* your LD games?! Wow :)

Spent a couple minutes with this one. As others are saying, typically each option should be better than the previous one. Suppose I have $500 to spend. I can buy a sweatshop ($1/s), 5 factories ($1.25/s), 20 double robots ($6.66/s), or 50 robots ($10/s). Clicking 20 times for those double robots is definitely not that onerous, so the sweatshop is just very underpowered at this point.

It would also be nice if there were powerups for stuff you already have. Give that fleet of old single robots something more to do.

Also, the next unavailable thing should be hinted at (showing at least its price) so the player has something to shoot for. When nothing new appeared even after 10x my currently most expensive item, I just gave up.

I also wasn't sure what "bank >= $1000" means. I just get the two bucks...

notruespaceman 2016-09-10 18:02

@Frozen Fractal - Yeah, I think my idea to make people do math to figure out the best strategy missed the point of why people like to play clicker games. When I play clicker games, I'm always thinking about the "strategy" of which things are "the best buy". Maybe that isn't very common? Also remember there is the cost of the initial investment to consider.

And yeah, after doing TDD for a while, it feels wrong to not have some sort of tests. I broke down after a while, which you can see in the commits, because I couldn't think of a good way to mock the DOM. That's just inexperience on my part.

What's interesting is that as I was TDD'ing this entry, it made things easier. I thought "what's the new feature I want? OK write that test." Then I implemented it. It meant I was always thinking of game design first, which can be hard for me during an LD. I think next time I'll actually write a big pile of design goals as tests and then try to fill them in as the weekend goes on.