This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcharges.go
78 lines (77 loc) · 10.1 KB
/
charges.go
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package heraldry
var (
OrdinaryPale = Charge{"pale", "pale", "pale", "pales", "", "a", false, []string{"ordinary"}}
OrdinaryFess = Charge{"fess", "fess", "fess", "fesses", "", "a", true, []string{"ordinary"}}
OrdinaryCross = Charge{"cross", "cross", "cross", "crosses", "", "a", true, []string{"ordinary"}}
OrdinaryBend = Charge{"bend", "bend", "bend", "bends", "", "a", true, []string{"ordinary"}}
OrdinarySaltire = Charge{"saltire", "saltire", "saltire", "saltires", "", "a", true, []string{"ordinary"}}
OrdinaryChevron = Charge{"chevron", "chevron", "chevron", "chevrons", "", "a", true, []string{"ordinary"}}
OrdinaryChief = Charge{"chief", "chief", "chief", "chiefs", "", "a", true, []string{"ordinary"}}
OrdinaryPile = Charge{"pile", "pile", "pile", "piles", "", "a", true, []string{"ordinary"}}
OrdinaryPall = Charge{"pall", "pall", "pall", "palls", "", "a", true, []string{"ordinary"}}
OrdinaryBordure = Charge{"bordure", "bordure", "bordure", "bordures", "", "a", true, []string{"ordinary"}}
OrdinaryLozenge = Charge{"lozenge", "lozenge", "lozenge", "lozenges", "", "a", false, []string{"ordinary"}}
OrdinaryRoundel = Charge{"roundel", "roundel", "roundel", "roundels", "", "a", false, []string{"ordinary"}}
EagleDisplayed = Charge{"eagle-displayed", "eagle displayed", "eagle", "eagles", "displayed", "an", false, []string{"animal"}}
DragonPassant = Charge{"dragon-passant", "dragon passant", "dragon", "dragons", "passant", "a", false, []string{"animal"}}
GryphonPassant = Charge{"gryphon-passant", "gryphon passant", "gryphon", "gryphons", "passant", "a", false, []string{"animal"}}
FoxPassant = Charge{"fox-passant", "fox passant", "fox", "foxes", "passant", "a", false, []string{"animal"}}
AntelopePassant = Charge{"antelope-passant", "antelope passant", "antelope", "antelopes", "passant", "an", false, []string{"animal"}}
AntelopeRampant = Charge{"antelope-rampant", "antelope rampant", "antelope", "antelopes", "rampant", "an", false, []string{"animal"}}
BatVolant = Charge{"bat-volant", "bat volant", "bat", "bats", "volant", "a", false, []string{"animal"}}
Battleaxe = Charge{"battleaxe", "battleaxe", "battleaxe", "battleaxes", "", "a", false, []string{"weapon"}}
BearHeadCouped = Charge{"bear-head-couped", "bear's head couped", "bear's head", "bear's heads", "couped", "a", false, []string{"animal"}}
BearRampant = Charge{"bear-rampant", "bear rampant", "bear", "bears", "rampant", "a", false, []string{"animal"}}
BearStatant = Charge{"bear-statant", "bear statant", "bear", "bears", "statant", "a", false, []string{"animal"}}
BeeVolant = Charge{"bee-volant", "bee volant", "bee", "bees", "volant", "a", false, []string{"animal"}}
Bell = Charge{"bell", "bell", "bell", "bells", "", "a", false, []string{"instrument", "music"}}
BoarHeadErased = Charge{"boar-head-erased", "boar's head erased", "boar's head", "boar's heads", "erased", "a", false, []string{"animal"}}
BoarPassant = Charge{"boar-passant", "boar passant", "boar", "boars", "passant", "a", false, []string{"animal"}}
BoarRampant = Charge{"boar-rampant", "boar rampant", "boar", "boars", "rampant", "a", false, []string{"animal"}}
BugleHorn = Charge{"bugle-horn", "bugle horn", "bugle horn", "bugle horns", "", "a", false, []string{"instrument", "music"}}
BullPassant = Charge{"bull-passant", "bull passant", "bull", "bulls", "passant", "a", false, []string{"animal"}}
BullRampant = Charge{"bull-rampant", "bull rampant", "bull", "bulls", "rampant", "a", false, []string{"animal"}}
Castle = Charge{"castle", "castle", "castle", "castles", "", "a", false, []string{"structure"}}
Cock = Charge{"cock", "cock", "cock", "cocks", "", "a", false, []string{"animal"}}
Cockatrice = Charge{"cockatrice", "cockatrice", "cockatrice", "cockatrices", "", "a", false, []string{"animal"}}
Crown = Charge{"crown", "crown", "crown", "crowns", "", "a", false, []string{"royalty"}}
DolphinHauriant = Charge{"dolphin-hauriant", "dolphin hauriant", "dolphin", "dolphins", "hauriant", "a", false, []string{"animal"}}
DoubleHeadedEagleDisplayed = Charge{"double-headed-eagle-displayed", "double-headed eagle displayed", "double-headed eagle", "double-headed eagles", "displayed", "a", false, []string{"animal"}}
DragonRampant = Charge{"dragon-rampant", "dragon rampant", "dragon", "dragons", "rampant", "a", false, []string{"animal"}}
EaglesHeadErased = Charge{"eagles-head-erased", "eagle's head erased", "eagle's head", "eagle's heads", "erased", "an", false, []string{"animal"}}
FoxSejant = Charge{"fox-sejant", "fox sejant", "fox", "foxes", "sejant", "a", false, []string{"animal"}}
GryphonSegreant = Charge{"gryphon-segreant", "gryphon segreant", "gryphon", "gryphons", "segreant", "a", false, []string{"animal"}}
HareSalient = Charge{"hare-salient", "hare salient", "hare", "hares", "salient", "a", false, []string{"animal"}}
Hare = Charge{"hare", "hare", "hare", "hares", "", "a", false, []string{"animal"}}
Heron = Charge{"heron", "heron", "heron", "herons", "", "a", false, []string{"animal"}}
HorsePassant = Charge{"horse-passant", "horse passant", "horse", "horses", "passant", "a", false, []string{"animal"}}
HorseRampant = Charge{"horse-rampant", "horse rampant", "horse", "horses", "rampant", "a", false, []string{"animal"}}
LeopardPassant = Charge{"leopard-passant", "leopard passant", "leopard", "leopards", "passant", "a", false, []string{"animal"}}
LionPassant = Charge{"lion-passant", "lion passant", "lion", "lions", "passant", "a", false, []string{"animal"}}
LionRampant = Charge{"lion-rampant", "lion rampant", "lion", "lions", "rampant", "a", false, []string{"animal"}}
LionsHeadErased = Charge{"lions-head-erased", "lion's head erased", "lion's head", "lion's heads", "erased", "a", false, []string{"animal"}}
Owl = Charge{"owl", "owl", "owl", "owls", "", "an", false, []string{"animal"}}
PegasusPassant = Charge{"pegasus-passant", "pegasus passant", "pegasus", "pegasi", "passant", "a", false, []string{"animal"}}
PegasusRampant = Charge{"pegasus-rampant", "pegasus rampant", "pegasus", "pegasi", "rampant", "a", false, []string{"animal"}}
RamRampant = Charge{"ram-rampant", "ram rampant", "ram", "rams", "rampant", "a", false, []string{"animal"}}
RamStatant = Charge{"ram-statant", "ram statant", "ram", "rams", "statant", "a", false, []string{"animal"}}
Rose = Charge{"rose", "rose", "rose", "roses", "", "a", false, []string{"plant"}}
SeaHorse = Charge{"sea-horse", "sea horse", "sea horse", "sea horses", "", "a", false, []string{"animal"}}
SerpentNowed = Charge{"serpent-nowed", "serpent nowed", "serpent", "serpents", "nowed", "a", false, []string{"animal"}}
Squirrel = Charge{"squirrel", "squirrel", "squirrel", "squirrels", "", "a", false, []string{"animal"}}
StagLodged = Charge{"stag-lodged", "stag lodged", "stag", "stags", "", "a", false, []string{"animal"}}
StagStatant = Charge{"stag-statant", "stag statant", "stag", "stags", "", "a", false, []string{"animal"}}
SunInSplendor = Charge{"sun-in-splendor", "sun in splendor", "sun", "suns", "in splendor", "a", false, []string{"heavens"}}
TigerPassant = Charge{"tiger-passant", "tiger passant", "tiger", "tigers", "passant", "a", false, []string{"animal"}}
TigerRampant = Charge{"tiger-rampant", "tiger rampant", "tiger", "tigers", "rampant", "a", false, []string{"animal"}}
Tower = Charge{"tower", "tower", "tower", "towers", "", "a", false, []string{"structure"}}
TwoAxesInSaltire = Charge{"two-axes-in-saltire", "two axes in saltire", "two axes", "two axes", "in saltire", "", false, []string{"weapon"}}
TwoBonesInSaltire = Charge{"two-bones-in-saltire", "two bones in saltire", "two bones", "two bones", "in saltire", "", false, []string{"weapon"}}
UnicornRampant = Charge{"unicorn-rampant", "unicorn rampant", "unicorn", "unicorns", "rampant", "a", false, []string{"animal"}}
UnicornStatant = Charge{"unicorn-statant", "unicorn statant", "unicorn", "unicorns", "statant", "a", false, []string{"animal"}}
WolfPassant = Charge{"wolf-passant", "wolf passant", "wolf", "wolves", "passant", "a", false, []string{"animal"}}
WolfRampant = Charge{"wolf-rampant", "wolf rampant", "wolf", "wolves", "rampant", "a", false, []string{"animal"}}
Wyvern = Charge{"wyvern", "wyvern", "wyvern", "wyverns", "", "a", false, []string{"animal"}}
AvailableCharges = [68]Charge{OrdinaryPale, OrdinaryFess, OrdinaryCross, OrdinaryBend, OrdinarySaltire, OrdinaryChevron, OrdinaryChief, OrdinaryPile, OrdinaryPall, OrdinaryBordure, OrdinaryLozenge, OrdinaryRoundel, EagleDisplayed, DragonPassant, GryphonPassant, FoxPassant, AntelopeRampant, BatVolant, Battleaxe, BearHeadCouped, BearRampant, BearStatant, BeeVolant, Bell, BoarHeadErased, BoarPassant, BoarRampant, BugleHorn, BullPassant, BullRampant, Castle, Cock, Cockatrice, Crown, DolphinHauriant, DoubleHeadedEagleDisplayed, DragonRampant, EaglesHeadErased, FoxSejant, HareSalient, Hare, Heron, HorsePassant, HorseRampant, LeopardPassant, LionPassant, LionRampant, LionsHeadErased, Owl, PegasusPassant, RamRampant, RamStatant, Rose, SeaHorse, Squirrel, StagLodged, StagStatant, SunInSplendor, TigerPassant, TigerRampant, Tower, TwoAxesInSaltire, TwoBonesInSaltire, UnicornStatant, WolfPassant, WolfRampant, Wyvern}
//BrokenCharges = [4]Charge{AntelopePassant, GryphonSegreant, UnicornRampant, SerpentNowed}
)