localdex 0.2.47__py3-none-any.whl → 0.2.48__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.
@@ -81,6 +81,24 @@ class PokemonNameNormalizer:
81
81
  else:
82
82
  return 'necrozma'
83
83
 
84
+ #Oricorio forms
85
+ if 'oricorio' in name_lower:
86
+ if 'baile' in name_lower:
87
+ return 'oricorio-baile'
88
+ elif 'pa' in name_lower:
89
+ return 'oricorio-pau'
90
+ elif 'sensu' in name_lower:
91
+ return 'oricorio-sensu'
92
+ elif 'pom' in name_lower:
93
+ return 'oricorio-pom-pom'
94
+ else:
95
+ return 'oricorio-baile'
96
+
97
+ if 'porygon-z' in name_lower:
98
+ return 'porygon-z'
99
+
100
+ if 'porygon-z' in name_lower:
101
+ return 'porygon-z'
84
102
  # Florges forms
85
103
  if 'florges' in name_lower:
86
104
  return 'florges'