{
  "$schema": "/characters/v2/schemas/state-machine.schema.json",
  "schemaVersion": "1.0.0",
  "kind": "nandarona.character-state-machine",
  "releaseId": "minori@2.4.0",
  "initialState": "bud",
  "states": {
    "bud": {
      "status": "canonical",
      "intent": "実り時を知らせる前の基準状態",
      "allowedNext": [
        "small-fruit",
        "bud"
      ],
      "visualChannel": "growth amount, leaf or root geometry, hinge angle, maturity, branch choice, restrained organic motion"
    },
    "small-fruit": {
      "status": "canonical",
      "intent": "収穫可能時間の成熟表示役としての small-fruit 状態",
      "allowedNext": [
        "growing",
        "bud"
      ],
      "visualChannel": "growth amount, leaf or root geometry, hinge angle, maturity, branch choice, restrained organic motion"
    },
    "growing": {
      "status": "canonical",
      "intent": "収穫可能時間の成熟表示役としての growing 状態",
      "allowedNext": [
        "ripe",
        "bud"
      ],
      "visualChannel": "growth amount, leaf or root geometry, hinge angle, maturity, branch choice, restrained organic motion"
    },
    "ripe": {
      "status": "canonical",
      "intent": "収穫可能時間の成熟表示役としての ripe 状態",
      "allowedNext": [
        "overripe",
        "bud"
      ],
      "visualChannel": "growth amount, leaf or root geometry, hinge angle, maturity, branch choice, restrained organic motion"
    },
    "overripe": {
      "status": "canonical",
      "intent": "収穫可能時間の成熟表示役としての overripe 状態",
      "allowedNext": [
        "drop",
        "bud"
      ],
      "visualChannel": "growth amount, leaf or root geometry, hinge angle, maturity, branch choice, restrained organic motion"
    },
    "drop": {
      "status": "canonical",
      "intent": "収穫可能時間の成熟表示役としての drop 状態",
      "allowedNext": [
        "bud"
      ],
      "visualChannel": "growth amount, leaf or root geometry, hinge angle, maturity, branch choice, restrained organic motion"
    }
  },
  "events": {
    "activate": "small-fruit",
    "intensify": "ripe",
    "resolve": "overripe",
    "reset": "bud"
  },
  "guards": [
    "食用可能だと保証しない",
    "色だけで熟度を示さない",
    "果実へ顔を付けない",
    "Unknown facts must remain unknown and must not be promoted to canonical by a transition.",
    "A transition must preserve common DNA, family DNA, and individual silhouette."
  ]
}
