Methods:
- Use a mod that has following content in data.lua.
Code: Select all
data.raw["player"]["player"].healing_per_tick = 0;
- Make a map placing a small biter not too close, not too far.
- Start a game of the map.
- Run the following code from console to get items.
Code: Select all
/c game.player.insert({ name = "modular-armor" , count = 1 }); /c game.player.insert({ name = "energy-shield-equipment" , count = 1 }); /c game.player.insert({ name = "solar-panel-equipment" , count = 20 });
- Equip the modular armor.
- Put a energy shield and portable solar panels on modular armor. After charging the shield, take off all portable solar panels.
- Approach the small biter to be attacked.
- Count the attacks to find out breakpoint of health bar status until the player is killed.
- By first 17 attacks, the shield is damaged and re-charged quickly by inner battery.
- By next 143 attacks, the shield is damaged to change from 50 to 0 hp.
- By next 471 attacks, the player is damaged to change from 100 to 0 hp.
- By next a attack, the player is killed.