Variable: skip - ScreamingSandals/SimpleInventories GitHub Wiki

skip

This skips number of fields! If there are skip: 1 it skips 1 field after previous item, so this field will be empty

Yaml:

- stack: ...
  skip: 3

Groovy:

item('...') {
  skip(3)
}

Result:

images/skip-1.png