@@ -653,14 +653,14 @@ addLayer("u", {
653
653
11 : {
654
654
cost ( x ) { return new Decimal ( 2 ) . mul ( x . pow ( 2 ) ) . pow ( 15 ) . pow ( 3 ) } ,
655
655
title : "Ultra Buyable!" ,
656
- display ( ) { return "Amount: " + format ( getBuyableAmount ( this . layer , this . id ) . floor ( ) ) + "\nCost: " + format ( this . cost ( ) . floor ( ) ) + " ulra points\nEffect: x" + format ( this . effect ( ) ) + " point gain" } ,
656
+ display ( ) { return "Amount: " + format ( getBuyableAmount ( this . layer , this . id ) . floor ( ) ) + "\nCost: " + format ( this . cost ( ) . floor ( ) ) + " ultra points\nEffect: x" + format ( this . effect ( ) ) + " point gain" } ,
657
657
canAfford ( ) { return player [ this . layer ] . points . gte ( this . cost ( ) ) } ,
658
658
buy ( ) {
659
659
player [ this . layer ] . points = player [ this . layer ] . points . sub ( this . cost ( ) )
660
660
setBuyableAmount ( this . layer , this . id , getBuyableAmount ( this . layer , this . id ) . add ( 1 ) )
661
661
} ,
662
662
effect ( ) {
663
- return new Decimal ( 1 ) . mul ( this . cost ( ) . sub ( 1 ) ) . times ( 50 + ( hasUpgrade ( 'i' , 16 ) ? 50 : 0 ) ) . pow ( 0.9 ) . add ( 1 )
663
+ return new Decimal ( 1 ) . mul ( this . cost ( ) . sub ( 1 ) ) . times ( 50 + ( hasUpgrade ( 'i' , 16 ) ? - 40 : 0 ) ) . pow ( 0.9 ) . add ( 1 )
664
664
} ,
665
665
unlocked ( ) { return player [ '+' ] . points . gte ( 12 ) }
666
666
} ,
@@ -739,8 +739,8 @@ addLayer("i", {
739
739
unlocked ( ) { return player [ '+' ] . points . gte ( 20 ) }
740
740
} ,
741
741
16 : {
742
- title : "UltraBuff " ,
743
- description : "Boost the ultra buyable effect " ,
742
+ title : "Exchange 2 " ,
743
+ description : "Nerf the ultra buyable, but x9 point gain " ,
744
744
cost : new Decimal ( 150 ) ,
745
745
unlocked ( ) { return player [ '+' ] . points . gte ( 20 ) }
746
746
} ,
0 commit comments