W1ll0w
Greenhorn
Hello,
I downloaded SMAPI and a few mods for the game but the only one that is currently running without issues is the slightly cuter seasonal npc portrait one.
I really would like the seasonal farmer portrait one to work as well but I don't know what I am doing wrong. I already read up on the existing threads to this subject but nothing seemed to help in my case. This is the first time that I am trying to mod a game and I feel like I don't know what I am doing so I would need explanations as if I was five years old for this subject.
I am playing on Android and downloaded the latest version from the play store.
Sorry for my bad English, it's not my first language.
Here is the code and the folder in which the seasonal portraits are with their names
I would be very thankful if someone could help me 🥹
Let me know if you need anything else like error log
I downloaded SMAPI and a few mods for the game but the only one that is currently running without issues is the slightly cuter seasonal npc portrait one.
I really would like the seasonal farmer portrait one to work as well but I don't know what I am doing wrong. I already read up on the existing threads to this subject but nothing seemed to help in my case. This is the first time that I am trying to mod a game and I feel like I don't know what I am doing so I would need explanations as if I was five years old for this subject.

I am playing on Android and downloaded the latest version from the play store.
Sorry for my bad English, it's not my first language.
Here is the code and the folder in which the seasonal portraits are with their names
I would be very thankful if someone could help me 🥹
Let me know if you need anything else like error log
Code:
{
"Format": "1.26",
"DynamicTokens": [
// Standard Dynamic Tokens
{
"Name": "Festival",
"Value": "FlowerDance",
"When":
{
"DayEvent": "flower dance",
}
},
{
"Name": "Festival",
"Value": "SpiritsEve",
"When":
{
"DayEvent": "spirit's eve",
}
},
{
"Name": "Festival",
"Value": "Wedding",
"When":
{
"DayEvent": "wedding",
}
},
{
"Name": "Festival",
"Value": "MoonlightJellies",
"When":
{
"DayEvent": "dance of the moonlight jellies",
}
},
{
"Name": "Festival",
"Value": "EggFestival",
"When":
{
"DayEvent": "egg festival",
}
},
{
"Name": "Festival",
"Value": "WinterStar",
"When":
{
"DayEvent": "feast of the winter star",
}
},
{
"Name": "Festival",
"Value": "IceFestival",
"When":
{
"DayEvent": "festival of ice",
}
},
{
"Name": "Festival",
"Value": "Luau",
"When":
{
"DayEvent": "luau",
}
},
{
"Name": "Festival",
"Value": "Fair",
"When":
{
"DayEvent": "stardew valley fair",
}
},
],
"Changes": [
{
"Action": "Load",
"Target": "aedenthorn.FarmerPortraits/portrait",
"FromFile": "assets/portrait_{{Season}}.png"
},
{
"Action": "EditImage",
"Target": "aedenthorn.FarmerPortraits/portrait",
"FromFile": "assets/Festival/portrait_{{Festival}}.png",
"When": {"HasFile:{{FromFile}}": true,},
},
]
}
Attachments
-
43.3 KB Views: 3