diff options
Diffstat (limited to 'views/gemini/storage.twig')
-rw-r--r-- | views/gemini/storage.twig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/gemini/storage.twig b/views/gemini/storage.twig new file mode 100644 index 0000000..c9ecd4f --- /dev/null +++ b/views/gemini/storage.twig @@ -0,0 +1,16 @@ +=> /village/{{ village.x }}/{{ village.y }} Back + +# Configure Storage + +=> /village/{{ village.x }}/{{ village.y }}/storage/config/wood {{ village.getStorageConfig(village.id).wood }}% Wood +=> /village/{{ village.x }}/{{ village.y }}/storage/config/clay {{ village.getStorageConfig(village.id).clay }}% Clay +=> /village/{{ village.x }}/{{ village.y }}/storage/config/iron {{ village.getStorageConfig(village.id).iron }}% Iron +=> /village/{{ village.x }}/{{ village.y }}/storage/config/food {{ village.getStorageConfig(village.id).food }}% Food + +# Resources + +Wood: {{ village.wood }} / {{ village.getStorage(village.id).getResourceCapacity('wood') }} - Increment: {{ village.getBuilding(village.id, 'WoodCutter').getResourceIncrementor() }} +Clay: {{ village.clay }} / {{ village.getStorage(village.id).getResourceCapacity('clay') }} - Increment: {{ village.getBuilding(village.id, 'ClayPit').getResourceIncrementor() }} +Iron: {{ village.iron }} / {{ village.getStorage(village.id).getResourceCapacity('iron') }} - Increment: {{ village.getBuilding(village.id, 'IronMine').getResourceIncrementor() }} +Food: {{ village.food }} / {{ village.getStorage(village.id).getResourceCapacity('food') }} - Increment: {{ village.getBuilding(village.id, 'Farm').getResourceIncrementor() }} +Storage Capacity: {{ village.getStorage(village.id).getCapacity() }} |