๐Ÿ“ฆ RobLoach / vscode-unciv

๐Ÿ“„ snippets.json ยท 39 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39{
  "Unciv Building": {
    "scope": "jsonc",
    "prefix": "building",
    "body": [
      "{",
      "    \"name\": \"${1:name}\",",
      "    \"cost\": ${2:-1},",
      "    \"production\": ${3:0},",
      "    \"food\": ${4:0},",
      "    \"gold\": ${5:0},",
      "    \"science\": ${6:0},",
      "    \"culture\": ${7:0},",
      "    \"happiness\": ${8:0},",
      "    \"faith\": ${9:0},",
      "    \"maintenance\": ${10:0},",
      "    \"isWonder\": ${11:false},",
      "    \"isNationalWonder\": ${12:false},",
      "    \"requiredBuilding\": \"${13:}\",",
      "    \"requiredTech\": \"${14:}\",",
      "    \"requiredResource\": \"${15:}\",",
      "    \"requiredNearbyImprovedResources\": [${16:}],",
      "    \"replaces\": \"${17:}\",",
      "    \"uniqueTo\": \"${18:}\",",
      "    \"cityStrength\": ${19:0},",
      "    \"cityHealth\": ${20:0},",
      "    \"hurryCostModifier\": ${21:0},",
      "    \"quote\": \"${22:}\",",
      "    \"uniques\": [${23:}],",
      "    \"percentStatBonus\": {${25:}},",
      "    \"greatPersonPoints\": {${26:}},",
      "    \"specialistSlots\": {${27:}},",
      "    \"civilopediaText\": [${28:}]",
      "},"
    ],
    "description": "An individual Unciv Building."
  }
}