by Adrock on 8/18/15, 2:07 AM with 44 comments
by ericdykstra on 8/18/15, 3:24 AM
From MtG and its everchanging sets, significant expense, multiple formats and awful online experience/UI came Hearthstone. A card game that tens of millions have gotten into. It looks fantastic, takes no initial investment, and costs a fraction of what a MtGO deck costs to go from nothing to a top tier competitive deck.
Other examples:
- Roguelikes -> Diablo
- RTS -> Warcraft & Starcraft
- MMO -> World of Warcraft
- DotA/2 -> Heroes of the Storm
- Team Fortress/2 -> Overwatch (not yet released)
It's an interesting case study on a company that's succeeded in taking genres usually reserved for a niche audience and bringing them to the masses. It's not a company without flaws and missteps, but it's an interesting lesson in bringing existing markets to a wider audience. I wonder if there's something more general that can be gleaned from their strategy to products outside of games.
by MrGando on 8/18/15, 4:45 AM
It's a disgrace. And should be a software case study.
PS: been playing MtG since 1995
by Yhippa on 8/18/15, 5:27 AM
I have no idea what is going on over there. People had to have been throwing money hand over fist to allow them to fail so badly and keep going.
It frustrates me to no end that we don't have anything playable on the web or all over mobile. DotP and Duels Origins don't count. I feel that this type of thing should have been figured out.
I also wonder what internal conversations were going on about the Hearthstone ascendant. I keep hearing that they're not trying to do the same thing and that they're not truly competitors but I see a whole generation of kids and adults that have moved on to that. I like the deep play of MtG but Hearthstone just feels holistically better.
by AndrewStephens on 8/18/15, 2:40 AM
I hear the recent versions on MtGO are better, but it still isn't cross-platform or system friendly. It's a shame, because the basic game shone through the cruddy front-end and the servers actually enforced the rules well.
by minimaxir on 8/18/15, 2:33 AM
I gave up in college after I learned that Magic the Gathering is actually kinda expensive.
by Lazare on 8/18/15, 5:23 AM
http://thedailywtf.com/articles/Do-You-Believe-In-Magic-Onli...
by stevecalifornia on 8/18/15, 3:44 AM
Our game, from the start, was built to: 1) playable from the web with no client (1mb flash, I suppose) 2) bi-directional socket based to avoid polling and be snappy 3) server is scalable horizontally 4) adding complex cards and rules will not require a client update and would be easy.
We managed to complete all these goals and produce what I still consider to be our magnum opus of software development.
The scaling worked by having socket servers provide the end-point to the client, and then behind the socket servers were chat services, game services, trading services, card building services and deck services. So, lets say we had 4 socket servers running: you and I might end up on different socket servers, but we could still play against each other because all the socket servers are doing is relaying your commands to a game server that is running our game. In order to scale, we just add more servers. (Also, if we get disconnected you can reconnect easily. Also, spectating is easy.)
My friend came up with the idea of making the Flash front-end use generic commands. So instead of the server telling the front-end "Ship A attacks Ship B for 5 damage" it says "Draw a red arrow from Card #123 to Card #456 and display a red number 5". This allowed us to make cards that did all kinds of crazy things without having to do anything to the client. To implement a card that does damage to all of a player's ships you just have to update the server to send the command "Draw a red arrow from Card #123 to Card #456, Card #789, etc...".
Finally, the core game engine on the server was an event loop. Thus, making new cards and rules was super easy because all you had to do in code was say "I want this new card to subscribe to the Player Draw Card event, and in that event code: "if drawer is this.owner, draw twice the amount as regular and then this.sendtograve." I was continually blown away by what crazy cards we could make up and how little code it took to implement.
As we were creating this game our day jobs became more and more serious and when we finally had the final version complete we both agreed to burn the code and resources to DVD and put it on the shelve. The idea of starting a new journey in marketing and building a company was overwhelming. (Just three months ago I got it all running in the cloud with very little effort for nostalgias sake).
I still think about pinging WOTC and asking if they'd like to see what we have and maybe make use of it. I knew WOTC had an online version of MOTG but I had NO idea it had so many rough patches or I would have been down in front of their office with a sign asking them to look at what we have.
If anyone from WOTC or other would like to see or talk about the game, feel free to message me.
by Hosohoso on 8/18/15, 4:40 AM
by cornhomb on 8/18/15, 5:24 PM
by praptak on 8/18/15, 6:41 AM
by CurtMonash on 8/18/15, 10:37 AM