Remove "Unchecked Capitalism" achievement.

As funny as the joke was at first, it's a real detriment for completionists.
This commit is contained in:
Mari the Deer 2022-02-12 18:50:15 +01:00
commit bf4c2f4ec6
6 changed files with 2 additions and 12 deletions

View file

@ -39,7 +39,6 @@ deva,10,yes,any
dime,0,no,any
divine,10,yes,any
doodle,20,yes,doom
dosh,1000000000,no,any
everything,0,no,any
ezkill,50,yes,doom
ezkill,30,yes,raven

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -1188,8 +1188,6 @@ SWWM_ACHIEVEMENT_DIVINE_TAG = "Divine Delight";
SWWM_ACHIEVEMENT_DIVINE_TXT = "Use %d Divine Sprites";
SWWM_ACHIEVEMENT_DOODLE_TAG = "Graffiti Master";
SWWM_ACHIEVEMENT_DOODLE_TXT = "Doodle mustaches on %d demon faces";
SWWM_ACHIEVEMENT_DOSH_TAG = "Unchecked Capitalism";
SWWM_ACHIEVEMENT_DOSH_TXT = "Accumulate ¥1,000,000,000 across your playthroughs";
SWWM_ACHIEVEMENT_EVERYTHING_TAG = "The Demolitionist";
SWWM_ACHIEVEMENT_EVERYTHING_TXT = "Unlock all achievements";
SWWM_ACHIEVEMENT_EZKILL_TAG = "Misa's Pride";

View file

@ -1039,8 +1039,6 @@ SWWM_ACHIEVEMENT_DIVINE_TAG = "Deleite Divino";
SWWM_ACHIEVEMENT_DIVINE_TXT = "Usa %d Sprites Divinos";
SWWM_ACHIEVEMENT_DOODLE_TAG = "Maestro del Grafiti";
SWWM_ACHIEVEMENT_DOODLE_TAG = "Garabatea mostachos en %d caras de demonio";
SWWM_ACHIEVEMENT_DOSH_TAG = "Capitalismo Desenfrenado";
SWWM_ACHIEVEMENT_DOSH_TXT = "Acumula ¥1.000.000.000 entre todas tus partidas";
SWWM_ACHIEVEMENT_EVERYTHING_TAG = "La Demolicionista";
SWWM_ACHIEVEMENT_EVERYTHING_TXT = "Desbloquea todos los logros";
SWWM_ACHIEVEMENT_EZKILL_TAG = "El Orgullo de Misa";

View file

@ -1,3 +1,3 @@
[default]
SWWM_MODVER="\cyDEMOLITIONIST \cw1.2pre r145 \cu(Sat 12 Feb 18:45:17 CET 2022)\c-";
SWWM_SHORTVER="\cw1.2pre r145 \cu(2022-02-12 18:45:17)\c-";
SWWM_MODVER="\cyDEMOLITIONIST \cw1.2pre r146 \cu(Sat 12 Feb 18:50:15 CET 2022)\c-";
SWWM_SHORTVER="\cw1.2pre r146 \cu(2022-02-12 18:50:15)\c-";

View file

@ -226,11 +226,6 @@ Class SWWMCredits : Thinker
s.hhiscore = c.hcredits;
}
SWWMLoreLibrary.Add(p,"ScoreSystem");
if ( cheat ) return;
int curamt = SWWMUtility.GetAchievementProgress("dosh");
if ( (hamount > 0) || (curamt+amount < curamt) || (curamt+amount >= 1000000000) )
SWWMUtility.AchievementProgress("dosh",1000000000,p);
else SWWMUtility.AchievementProgress("dosh",curamt+amount,p);
}
static clearscope bool CanTake( PlayerInfo p, int amount, int hamount = 0 )