Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Core:Interactions: Difference between revisions

From Teriock
Content deleted Content added
// via Wikitext Extension for VSCode
 
// via Wikitext Extension for VSCode
Line 4: Line 4:


=== Attack Interaction ===
=== Attack Interaction ===
{{Core:Attack Interaction}}

The most important one os the Attack Interaction, which is used whenever a weapon, body part, or missile would come into contact with a target. The Attacker first makes an Attack Roll ({{Dice|1d20}}) against the target's {{L|Core|Armor Class|Armor Class}} (AC). If the attacker is {{L|Core|Proficiency Bonus|Proficient}} with the {{L|Abilities|Ability}} they are using, they add their {{L|Core|Proficiency Bonus}} to the roll. If this roll is equal to or greater than the target's {{L|Core|Armor Class|AC}} (typically 10 + {{L|AV}} + {{L|Core|Proficiency Bonus|P}} if the target is {{L|Core|Proficiency Bonus|Proficient}} in their armor), the attack Hits. If the roll is less than the target's AC, the attack Misses. A natural 20 on the die is always a Hit, and a natural 1 is always a Miss. The consequence of a Hit is described in the "On hit" section of the {{L|Abilities|Ability}} that's used.

If the Hit is from a natural 20, then the attack is a Critical Hit and the effect of the {{L|Abilities|Ability}} "goes Critical". If this changes anything about the effect, then it's described in the {{L|Abilities|Ability's}} "On critical hit" section.

Any creature that is {{L|Condition|Up}} may choose to be hit by an attack, even if the attack would normally Miss. This is called "Taking the Hit". They cannot choose to take a Critical Hit.

{{#mermaid:flowchart TD
ai["Attack Interaction Begins"]
ar{{((}}{"Attack Roll"}{{))}}
ch("Critical Hit?")
eg[/"Effect Goes Critical"/]
or(("Responses"))
a(["Effect Applies"])
f(["Effect Fizzles"])

ai --> ar
ar -- "Attack Hits" --> ch
ar -- "Attack Misses" --> f
ch -- "Yes" --> eg
ch -- "No" --> or
eg --> or
or -- "Responses Succeed" --> f
or -- "Responses Fail" --> a
}}

=== Block Interaction ===
=== Block Interaction ===
{{Core:Block Interaction}}

If an Attack Hits, but has not gone Critical, then the defender has a chance to Block. In addition to the {{L|Core|Armor Class|AV}} of armor, every other item has some {{L|Core|Block Value|Block Value}} (BV). If the defender attempts an {{L|Abilities|Ability}} that uses the Block Interaction, then they add the item's {{L|Core|BV}} to their {{L|Core|Armor Class}}. If the new total is equal to or greater than the attacker's Attack Roll, then the Block Succeeds. If the new total is less than or equal to the attacker's Attack Roll, then the Block Fails. The consequence of a successful or unsuccessful Block are described in the "On success" and "On fail" section of the {{L|Abilities|Ability}} that's used. For a {{L|Ability|Basic Block}}, a successful Block causes the Attacking effect to {{L|Core|Fizzles|Fizzle}}.

{{#mermaid:flowchart TD
bs[["Block Interaction Begins"]]
bm{{((}}{"Block Check"}{{))}}
or((Other\nResponses))
f([Effect Fizzles])
a([Effect Applies])

bs --> bm
bm -- "Block Succeeds" --> f
bm -- "Block Fails" --> or
or -- "Other Responses Succeed" --> f
or -- "Other Responses Fail" --> a}}

=== Feat Interaction ===
=== Feat Interaction ===
{{Core:Feat Interaction}}

