More or less standardised separator comments in the code

This commit is contained in:
Maruno17
2024-06-27 21:21:26 +01:00
parent 225549bfce
commit 509a414f37
198 changed files with 1907 additions and 1263 deletions

View File

@@ -1,8 +1,11 @@
#===============================================================================
#
#===============================================================================
class Pokemon
#=============================================================================
# Mega Evolution
#-----------------------------------------------------------------------------
# Mega Evolution.
# NOTE: These are treated as form changes in Essentials.
#=============================================================================
#-----------------------------------------------------------------------------
def getMegaForm
ret = 0
GameData::Species.each do |data|
@@ -53,10 +56,10 @@ class Pokemon
return message_number || 0
end
#=============================================================================
# Primal Reversion
#-----------------------------------------------------------------------------
# Primal Reversion.
# NOTE: These are treated as form changes in Essentials.
#=============================================================================
#-----------------------------------------------------------------------------
def hasPrimalForm?
v = MultipleForms.call("getPrimalForm", self)
return !v.nil?