# Here are all avaliable patterns for naming

# This example is the easiest. It replaces name "Stone" to "Rock"
Stone=->>Rock

# Replaces "Block" with "Blocks" at the end of the name
*Block=->>*Blocks

# Replaces "Diamond" with "DIAMOND!!!" anywhere in the name
*Diamond*=->>*DIAMOND!!!*

# Adds Lazuli to any lapis name only at the beginning of the name
Lapis*=->>Lapis Lazuli*

# Next we have predicates. To add them, just insert >>=- after new name. For example:
# This example makes "Dirt Block" a "Dirty Block"
Dirt*=->>Dirty*>>=-endsWith"Block"