muffin v7.5.13

This commit is contained in:
alydev 2026-08-22 10:25:22 +10:00
parent 911ed68baa
commit acf3e3cb18
69 changed files with 2731 additions and 1425 deletions

View file

@ -185,34 +185,58 @@
"description": "If true, will go to the position in a straight line instead of using pathfinding",
"type": "boolean"
},
"TravelMode": {
"type": "string",
"enum": [
"Auto",
"OnFoot",
"GroundMount",
"Flying"
],
"description": "ROUTE PREFERENCE: How to travel for the full route. Auto lets navigation choose; OnFoot forbids mounting and flying; GroundMount forces a mount but forbids flying; Flying uses flight where it is unlocked. Quest requirements take priority."
},
"ArrivalMode": {
"type": "string",
"enum": [
"Auto",
"StayMounted",
"Land",
"Dismount"
],
"description": "ARRIVAL PREFERENCE: What to do after reaching the destination. This does not change how the route is traveled. Quest requirements take priority."
},
"Mount": {
"type": [
"boolean",
"null"
],
"description": "Travel hint: If true, will mount regardless of distance to position. If false, will unmount. Ignored by SmartNav auto-decide when not set. For quest-mechanical mount requirements, use MountRequired/DismountRequired instead."
"description": "LEGACY COMPATIBILITY: Old per-movement mount hint retained for existing quests. Use TravelMode and ArrivalMode for new paths.",
"deprecated": true
},
"MountRequired": {
"type": "boolean",
"description": "Quest mechanic: the quest requires the player to be mounted (e.g. mounted escort, chocobo race). Takes priority over Mount and auto-decide."
"description": "QUEST REQUIREMENT: Use only when the quest mechanic itself requires being mounted, such as a mounted escort or race. Overrides TravelMode and ArrivalMode."
},
"DismountRequired": {
"type": "boolean",
"description": "Quest mechanic: the quest requires the player to be on foot (e.g. interaction that fails while mounted). Takes priority over Mount and auto-decide."
"description": "QUEST REQUIREMENT: Use only when the quest mechanic itself fails while mounted. Overrides TravelMode and ArrivalMode."
},
"Fly": {
"type": "boolean",
"description": "If true and flying is unlocked in a zone, will use a flight path"
"description": "LEGACY COMPATIBILITY: Old flight hint retained for existing quests. Use TravelMode for new paths.",
"deprecated": true
},
"Land": {
"type": "boolean",
"description": "If true and flying, will attempt to land on the ground"
"description": "LEGACY COMPATIBILITY: Old arrival hint retained for existing quests. Use ArrivalMode for new paths.",
"deprecated": true
},
"Sprint": {
"type": [
"boolean",
"null"
]
],
"description": "GENERAL MOVEMENT: Controls Sprint independently of mount and flight behavior."
},
"ItemId": {
"type": [