localdex 0.2.47__py3-none-any.whl → 0.2.49__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -80,7 +80,26 @@ class PokemonNameNormalizer:
80
80
  return 'necrozma-ultra'
81
81
  else:
82
82
  return 'necrozma'
83
-
83
+ if 'sawsbuck' in name_lower:
84
+ return 'sawsbuck'
85
+ #Oricorio forms
86
+ if 'oricorio' in name_lower:
87
+ if 'baile' in name_lower:
88
+ return 'oricorio-baile'
89
+ elif 'pa' in name_lower:
90
+ return 'oricorio-pau'
91
+ elif 'sensu' in name_lower:
92
+ return 'oricorio-sensu'
93
+ elif 'pom' in name_lower:
94
+ return 'oricorio-pom-pom'
95
+ else:
96
+ return 'oricorio-baile'
97
+
98
+ if 'porygon-z' in name_lower:
99
+ return 'porygon-z'
100
+
101
+ if 'porygon-z' in name_lower:
102
+ return 'porygon-z'
84
103
  # Florges forms
85
104
  if 'florges' in name_lower:
86
105
  return 'florges'