mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-03 14:02:59 +00:00
Added Radioactive Cloud object.
This commit is contained in:
parent
2597b558e6
commit
4c81937edc
@ -1,4 +1,32 @@
|
||||
package net.simon987.pluginradioactivecloud;
|
||||
|
||||
public class RadioactiveCloud {
|
||||
import net.simon987.server.GameServer;
|
||||
import net.simon987.server.game.objects.ControllableUnit;
|
||||
import net.simon987.server.game.objects.Enterable;
|
||||
import net.simon987.server.game.objects.GameObject;
|
||||
import net.simon987.server.game.objects.Radioactive;
|
||||
|
||||
public class RadioactiveCloud extends GameObject implements Radioactive, Enterable {
|
||||
private final static int CORRUPTION_BLOCK_SIZE =
|
||||
GameServer.INSTANCE.getConfig().getInt("radioactive_cloud_corruption_block_size");
|
||||
|
||||
/**
|
||||
* Called when an object attempts to walk directly into a Enterable object
|
||||
*
|
||||
* @param object The game object that attempted to enter
|
||||
* @return true if successful, false to block the object
|
||||
*/
|
||||
@Override
|
||||
public boolean enter(GameObject object) {
|
||||
if (object instanceof ControllableUnit) {
|
||||
((ControllableUnit) object).getCpu().getMemory().corrupt(CORRUPTION_BLOCK_SIZE);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public char getMapInfo() {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -93,6 +93,7 @@ electric_box_damage=5
|
||||
electric_box_energy_given=70
|
||||
#RadioactiveObstacle
|
||||
radioactive_obstacle_corruption_block_size=10
|
||||
radioactive_cloud_corruption_block_size=40
|
||||
|
||||
#SecretKey
|
||||
secret_key=<your_secret_key>
|
||||
|
Loading…
x
Reference in New Issue
Block a user