Skip to content

Commit

Permalink
missingicon
Browse files Browse the repository at this point in the history
  • Loading branch information
eternaldensity committed Nov 27, 2013
1 parent 1a82a52 commit ebb8b79
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ For personal amusement only.

## Changelog

## 3.183
- Making the Discoveries category use the apropriate icon slipped my mind, again
- Missing icon
- Inverted statements

## 3.182
- Typo fixes from waveney (SGR, MMolpy)
- Badge by waveney
Expand Down
4 changes: 2 additions & 2 deletions castle.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ Molpy.Up=function()
++++++++++++++++++++++++++++++++++*/
Molpy.Life=0; //number of gameticks that have passed
Molpy.fps = 30 //this is just for paint, not updates
Molpy.version=3.182;
Molpy.version=3.183;

Molpy.time=new Date().getTime();
Molpy.newpixNumber=1; //to track which background to load, and other effects...
Expand Down Expand Up @@ -3767,7 +3767,7 @@ Molpy.Up=function()
Molpy.redactedSGen=InitStatementGen();
Molpy.MakeRedactedPuzzle=function()
{
Molpy.redactedSGen.FillStatements();
Molpy.redactedSGen.FillStatements(0,Molpy.Boosts['Logicat'].bought);
Molpy.redactedPuzzleTarget=Molpy.redactedSGen.RandStatementValue();
var str='Click a statement that is '+Molpy.redactedPuzzleTarget+':';
var statements= Molpy.redactedSGen.StringifyStatements('Molpy.ClickRedactedPuzzle');
Expand Down
4 changes: 2 additions & 2 deletions data.js
Original file line number Diff line number Diff line change
Expand Up @@ -3003,7 +3003,7 @@ Molpy.DefineBoosts=function()
{
if(Molpy.HasGlassBlocks(cost))Molpy.SpendGlassBlocks(cost);

Molpy.cagedSGen.FillStatements();
Molpy.cagedSGen.FillStatements(0,Molpy.Boosts['Logicat'].bought);
Molpy.cagedPuzzleTarget=Molpy.cagedSGen.RandStatementValue();
var str='Click a statement that is '+Molpy.cagedPuzzleTarget+':';
var statements= Molpy.cagedSGen.StringifyStatements('Molpy.ClickCagedPuzzle');
Expand Down Expand Up @@ -4717,7 +4717,7 @@ Molpy.DefineBoosts=function()
chron:['chronotech','Chronotech','boost_lateclosing'],
cyb:['cybernetics','Cybernetics','boost_robotefficiency'],
bean:['beanie tech','Beanie Tech','boost_chateau'],
discov:['discoveries','Discoveries',0,'Discovery','A memorable discovery'],
discov:['discoveries','Discoveries','badge_discov','Discovery','A memorable discovery'],
monums:['sand monuments','Sand Monuments',0,'Sand Monument', 'A sand structure commemorating'],
monumg:['glass monuments','Glass Monuments',0,'Glass Monument','A glass sculpture commemorating'],
diamm:['masterpieces','Masterpieces',0,'Masterpiece','This is a diamond masterpice.<br>All craftottership is of the highest quality.<br>On the masterpiece is an image of','in diamond. <br>It molpifies with spikes of treeishness.'],
Expand Down
Binary file added img/boost_secondchance_light_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions redundancy.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,9 @@ var EmergencyExport=function()
var InitStatementGen=function(gen)
{
var StatementGen=gen||{};
StatementGen.FillStatements=function(n)
StatementGen.FillStatements=function(n,level)
{
StatementGen.level=level||0;
var statementNames='ABCDEFGHI';
var operators=['and','or'];
var refCount=2;
Expand Down Expand Up @@ -378,7 +379,8 @@ var InitStatementGen=function(gen)
}
StatementGen.StringifyClaim=function(claim)
{
return 'Statement '+claim.name+' is '+claim.value;
var invert = Math.random()*(StatementGen.level%100)>25;
return 'Statement '+claim.name+' is '+(invert?'not '+!claim.value:claim.value);
}
StatementGen.StringifyStatement=function(statement,buttonFunction)
{
Expand Down

0 comments on commit ebb8b79

Please sign in to comment.