class Potato

Attributes

condition[RW]
size[RW]
title[RW]

Public Class Methods

new(size:) click to toggle source
# File lib/ingredients.rb, line 42
def initialize(size:)
  @size = size
  @condition = 0
  @title = '(potato)'
end

Public Instance Methods

cuttable?() click to toggle source
# File lib/ingredients.rb, line 48
def cuttable?
  true
end
raw_eatable?() click to toggle source
# File lib/ingredients.rb, line 52
def raw_eatable?
  true
end