changed a lot of things but chrafting

This commit is contained in:
2023-01-13 14:22:17 +01:00
parent 9b8afb14bd
commit 7539863ace
7 changed files with 334 additions and 33 deletions

3
resources/__init_.py Normal file
View File

@@ -0,0 +1,3 @@
from . import (
resources
)

23
resources/resources.py Normal file
View File

@@ -0,0 +1,23 @@
import numpy as np
from ai_economist.foundation.entities.resources import Resource, resource_registry
@resource_registry.add
class RawGem(Resource):
"""Raw Gem that can be processed further"""
name = "Raw_Gem"
color = np.array([241, 233, 219]) / 255.0
collectible = True
@resource_registry.add
class Gem(Resource):
"""Proccesed Gem. Craftable."""
name = "Gem"
color = np.array([241, 233, 219]) / 255.0
collectible = False
craft_recp= {"Raw_Gem": 1}
craft_labour_base= 1