added mocks for saperpage

This commit is contained in:
Kostya
2023-12-03 09:00:22 +03:00
parent feb88a8e08
commit 5d2906e23a
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
export default [
{
crystals: 1,
diamonds: 1,
steps: 'x1.2'
},
{
crystals: 5,
diamonds: 5,
steps: 'x1.5'
},
{
crystals: 10,
diamonds: 10,
steps: 'x1.8'
},
{
crystals: 24,
diamonds: 50,
steps: 'x2'
},
{
diamonds: 100,
steps: 'x2.2'
},
{
diamonds: 'max',
steps: 'x2.5'
}
]

View File

@@ -29,6 +29,7 @@ import ChatComponent from "@/components/ChatComponent.vue";
import AsideBarElement from "@/components/AsidebarComponent.vue";
import HeaderElementPage from "@/components/HeaderComponent.vue";
import '@/assets/css/PagesStyles/games-pages/saper.css'
import SaperNumbers from "@/mocks/SaperNumbers";
export default {
components: {ChatComponent, HeaderElementPage, AsideBarElement }