stellaris-validate
Verify compatibility of triggers, effects, modifiers, scopes, and localizations with the latest Stellaris version to ensure modding accuracy and functionality.
Instructions
指定したtrigger、effect、modifier、scope、localizationが最新バージョンのStellarisで有効かどうかをチェックします。modding時の互換性確認に便利です。
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| docType | Yes | 検証するドキュメントの種類: triggers (条件), effects (効果), modifiers (修正値), scopes (スコープ), localizations (ローカライゼーション) | |
| element | Yes | 検証する要素名(例: has_technology, add_modifier, naval_capacity) | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "docType": {
      "description": "検証するドキュメントの種類: triggers (条件), effects (効果), modifiers (修正値), scopes (スコープ), localizations (ローカライゼーション)",
      "enum": [
        "triggers",
        "effects",
        "modifiers",
        "scopes",
        "localizations"
      ],
      "type": "string"
    },
    "element": {
      "description": "検証する要素名(例: has_technology, add_modifier, naval_capacity)",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "docType",
    "element"
  ],
  "type": "object"
}