# HG changeset patch # User Wuzzy # Date 1521747886 0 # Node ID 006fe546bd269338a8779e2b9e20d0674e1f99fe # Parent 2c4320387c2facf40294262634ce693d03177e72 LuaAPI: fix typos diff -r 2c4320387c2f -r 006fe546bd26 LuaAPI.wiki --- a/LuaAPI.wiki Thu Mar 22 19:40:41 2018 +0000 +++ b/LuaAPI.wiki Thu Mar 22 19:44:46 2018 +0000 @@ -993,7 +993,9 @@ ==== `Explode(x, y, radius[, options])` (0.9.24) ==== Cause an explosion or erase land, push or damage gears. -By default, causes an explosion at the coordinates `(x, y)` with the given `radius`. Explosions destroy land, and damage and push gears in its radius. Assuming 100% damage, the explosion damage at the center equals the explosion radius. +By default, an explosion destroys a circular piece of land and damages and pushes gears in its radius. + +The explosion occours at coordinates `(x, y)` with the given `radius`. Assuming 100% damage, the explosion damage at the center equals the explosion radius. `options` is a bitmask which can be used to tweak how the explosion behaves: @@ -1016,10 +1018,10 @@ -- Simlpe explosion without sound Explode(100, 50, 50, 0) --- Fake explosion which only cause a push but deals no damage to gears an terrain +-- Fake explosion which only pushes gears but deals no damage to gears and terrain Explode(500, 1000, 50, EXPLAutoSound + EXPLNoDamage + EXPLDontDraw) --- Erase land without side effects: +-- Erase a circle of land without side effects Explode(500, 100, 100, EXPLNoDamage + EXPLDoNotTouchAny + EXPLNoGfx)