Standardise using enum instead of string (#10570)

* Standardise using enum instead of string

* Standardise enum instead of string
This commit is contained in:
Why-not-now
2023-11-24 22:16:49 +08:00
committed by GitHub
parent e9d3c153dc
commit ba5e658c9e
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ Each belief can have the following attributes:
| Attribute | Type | Optional | Notes |
| --------- | ---- | -------- | ----- |
| name | String | Required | Name of the belief |
| type | String | Required | The type of the belief. Valid values are: "Pantheon", "Follower", "Founder" and "Enhancer". |
| type | Enum | Required | Pantheon, Follower, Founder or Enhancer. |
| uniques | List of Strings | defaults to none | The unique abilities this belief adds to cities following it. May be chosen from the list of building uniques [here](../Unique-parameters.md#buildings-only), as well as the general uniques on that page |
| civilopediaText | List | Default empty | see [civilopediaText chapter](5-Miscellaneous-JSON-files.md#civilopedia-text) |