Added forest static & dynamic tiles

master
Mohammad Shoaib 2022-04-30 22:09:53 +05:30
parent cb450b95fa
commit d933152982
2 changed files with 70 additions and 0 deletions

View File

@ -336,6 +336,10 @@ namespace stardew_access.Features
{ {
if (forest.travelingMerchantDay && x == 27 && y == 11) if (forest.travelingMerchantDay && x == 27 && y == 11)
return (CATEGORY.Interactables, "Travelling Merchant"); return (CATEGORY.Interactables, "Travelling Merchant");
else if (forest.log != null && x == 2 && y == 7)
return (CATEGORY.Interactables, "Log");
else if (forest.log == null && x == 0 && y == 7)
return (CATEGORY.Doors, "Secret Woods Entrance");
} }
else if (Game1.currentLocation is Beach beach) else if (Game1.currentLocation is Beach beach)
{ {

View File

@ -1018,5 +1018,71 @@
"y":[11], "y":[11],
"type":"door" "type":"door"
} }
},
"beach":
{
"Town Entrance":
{
"x":[38],
"y":[0],
"type":"door"
},
"Beach Warp Statue":
{
"x":[20],
"y":[4],
"type":"decoration"
}
},
"forest":
{
"Farm Entrance":
{
"x":[68],
"y":[0],
"type":"door"
},
"Town Entrance":
{
"x":[119],
"y":[25],
"type":"door"
},
"Bridge 1":
{
"x":[77,82],
"y":[49],
"type":"bridge"
},
"Bridge 2":
{
"x":[87],
"y":[52,56],
"type":"bridge"
},
"Bridge 3":
{
"x":[65,62],
"y":[70],
"type":"bridge"
},
"Bridge 4":
{
"x":[41],
"y":[79,82],
"type":"bridge"
},
"Bridge 5":
{
"x":[38],
"y":[85,87],
"type":"bridge"
},
"Abandoned House":
{
"x":[34],
"y":[95],
"type":"interactable"
}
} }
} }