Interface PositionModifiers

The crafting grid position modifiers of an ingredient

interface PositionModifiers {
    above: number;
    left: number;
    notTouching: number;
    right: number;
    touching: number;
    under: number;
}

Properties

above: number

The ID modifier to ingredients placed above the ingredient

left: number

The ID modifier to ingredients placed to the left of the ingredient

notTouching: number

The ID modifier to ingredients not touching the ingredient

right: number

The ID modifier to ingredients placed to the right of the ingredient

touching: number

The ID modifier to ingredients touching the ingredient

under: number

The ID modifier to ingredients placed below the ingredient

Generated using TypeDoc