diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/example.toml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/contrib/example.toml b/contrib/example.toml new file mode 100644 index 0000000..ee6b462 --- /dev/null +++ b/contrib/example.toml @@ -0,0 +1,38 @@ +X = 193 +Y = 175 + +[plants] +soilicon='~' +gapicon='_' +gapsize=12 +farmableEdge=true + +[plants.cantaloupe] +icon='C' +seedspacing = 28 #Space between seeds while in a row +rowspacing = 48 #Width of the row itself +rownum = 1 #Maximum number of rows for this plant, currently unused + +[plants.bellpepper] +icon='B' +seedspacing = 12 +rowspacing = 24 +rownum = 1 + +[plants.sweetonion] +icon='E' +seedspacing = 6 +rowspacing = 18 +rownum = 1 + +[plants.strawberries] +icon='S' +seedspacing = 24 +rowspacing = 24 +rownum = 1 + +[plants.watermelon] +icon='W' +seedspacing = 28 +rowspacing = 48 +rownum = 1 |