Skip to content

Commit 46899b2

Browse files
committed
more blockquote
1 parent d70177b commit 46899b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/syntax/requires.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ Now that we know how to require multiple of an item, we can revise our Boss 2 ex
6969

7070
> Boss 2 simply requires **FIVE hearts**, a way to strike it (Sword, Spear or Club) and a way to dodge it (Double Jump, Dash or Slide): we're looking at different sets, and picking one item from which. It's many ORs inside a big set of ANDs.
7171
> ```json
72-
{
73-
"name": "Boss 2",
74-
"requires": "|Heart:5| and (|Sword| or |Spear| or |Club|) and (|Double Jump| or |Dash| or |Slide|)"
75-
}
72+
>{
73+
> "name": "Boss 2",
74+
> "requires": "|Heart:5| and (|Sword| or |Spear| or |Club|) and (|Double Jump| or |Dash| or |Slide|)"
75+
>}
7676
> ```
7777
7878
In addition to specific item counts, you can also specify a broad relative amount like "all of this item" or "half of this item", or even percentages of that item versus the total in the pool. We'll demonstrate those briefly below as well.

0 commit comments

Comments
 (0)