#include "ConsumableObject.h"

void ConsumableObject::set_potency(const Range<int> & range) {
	this->potency_min = range.min;
	this->potency_max = range.max;
}

Range<int> ConsumableObject::get_potency() const {
	return { this->potency_min, this->potency_max };
}