Skip to content

Instantly share code, notes, and snippets.

@SinZ163
Created July 9, 2026 04:57
Show Gist options
  • Select an option

  • Save SinZ163/7491e9f97f45b19ba49cf583c2b1401b to your computer and use it in GitHub Desktop.

Select an option

Save SinZ163/7491e9f97f45b19ba49cf583c2b1401b to your computer and use it in GitHub Desktop.
{
//Derived from example from https://gist.github.com/spacechase0/19fbcd2767f7bbfc4937f58975b1a9b9
//"Tue": "830 Trailer 6 5 0/900 ArchaeologyHouse 17 9 2 penny_read/1400 Town 88 100 2/1620 Town 17 90 3 penny_wave_left/1750 Forest 92 20 3 penny_wave_left/1830 Trailer 4 9 1 penny_sleep",
"Tue": {
"Priority": 5,
"DayOfWeek": "Tue",
"Commands": {
"830": {
"Location": "Trailer",
"Tile": "6, 5",
"Facing": "North" // Undocumented what facing is intended to be
},
"900": {
"Location": "ArchaeologyHouse",
"Tile": "17, 9",
"Facing": "South", // Undocumented what facing is intended to be
"ArrivalCommands": [
{
"Type": "SetAnimation",
"AnimationId": "penny_read"
}
]
},
"1400": {
"Location": "Town",
"Tile": "88, 100",
"Facing": "South"// Undocumented what facing is intended to be
},
"1620": {
"Location": "Town",
"Tile": "17, 90",
"Facing": "West",// Undocumented what facing is intended to be
"ArrivalCommands": [
{
"Type": "SetAnimation",
"AnimationId": "penny_wave_left"
}
]
},
"1750": {
"Location": "Forest",
"Tile": "92, 20",
"Facing": "West",// Undocumented what facing is intended to be
"ArrivalCommands": [
{
"Type": "SetAnimation",
"AnimationId": "penny_wave_left"
}
]
},
"1830": {
"Location": "Trailer",
"Tile": "4, 9",
"Facing": "East",// Undocumented what facing is intended to be
"ArrivalCommands": [
{
"Type": "SetAnimation",
"AnimationId": "penny_sleep"
}
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment