poker_changeOrderBuildupFactor
Adjusts the sequence of material buildup factors in task management to optimize workflow order and resource allocation.
Instructions
ビルドアップ係数の順序を変更します
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| material | Yes | 順序を変更する材料名 | |
| newIndex | Yes | 新しいインデックス位置 | 
Input Schema (JSON Schema)
{
  "properties": {
    "material": {
      "description": "順序を変更する材料名",
      "type": "string"
    },
    "newIndex": {
      "description": "新しいインデックス位置",
      "minimum": 0,
      "type": "integer"
    }
  },
  "required": [
    "material",
    "newIndex"
  ],
  "type": "object"
}