Class: Game_Enemy Deprecated

Inherits:
Game_Battler show all
Defined in:
scripts/00600 Script_RMXP/00600 Game_Battler.rb

Overview

Deprecated.

Not used by the core.

Instance Attribute Summary

Attributes inherited from Game_Battler

#animation_hit, #animation_id, #battler_hue, #battler_name, #blink, #critical, #damage, #hidden, #hp, #sp, #states, #white_flash

Instance Method Summary collapse

Methods inherited from Game_Battler

#agi, #atk, #dead?, #dex, #eva, #exist?, #hit, #int, #mdef, #pdef, #str

Constructor Details

#initialize(troop_id, member_index) ⇒ Game_Enemy

Returns a new instance of Game_Enemy.



96
97
98
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 96

def initialize(troop_id, member_index)
  super()
end

Instance Method Details

#actions



112
113
114
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 112

def actions
  return []
end

#exp



116
117
118
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 116

def exp
  return 1
end

#gold



120
121
122
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 120

def gold
  return 1
end

#id



100
101
102
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 100

def id
  return 0
end

#index



104
105
106
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 104

def index
  return 0
end

#item_id



124
125
126
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 124

def item_id
  return 0
end

#name



108
109
110
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 108

def name
  return nil.to_s
end

#screen_x



128
129
130
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 128

def screen_x
  return 0
end

#screen_y



132
133
134
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 132

def screen_y
  return 0
end

#screen_z



136
137
138
# File 'scripts/00600 Script_RMXP/00600 Game_Battler.rb', line 136

def screen_z
  return 0
end