Skip to content

Commit

Permalink
Adjust tree features width/breadth
Browse files Browse the repository at this point in the history
The larger tree features were set to a width+breadth of 2x2 tiles, but they really only take up 1 tile. Adjust this to 1x1 so trees can be placed next to each other if desired.
  • Loading branch information
past-due committed Mar 17, 2024
1 parent 56e5c71 commit eaf4df5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions data/base/stats/features.json
Original file line number Diff line number Diff line change
Expand Up @@ -614,27 +614,27 @@
},
"Tree1": {
"armour": 10,
"breadth": 2,
"breadth": 1,
"hitpoints": 50,
"id": "Tree1",
"lineOfSight": 0,
"model": "mitrees.pie",
"name": "*Tree1*",
"tileDraw": 1,
"type": "TREE",
"width": 2
"width": 1
},
"Tree2": {
"armour": 10,
"breadth": 2,
"breadth": 1,
"hitpoints": 50,
"id": "Tree2",
"lineOfSight": 0,
"model": "mitrees2.pie",
"name": "*Tree2*",
"tileDraw": 1,
"type": "TREE",
"width": 2
"width": 1
},
"Tree3": {
"armour": 10,
Expand All @@ -650,27 +650,27 @@
},
"TreeSnow1": {
"armour": 10,
"breadth": 2,
"breadth": 1,
"hitpoints": 50,
"id": "TreeSnow1",
"lineOfSight": 0,
"model": "mistree1.pie",
"name": "*Snowy Tree1*",
"tileDraw": 1,
"type": "TREE",
"width": 2
"width": 1
},
"TreeSnow2": {
"armour": 10,
"breadth": 2,
"breadth": 1,
"hitpoints": 50,
"id": "TreeSnow2",
"lineOfSight": 0,
"model": "mistree2.pie",
"name": "*Snowy Tree2*",
"tileDraw": 1,
"type": "TREE",
"width": 2
"width": 1
},
"TreeSnow3": {
"armour": 10,
Expand Down

0 comments on commit eaf4df5

Please sign in to comment.