The Feat (or "Feat Save") Interaction is used whenever a target would have the chance to respond to an {{L|Abilities|Ability}} that doesn't hit them physically (such as area of effect abilities like {{L|Aura delivery abilities|Auras}}). Any {{L|Abilities|Ability}} using the Feat interaction has a "Saving feature" section which describes which {{L|Core|Attributes|Attribute}} the target must use to make the save. For instance, if an ability requires a "feat of strength" to make the save, then the target will roll {{Dice|1d20}} + {{L|Core|STR|STR}}. If they are {{L|Core|Proficiency Bonus|Proficient}} in the attribute they are saving with, they will add their {{L|Core|Proficiency Bonus}} to the roll as well. If the roll is equal to or greater than the "Save DC" then the save Succeeds. If the roll is less than the Save DC then the save Fails. The consequence of a successful or unsuccessful save are described in the "On success" and "On fail" section of the {{L|Abilities|Ability}} that's used. Some Feats may also be able to "go Critical" if the save is a natural 1.

The Save DC depends on the creature using the {{L|Abilities|Ability}}. If they're {{L|Core|Proficiency Bonus|Proficient}} in the ability, then the Save DC is 10 + {{L|Core|Proficiency Bonus|P}}. If not, then it's just 10.

{{#mermaid:flowchart TD
si["Feat Interaction Begins"]
st{{((}}{"Feat Save"}{{))}}
sc("Critical Fail?")
sf[/"Effect Goes Critical"/]
iq(("Responses"))
f(["Effect Fizzles"])
a(["Effect Applies"])

si --> st
st -- "Feat Succeeds" --> f
st -- "Feat Fails" --> sc
sc -- "Yes" --> sf
sc -- "No" --> iq
sf --> iq
iq -- "Responses Succeed" --> f
iq -- "Responses Fail" --> a}}

=== Manifest Interaction ===
=== Manifest Interaction ===
{{Core:Manifest Interaction}}

The final interaction is the Manifest Interaction. It's by far the simples and is used whenever an effect "just happens". There's no built in way to deal with a Manifest, only responses like {{L|Keyword|Resistance|Resistances}} and {{L|Keyword|Immunity|Immunities}}.

{{#mermaid:flowchart TD
mi["Manifest Interaction Begins"]
or(("Responses"))
a(["Effect Applies"])
f(["Effect Fizzles"])
mi --> or
or -- "Other Responses Succeed" --> f
or -- "Other Responses Fail" --> a}}

== Responses ==
== Responses ==

=== Resistances ===
=== Resistances ===

Some {{L|Abilities|Abilities}} grant Resistances to certain effects. Rather than being "absolute" like in {{LARP}}, Resistances in {{Online}} have only a chance of stopping an effect.
Some {{L|Abilities|Abilities}} grant Resistances to certain effects. Rather than being "absolute" like in {{LARP}}, Resistances in {{Online}} have only a chance of stopping an effect.

{{Keyword:Resistance}}
{{Keyword:Resistance}}

=== Immunities ===
=== Immunities ===

{{Keyword:Immunity}}
{{Keyword:Immunity}}

== Order of Operations ==
== Order of Operations ==

As a rule of thumb, the basic rules of Interactions happen first, followed by Immunities, then Resistances. In case it's needed, the complete interaction routines are provided below.
As a rule of thumb, the basic rules of Interactions happen first, followed by Immunities, then Resistances. In case it's needed, the complete interaction routines are provided below.

=== Complete Attack and Block Interaction Routine ===
=== Complete Attack and Block Interaction Routine ===
{{Core:Complete Attack and Block Interaction Routine}}

{{#mermaid:flowchart TD
st[Attack Interaction Begins]
ar{{((}}{"Attack Roll"}{{))}}
ah("Critical Hit?")
ac[/"Effect Goes Critical"/]
bq("Block Attempted?")
bs[["Block Interaction Begins"]]
bm{{((}}{"Block Check"}{{))}}
iq("Immuned?")
is[["Immunity Interaction Begins"]]
rq("Resisted?")
rs[["Resistance Interaction Begins"]]
rt{{((}}{"Resist Save"}{{))}}
f([Effect Fizzles])
a([Effect Applies])

st --> ar
ar -- "Attack Misses" --> f
ar -- "Attack Hits" --> ah
ah -- "No" --> bq
ah -- "Yes" --> ac --> iq
bq -- "Yes" --> bs
bs --> bm
bq -- "No" --> iq
bm -- "Block Succeeds" --> f
bm -- "Block Fails" --> iq
iq -- "Yes" --> is
is --> f
iq -- "No" --> rq
rq -- "No" --> a
rq -- "Yes" --> rs
rs --> rt
rt -- "Resist Succeeds" --> f
rt -- "Resist Fails" --> a}}

