Advertisement
SMAPI

2018-09-12

Sep 12th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "Format": "1.5",
  3.     "ConfigSchema": {
  4.         "WoodFenceStyle": {
  5.             "AllowValues": "cocoa, cream"
  6.         },
  7.         "IronFenceStyle": {
  8.             "AllowValues": "red, green"
  9.         }
  10.     },
  11.     "Changes": [
  12.         // wooden fence
  13.         {
  14.             "Action": "EditImage",
  15.             "Target": "LooseSprites/Fence1",
  16.             "FromFile": "assets/Fence1-{{woodFenceStyle}}.png"
  17.         },
  18.         {
  19.             "Action": "EditImage",
  20.             "Target": "Maps/springobjects",
  21.             "FromFile": "assets/IconFence1-{{woodFenceStyle}}.png",
  22.             "ToArea": { "X": 160, "Y": 208, "Width": 16, "Height": 16 }
  23.         },
  24.  
  25.         // iron fence
  26.         {    
  27.             "Action": "EditImage",
  28.             "Target": "LooseSprites/Fence3",
  29.             "FromFile": "assets/Fence3-{{ironFenceStyle}}-{{season}}.png"
  30.         },
  31.         {    
  32.             "Action": "EditImage",
  33.             "Target": "Maps/springobjects",
  34.             "FromFile": "assets/IconFence3-{{ironFenceStyle}}-{{season}}.png",
  35.             "ToArea": { "X": 192, "Y": 208, "Width": 16, "Height": 16 }
  36.         },
  37.     ]
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement