Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Achievement List #30

Open
ErikMcClure opened this issue May 15, 2015 · 12 comments
Open

New Achievement List #30

ErikMcClure opened this issue May 15, 2015 · 12 comments

Comments

@ErikMcClure
Copy link
Owner

This is a list of achievements that should be put in at some point:

  • Over 9000: over 9000 clicks (also nerf the other clicks so the maximum is 100000 clicks)
  • No Booping Allowed: Get 1 trillion smiles with only 35 pony clicks
  • Speed Booping: Get 1 million smiles in only minutes
  • Super Speed Booping: Get 1 billion smiles in only minutes
  • Extreme Speed Booping: Get 1 trillion smiles in only minutes
  • Friendship count achievements: Need achievements for various friendship counts.
  • Wheel of Friendship: [Requires Pony Circle cut off at low resolutions #17 ] Spin the pony wheel
  • Fixer Upper: Buy all the upgrades.

Leave your suggestions below, and any good ones will get added to the list.

@TrickQuestion
Copy link

An achievement on how fast they boop with the mouse (clicking fast enough earns it).

There should be a "True No Booping" which can only be done following a soft reset (perhaps only one boop is needed), vs. the "No Booping" which can be done with 35 clicks.

Achievements for soft resets with different numbers of total smiles.

For the 1.1 suggestions, there are dozens of possibilities based on particular ponies and friendships, as well as sale of friendships for particular ponies. Like, selling five Pinkie friendships in a row could be "Party of One"; selling Fluttershy/Discord could count for that episode, etc. Essentially, you could have an achievement for every episode of the series! Only fans would be able to find them all.

@TrickQuestion
Copy link

Grr. Now I kinda want to work on coding this with you. /)^3^(\ Maybe after the weekend. I dunno if I'll have time or not but the design is fun and it's unfair for me to toss you design mechanics without code assistance.

@ErikMcClure
Copy link
Owner Author

A True No Booping is actually impossible to do without having a golden cookie equivalent, which I mentioned in #32, because you literally cannot have any kind of SPS whatsoever until you have clicked 35 times, so the % bonus you have from prestige won't count. This is how it is done in Cookie Clicker.

@TrickQuestion
Copy link

Ah right, I forgot. I was thinking in my head about muffins providing 1 Smile/s per Pony, but that would be a bad mechanic b/c it would inflate the race substantially. Racing should benefit a very limited amount from cumulative gains.

@cburschka
Copy link
Contributor

It's easy enough to add the No Booping achievement, but it's not clear where to put it for checking purposes.

The global achievements are only checked on import/initialization, or set via EarnAchievement. Adding this achievement to achievements_smiles would work, as long as you don't care about the redundant check every tick after the click count has already exceeded 35.

{ name:"No Booping Allowed", desc: "Get <b>"+PrettyNum(1000000000000)+"</b> smiles with only 35 pony clicks.", muffins:1, cond:function() { return Game.clicks <= 35 && Game.totalsmiles > 1000000000000; } }

Edit: My patch puts it in the global list under "206", and then adds that ID directly to the achievements_smiles list so it'll get checked by Earn()

cburschka added a commit to arancaytar/PonyClicker that referenced this issue May 16, 2015
Adds a new achievement for reaching 10^12 total smiles
with only 35 clicks.
cburschka added a commit to arancaytar/PonyClicker that referenced this issue May 16, 2015
Adds a new achievement for reaching 10^12 total smiles
with only 35 clicks.
@ErikMcClure
Copy link
Owner Author

I just realized that this achievement is impossible to get without a prestige system.

Oops.

@TrickQuestion
Copy link

Yeah, I thought that one was obvious. :)

On Sat, May 16, 2015 at 7:17 PM, Erik McClure [email protected]
wrote:

I just realized that this achievement is impossible to get without a
prestige system.

Oops.

Reply to this email directly or view it on GitHub
#30 (comment)
.

Trick Question

@cburschka
Copy link
Contributor

Beyond the two fixes above, I also noticed that it's practically impossible to get the Centrifuge achievement late in the game, because as the wheel grows larger, the maximum angular speed you can give the wheel with the mouse decreases.

@baxil
Copy link

baxil commented May 23, 2015

Ponies On The Go is a horrible idea as a standard achievement (=locking out 100% completion). Game features should not be contingent on the existence of your preferred hardware configuration.

Idly brainstorming some suggestions:
Changelings Needs Smiles Too: Have two of the same pony on the wheel.
(This could be your "hacking" shadow achievement, or you could modify the create-a-pony code so that randomly generating a new pony doesn't force them to be unique. It would only need to be checked on load/import and on new pony purchase.)
For The Hoard: Keep almost all of your smiles unspent.
(Check to see if Available Smiles >= 0.99 * Total Smiles, and also >= 3500 to keep it from being earned when the game starts.)
Back to Nature: Earn 1 million smiles with no buildings.
(Preferentially requires soft reset to be implemented since it can't easily be earned in the same game as No Booping.)

Friendship Achievements:
Best Buds: Have two ponies and a maxed-out friendship grid.
(The free gimme at the start of the game.)
Camaraderie Crusaders: Have at least three ponies and a maxed-out friendship grid.
(The above might be important to cue that the achievements come from maxing them out.)
Inner Circle: Have at least six ponies and a maxed-out friendship grid.
Friend-Of-The-Month Club: Have at least 12 ponies, etc.
No Pony Left Behind: Have at least 18 ponies, etc.
Reference Chart Not Optional: Have at least 24 ponies, etc.
(Above 24 ponies gets into unwieldy numbers very fast.)

@ErikMcClure
Copy link
Owner Author

For The Hoard would probably be almost impossible to get and doesn't seem to make sense. Changelings need smiles too might be amusing if you manage to buy enough ponies that we run out of unique ones.

The centrifuge achievement should do an arc length measurement and base it's speed requirement on how much rotational velocity you can get by moving your mouse x pixels across the screen in one frame. This scales it to the wheel size.

@ErikMcClure ErikMcClure added this to the Future Release milestone May 27, 2015
@Sir-Elusive
Copy link

Perhaps one like for reaching a certain amount of smiles without any friendships (if that isn't already a thing)?

@hi21508
Copy link

hi21508 commented Feb 1, 2018

For The Hoard could be for having 1,000,000 (or more) times as many smiles as SPS.

ErikMcClure pushed a commit that referenced this issue Aug 4, 2020
Adds a new achievement for reaching 10^12 total smiles
with only 35 clicks.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants