113 public GameObjectDefinition(
int id, String name, String desc,
int width,
int length,
int distance,
boolean solid,
boolean impenetrable,
boolean hasActions,
boolean wall,
boolean decoration,
int walkingFlag) {
118 this.length = length;
119 this.distance = distance;
121 this.impenetrable = impenetrable;
122 this.hasActions = hasActions;
124 this.decoration = decoration;
125 this.walkingFlag = walkingFlag;
186 return String.format(
"[id=%s, name=%s, width=%s, length=%s, distance=%s, wall=%s, impenetrable=%s, solid=%s",
id, name, width, length, distance, wall, impenetrable, solid);