same ahah
Feronious is the hardest boss in the game... You need to be lucky and have steaks and dust to kill him
drop weapons from the arena.
Very charming game ! good arts, myusic and gameplay, the progressive difficulty is nice. I only found 1 bug : units that are positioned all the way to the top of the map can't attack; as the UI appear outside of the screen. Honestly that's about it, if you liked fire emblem and Dawn of war this game is for you
Edit : I just finished the game, and now i crave for more. In the future, a freeplay mode or multiplayer (i know it's difficult) would be welcome
So i started by creating my scene and a "piece" sprite with dummy ugly drawings.
Here you can see the terrible drawings, and also, because the board is fixed, i made it as a sprite and not as a map object (Is it okay ?) Also, the "move with wasd" thing doesn't work, so i got to zoom in and out to move.
And so i started my first script : the thing that makes the pieces follow the mouse when clicked. My idea was that we check if the left button is clicked, and that if it's true, if the piece is at the same position as the mouse, we update the piece's position with the mouse's one.
But MousePosition gives me a Vector2 while actor.getPosition gives me a Vector3 and i can't compare those :/ (i know it's casting but i don't how to do that in typescript yet)
So, asserting Vector3 as a Vector2 is impossible because of incompatible methods; so instead i compared Vector2 y with Vector3 y and Vector2 x with Vector3 x. I ran without errors :D but now i have a piece coming out of the void, and that follows the mouse but not too much lol.
MMMMMmmmh i have a weird problem, i get mouse position and actor position, but even if the mouse is over the actor, their coordinates aren't even close ? Wth O_O
Okay, i used a Ray to check when i click my object, it seems to be better but i still have the same problem : Mouse and Actors coordinates are never the same in super powers ? like, i get it, one is 3d and the other is 2d; but when x and y are compared they're nooooot the same at all :||||
Hello, Welcome to my devlog page.
I hear of SuperPowers on twitter i think, when it just came out. I immediatly thought "Woah that's awesome, i can finally try to seriously make a game !" (i already tried, but because i started from 0 i quickly got bored before all this work).
So i downloaded the Windows 64 Bits version, that would run very fastly on my gaming PC, and never even tried.
Few months later, i'm at uni, i have some more development experience, and because i have a game development class, i'm going to try for real; the teacher advised us to use "Unity" or such tools, but now i'm not not home anymore, and all i got is an ashtmatic 32-bits, 6 years old linux laptop. I'm writing this to motivate myself somehow, and maybe get help from "real" game devs ?
So, to show what i've done in the past you can check this : https://github.com/Orsucciu/ShantaeDance my first attempt at game; you see it didn't went far at all, and even tired me for sometimes.
Last year, i did this : https://github.com/Orsucciu/ProjectKalah, which is slightly better but still, not very good.
Both of them were done over the times of months, on an irregular fashion, and kinda abandoned at the video games orphanage (don't bother trying them they're not fun at all)
So today, i'm going to try to make a "Quarto" game, it's one of those games my parents had in the house, (it's this : https://en.wikipedia.org/wiki/Quarto_(board_game) ), i think it's not *too* hard and still let me space to add features if i'm very good at it.
Without wasting more time, here's my objectives for this project :
-2D game
-Played 1v1 human versus human (i'm bad at AIs :| )
-Has menus (And not click and the game starts right off)
-You can switch between the two sets of rules
-To put the pieces on the board, you drag and drop them (it's fancy i wanna do this instead of having them teleport)
I don't think it's too ambitious, but please give me your thoughts and opinions about this :)