diff --git a/concept.md b/concept.md index afb18fe..606e699 100644 --- a/concept.md +++ b/concept.md @@ -25,6 +25,8 @@ - [ ] Mini blackjack - [ ] Mini slotmachine - [x] Stores + - [ ] Each store has tabs [buy / sell] + - [ ] Depending on store-itemtype, sell-price is 100% or 70% - [ ] Crop-Store - [ ] Animal Store - [ ] Machine Store (crafting machines) diff --git a/src/assets/gui/border_dark.png b/src/assets/gui/border_dark.png index e7aaca0..6033206 100644 Binary files a/src/assets/gui/border_dark.png and b/src/assets/gui/border_dark.png differ diff --git a/src/assets/gui/border_light.png b/src/assets/gui/border_light.png index d2e6406..3f45dc0 100644 Binary files a/src/assets/gui/border_light.png and b/src/assets/gui/border_light.png differ diff --git a/src/components/CropShopView.vue b/src/components/CropShopView.vue new file mode 100644 index 0000000..3960d9a --- /dev/null +++ b/src/components/CropShopView.vue @@ -0,0 +1,128 @@ + + + + + \ No newline at end of file diff --git a/src/components/ShopView.vue b/src/components/ShopView.vue deleted file mode 100644 index 4f0f954..0000000 --- a/src/components/ShopView.vue +++ /dev/null @@ -1,94 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index ff795f2..b684391 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,6 +1,6 @@ import {createRouter, createWebHistory} from 'vue-router' import FieldView from '@/components/CropField' -import ShopView from "@/components/ShopView"; +import CropShopView from "@/components/CropShopView"; import InventoryView from "@/components/InventoryView"; const routes = [ @@ -16,7 +16,7 @@ const routes = [ { path: '/shop', name: 'shop', - component: ShopView, + component: CropShopView, meta: { title: 'Shop', background: '/assets/backgrounds/planks.jpg', @@ -36,7 +36,7 @@ const routes = [ { path: '/barn', name: 'barn', - component: ShopView, + component: CropShopView, meta: { title: 'Barn', background: '/assets/backgrounds/planks.jpg',