import * as React from "react"; import { movement, action, bonusAction, reaction, condition, environmentalEffects } from "./rules"; const QuickRef = () => { const generateList = items => { return (
{items.map((item, index) => { return (
{item.title}
{item.description}
); })}
); }; return (

Movement

limited by movement speed

You can move at any time during your turn (before, after, or during actions).

{generateList(movement)}

Action

1/Turn

You can also interact with one object or feature of the environment for free.

{generateList(action)}

Bonus Action

Max. 1/Turn

You can take a bonus action only when a special ability, spell, or feature states that you can do something as a bonus action.

{generateList(bonusAction)}

Reaction

Max. 1/Round

A reaction is an instant response to a trigger of some kind, which can occur on your turn or on someone else's.

{generateList(reaction)}

Condition

{generateList(condition)}

Environmental Effects

{generateList(environmentalEffects)}
); }; export { QuickRef };