3e SRD:Overrun

This material is published under the OGL

Overrun

A character can try to overrun as part of a charge action against an opponent that is one size category larger, the same size, or one size smaller than the character. Only one attempt to overrun can be made per charge.

An overrun takes place during the movement portion of a charge. With an overrun, a character attempts to move through the opponent's area.

Step 1

First, a character must charge at least 10 feet in a straight line into the defender's space. Then the defender chooses either to avoid the character or to block the character.

Step 2

If he avoids the character, the character keeps moving. (A character can always move through the space occupied by someone who lets a character by.)

Step 3

If the defender blocks a character, make a trip attack against the defender (see Trip, below).

Step 4

If the character succeeds in tripping the defender, the character can continue the charge in a straight line as normal. If a character fails and is tripped in turn, the character is prone in the defender's space. If a character fails but is not tripped, the character has to move 5 feet back the way the character came. If that space is occupied, the character falls prone in that space.



Back to Main Page 3e Open Game Content System Reference Document Combat

This page is protected from editing because it is an integral part of D&D Wiki. Please discuss possible problems on the talk page.

Open Game Content (place problems on the discussion page).
This is part of the 3e System Reference Document. It is covered by the Open Game License v1.0a, rather than the GNU Free Documentation License 1.3. To distinguish it, these items will have this notice. If you see any page that contains SRD material and does not show this license statement, please contact an admin so that this license statement can be added. It is our intent to work within this license in good faith.
gollark: >contacts
gollark: Sure? I would move it to beside <#733816666089062511> but mobile.
gollark: Heavpoot is to be declared SCP-3125-A with immediate effect.
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.