module Rubikame::Kamenriderable

Public Instance Methods

dash() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 33
def dash
  raise NotImplementedError
end
height() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 13
def height
  raise NotImplementedError
end
jump() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 25
def jump
  raise NotImplementedError
end
kick() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 29
def kick
  raise NotImplementedError
end
name() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 9
def name
  raise NotImplementedError
end
punch() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 21
def punch
  raise NotImplementedError
end
rider_kick_power() click to toggle source

Calculate how strong this rider is !

# File lib/rubikame/kamenriderable.rb, line 5
def rider_kick_power
  height * weight + punch + jump + kick + dash
end
weight() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 17
def weight
  raise NotImplementedError
end
year() click to toggle source
# File lib/rubikame/kamenriderable.rb, line 37
def year
  raise NotImplementedError
end