diff --git a/Sebin.md b/Sebin.md index 4d9bc5c..c137c20 100644 --- a/Sebin.md +++ b/Sebin.md @@ -69,15 +69,24 @@ He is also a naughty hornball sometimes. He knows what he's got and he's not afr * truculent ## Clothing style -### Style 1 -* muscle shirt -* short shorts (knee-long) with dangling bands -* sweater bound around waist -* Air Jordans +### Warm Weather +* Tank Top +* Short shorts (knee-long) with dangling bands +* Sweater/Hoodie tied around waist +* Sneakers (Air Jordan style) -### Style 2 -* comfortable loose jeans -* +### Cold Weather +* Coat +* Checkered scarf with short cords +* Hoodie +* Loose Jeans +* Boots + +### Workout +* Sleeveless Hoodie (hood goes on) +* Fingerless Gloves +* Short Shorts +* (barefoot) ## Abilities @@ -103,7 +112,7 @@ Direct body contact with Sebin during overdrive causes 3rd degree burns as he em ### Attacks in Overdrive Form -In this form he is able to burst fire shots emanating from the veins crossing by his arms directly from his hands. This way he doesn't need to spit balls of fire into his hands to use his fire grenades, instead he just creates them from his hands. +In this form he is able to burst fire shots emanating from the veins crossing by his arms directly from his hands. This way he doesn't need to spit balls of fire into his hands to use his fire grenades, instead he just creates them from his hands. He can combine the fire from both hands when he holds them close together (think Goku's Kamehame-ha from Dragon Ball Z). The reach of his fire breath increases dramatically and he can fire it with much greater speed. diff --git a/src/App.vue b/src/App.vue index 7796a07..f17e3fa 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,7 +1,7 @@ diff --git a/src/components/RichFigure.vue b/src/components/RichFigure.vue new file mode 100644 index 0000000..b69ab21 --- /dev/null +++ b/src/components/RichFigure.vue @@ -0,0 +1,61 @@ + + + + + diff --git a/src/mixins/Helper.js b/src/mixins/Helper.js index 2dc48f8..56df1ca 100644 --- a/src/mixins/Helper.js +++ b/src/mixins/Helper.js @@ -11,6 +11,25 @@ export default { return muscles; }, + getKittens(count) { + let kittens = []; + + for (let i = 0; i < count; i++) { + let width = this.getRandomInt(300, 600); + let height = this.getRandomInt(300, 600); + kittens.push(`https://placekitten.com/${width}/${height}`); + } + + return kittens; + }, + + getRandomInt(min, max) { + min = Math.ceil(min); + max = Math.floor(max); + max++; // make it inclusive + return Math.floor(Math.random() * (max - min)) + min; + }, + getClientLocale() { if (navigator.language) { return navigator.languages[0];