=== Complete Feat Interaction Routine ===
=== Complete Feat Interaction Routine ===
{{Core:Complete Feat Interaction Routine}}

{{#mermaid:flowchart TD
si["Feat Interaction Begins"]
st{{((}}{"Feat Save"}{{))}}
sc("Critical Fail?")
sf[/"Effect Goes Critical"/]
iq("Immuned?")
is[["Immunity Interaction Begins"]]
rq("Resisted?")
rs[["Resistance Interaction Begins"]]
rt{{((}}{"Resist Save"}{{))}}
f([Effect Fizzles])
a([Effect Applies])
f(["Effect Fizzles"])
a(["Effect Applies"])

si --> st
st -- "Feat Succeeds" --> f
st -- "Feat Fails" --> sc
sc -- "Yes" --> sf
sc -- "No" --> iq
sf --> iq
iq -- "Yes" --> is
is --> f
iq -- "No" --> rq
rq -- "No" --> a
rq -- "Yes" --> rs
rs --> rt
rt -- "Resist Succeeds" --> f
rt -- "Resist Fails" --> a}}

=== Complete Manifest Interaction Routine ===
=== Complete Manifest Interaction Routine ===
{{Core:Complete Manifest Interaction Routine}}

{{#mermaid:flowchart TD
mi["Manifest Interaction Begins"]
iq("Immuned?")
is[["Immunity Interaction Begins"]]
rq("Resisted?")
rs[["Resistance Interaction Begins"]]
rt{{((}}{"Resist Save"}{{))}}
f([Effect Fizzles])
a([Effect Applies])
f(["Effect Fizzles"])
a(["Effect Applies"])

mi --> iq
iq -- "Yes" --> is
is --> f
iq -- "No" --> rq
rq -- "No" --> a
rq -- "Yes" --> rs
rs --> rt
rt -- "Resist Succeeds" --> f
rt -- "Resist Fails" --> a}}

Revision as of 08:50, 14 January 2025

Every ability in Teriock Online is mediated by one of four Interactions. There are also several responses that may come into play.

Interactions

Attack Interaction

The most important interaction is the attack interaction, which is used whenever a weapon, body part, or missile would come into contact with a target. The attacker first makes an attack roll (1d20) against the target's armor class (AC). If the attacker is proficient with the ability they are using, they add their proficiency bonus (P) to the roll. If this roll is equal to or greater than the target's AC (typically 10 + AV), the attack hits. If the roll is less than the target's AC, the attack misses. A natural 20 on the die is always a hit, and a natural 1 is always a miss. The consequence of a hit is described in the "On hit" section of the ability that's used.

If the hit is from a natural 20, then the attack is a critical hit and the effect of the ability "goes critical". If this changes anything about the effect, then it's described in the ability's "On critical hit" section. Any creature that is up may choose to be hit by an attack, even if the attack would normally miss. This is called "Taking the hit". They cannot choose to take a critical hit.

Shields have special rules regarding if a creature can attack.

Buckler Shields
Any type of item can be held in an arm with a buckler shield. But only small items in this hand can be used to attack or block.
Large Shields
Any type of item can be held in an arm with a large shield. But no item in this hand can be used to attack or block.
Tower Shields
Only small items can be held in an arm with a tower shield. No item in this hand can be used to attack or block.

Multiple Attacks

Attacks are always associated with a hand. This could be the hand that uses a weapon, that casts a spell, or that performs an unarmed strike. The first attack you make with a given hand has no penalty to hit. Each subsequent attack you make with that hand in the same turn incurs a cumulative -3 attack penalty to hit. Your attack penalty resets to 0 at the end of your turn.

