The items attribute defines the pool of items to be selected by a counter element.
<counter>
value | A value, numeric or otherwise, to be included in the selection pool. |
Values in the item pool can be numbers, strings, and properties.
The following randomly selects the name of a president:
<counter presidents>
/ select = noreplace
/ items = ["George Washington"; "John Adams"; "Thomas Jefferson"]
</counter>
The following selects a countdown of numbers:
<counter countdown>
/ select = sequence
/ items = [3; 2; 1]
</counter>