|
|
|
@ -212,12 +212,12 @@ contract Main is Owned {
|
|
|
|
|
// Tokens
|
|
|
|
|
// =========================================================================
|
|
|
|
|
|
|
|
|
|
/// Radicalize a boomer to become a Unaboomer - start with 2 bombs
|
|
|
|
|
/// Radicalize a boomer to become a Unaboomer - start with 1 bomb
|
|
|
|
|
/// @param _amount Amount of Unaboomers to mint / "radicalize"
|
|
|
|
|
function radicalizeBoomers(uint256 _amount) external payable missionNotCompleted {
|
|
|
|
|
require(msg.value >= _amount * unaboomerPrice, "not enough ether");
|
|
|
|
|
unaboomer.radicalize(msg.sender, _amount);
|
|
|
|
|
mailbomb.create(msg.sender, _amount * 2);
|
|
|
|
|
mailbomb.create(msg.sender, _amount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Assemble additional mailbombs to kill targets
|
|
|
|
|