Lord Goobelthorp is wielding a claymore in two hands. The first attack they make with the claymore has no penalty to hit. If they make a second attack with the claymore in the same turn, that attack incurs a -3 penalty to hit. If they make a third attack with the claymore in the same turn, that attack incurs a -6 penalty to hit.

Kaflimbo is wielding a shortsword in each hand. The first attack they make with one of the shortswords has no penalty to hit. If they make a second attack with their other shortsword in the same turn, that attack also has no penalty to hit. If they make a third attack with one of the shortswords in the same turn, that attack incurs a -3 penalty to hit.

Tizzy Snomblom has a war hammer in one hand and a tower shield in the other. The arm with the tower shield is also holding a dagger, although they cannot attack with it. The first attack they make with the hammer has no penalty to hit. If they make a second attack with the hammer in the same turn, that attack incurs a -3 penalty to hit. If they make a third attack with the hammer in the same turn, that attack incurs a -6 penalty to hit.

Flaxer Gogo has a longsword in one hand, a dagger in the other, and a buckler shield strapped to the arm with their dagger. The first attack they make with the longsword has no penalty to hit. Since they're using is buckler shield (and not some larger type of shield), they can also make a second attack with the dagger in the same turn without incurring a penalty to hit. If they make a third attack with the longsword or the dagger in the same turn, that attack incurs a -3 penalty to hit.

Block Interaction

If an attack hits, but has not gone critical, then the defender has a chance to block. In addition to the AV of armor, every other item has some block value (BV). If the defender attempts an ability that uses the block interaction, then they add the item's BV to their armor class. If the new total is greater than the attacker's attack roll, then the block succeeds. If the new total is less than or equal to the attacker's attack roll, then the block fails. The consequence of a successful or unsuccessful block are described in the "On success" and "On fail" section of the ability that's used. For a Basic Block, a successful block causes the attacking effect to fizzle.

Every time you block with the same item in the same turn, its BV is reduced by 1 (to a minimum of 0). This is referred to as the item's block penalty. blocking items do not suffer this penalty.

Feat Interaction

The feat interaction (or "feat save interaction") is used whenever a target would have the chance to respond to an ability that doesn't hit them physically (such as area of effect abilities like auras). Any ability using the feat interaction has a "Saving feature" section which describes which attribute the target must use to make the save. For instance, if an ability requires a "feat of strength" to make the save, then the target will roll 1d20 + STR. If they are proficient in the attribute they are saving with, they will add their proficiency bonus to the roll as well. If the roll is equal to or greater than the save DC then the save succeeds. If the roll is less than the save DC then the save fails. The consequence of a successful or unsuccessful save are described in the "On success" and "On fail" section of the ability that's used. Some feats may also be able to "go critical" if the save is a natural 1.

The save DC depends on the creature using the ability. If they're proficient in the ability, then the save DC is 10 + P. If not, then it's just 10.

Manifest Interaction

The final interaction is the manifest Interaction. It's by far the simplest and is used whenever an effect "just happens". There's no built in way to deal with a manifest, only responses like resistances and immunities.


Responses

Resistances

Some abilities grant Resistances to certain effects. Rather than being "absolute" like in live action FanWar, Resistances in Teriock Online have only a chance of stopping an effect. When a being would be affected by something they are resistant to, they make a resistance save. This is a DC 10 d20 roll that they add their proficiency bonus to if they are proficient in the ability that grants them their resistance. On a success, the target is not affected by whatever was going to happen to them. On a fail, they are. Resistance saves cannot be failed automatically. Only one resistance save can be attempted per interaction. A resistance cannot stop a warded ability.

Immunities

If you are immune to something, it does not work against you at all. A warded ability does not cut through immunities.

Order of Operations

As a rule of thumb, the basic rules of Interactions happen first, followed by Immunities, then Resistances. In case it's needed, the complete interaction routines are provided below.

Complete Attack and Block Interaction Routine

Complete Feat Interaction Routine

Complete Manifest Interaction Routine