Spelling exceptions and one wmllint tweak.
This commit is contained in:
parent
cf68488d6e
commit
706395577b
3 changed files with 4 additions and 2 deletions
|
@ -17,6 +17,7 @@
|
|||
cost=19
|
||||
usage=fighter
|
||||
profile=portraits/drakes/clasher.png
|
||||
#wmllint: general spellings clasher Clasher clashers Clashers
|
||||
description= _ "The Clashers are members of a unique caste among the drakes. Their thick armor, while compensating for the drakes' natural weakness against spears and arrows, is so heavy and restricting that they are not able to fly or muster enough breath to use their inner fire. They have embraced this handicap, completely encasing their wings to emphasize that they do not need flight to triumph in battle.
|
||||
|
||||
This is also the only caste that is allowed to break taboo and fight with spears in addition to the drake's traditional metal claws, which makes them particularly good at ""resolving"" territorial disputes with other drakes and enforcing the laws of their tribe."+{SPECIAL_NOTES}+{SPECIAL_NOTES_FIRSTSTRIKE}
|
||||
|
|
|
@ -9,6 +9,7 @@ map_extensions = ("map", "mask")
|
|||
image_extensions = ("png", "jpg", "jpeg")
|
||||
sound_extensions = ("ogg", "wav")
|
||||
vc_directories = (".git", ".svn")
|
||||
l10n_directories = ("l10n",)
|
||||
resource_extensions = map_extensions + image_extensions + sound_extensions
|
||||
image_reference = r"[A-Za-z0-9{}.][A-Za-z0-9_/+{}.-]*\.(png|jpg)(?=(~.*)?)"
|
||||
|
||||
|
@ -89,7 +90,7 @@ class Forest:
|
|||
self.forest.append(subtree)
|
||||
for i in range(len(self.forest)):
|
||||
# Ignore version-control subdirectories and Emacs tempfiles
|
||||
for dirkind in vc_directories:
|
||||
for dirkind in vc_directories + l10n_directories:
|
||||
self.forest[i] = filter(lambda x: dirkind not in x, self.forest[i])
|
||||
self.forest[i] = filter(lambda x: '.#' not in x, self.forest[i])
|
||||
self.forest[i] = filter(lambda x: not os.path.isdir(x), self.forest[i])
|
||||
|
|
|
@ -653,7 +653,7 @@ declared_spellings = {"GLOBAL":["I'm", "I've", "I'd", "I'll",
|
|||
# game jargon
|
||||
"melee", "arcane", "day/night", "gameplay",
|
||||
"hitpoint", "hitpoints", "FFA", "multiplayer",
|
||||
"playtesting", "respawn",
|
||||
"playtesting", "respawn", "respawns",
|
||||
"WML", "HP", "XP", "AI", "ZOC", "YW",
|
||||
"L0", "L1", "L2", "L3",
|
||||
# archaisms
|
||||
|
|
Loading…
Add table
Reference in a new issue