{"author_link":"\/users\/gullyngames","author_name":"GullynGames","author_uid":"1128705","comments":[{"author_name":"NachtWitch","author_uid":"1160934","time":"2019-10-07T20:51:36Z","epoch":1570481496,"modified":1570481496,"text":"interesting subission, the colours are really good","likes":0,"format":"md"},{"author_name":"Hajden","author_uid":"1162954","time":"2019-10-07T21:14:57Z","epoch":1570482897,"modified":1570482897,"text":"The style is odd, which is interesting. But the pacing is slow and combat didn't really intrigue me for long. Is there any progression in player's abilities? (movement speed? shooting speed? something else?)","likes":1,"format":"md"},{"author_name":"Rensei","author_uid":"1167604","time":"2019-10-07T22:50:21Z","epoch":1570488621,"modified":1570488621,"text":"Nice Binding of Isaac inspired submission. I liked that there was multiple different enemy designs. The rooms felt a bit empty and some enemies were relly difficult to defeat, but I liked it overall :smile:","likes":1,"format":"md"},{"author_name":"TCiceroDev","author_uid":"1006023","time":"2019-10-08T00:39:45Z","epoch":1570495185,"modified":1570495185,"text":"Nice Work! I feel that the player should feel more progression throughout game. Also I think it could have fit the  theme a little better. Overall great job! :) ","likes":1,"format":"md"},{"author_name":"tobb","author_uid":"1162686","time":"2019-10-09T21:58:26Z","epoch":1570658306,"modified":1570658306,"text":"Simple and enjoyable gameplay with straightforward controls. Could use some more progression throughout the game and the shooting SFX got a little repetitive after a while, adding some pitch variation could be a simple fix :)","likes":1,"format":"md"},{"author_name":"ModdingMachine","author_uid":"1165808","time":"2019-10-09T22:43:37Z","epoch":1570661017,"modified":1570661017,"text":"Cool game! pretty challenging, but once I got the hang of it it became quite fun. I really liked how you could go back into rooms you hade discovered and they wouldn't have changed.","likes":1,"format":"md"},{"author_name":"coatline","author_uid":"1078924","time":"2019-10-14T21:32:18Z","epoch":1571088738,"modified":1571088836,"text":"Neat game. I wish that there was more to it then just running around while shooting enemies. It would be cool to have an indicator for how much health an enemy has. I did like the way you showed what enemy did what with the lines being the smashers and the ones with the dots shooting more than one bullet. It would be nice to have different classes like a brute class or class that was faster than others. Also adding to that idea, you could make the player choose one of those classes at the beginning of the game. This I think would make the game more interesting as well as more fun to play. :thumbsup: ","likes":1,"format":"md"},{"author_name":"dans17","author_uid":"1160665","time":"2019-10-23T04:36:07Z","epoch":1571805367,"modified":1571805367,"text":"Nice roguelike! I would like to see more variation in environment and a quicker progression.","likes":1,"format":"md"},{"author_name":"itsdanidre","author_uid":"1035824","time":"2019-10-23T04:37:18Z","epoch":1571805438,"modified":1571805438,"text":"From one HTML5 Pure Javascript Game Programmer to another, a job well done! It was definitely hard making my own engine while doing the Ludum Dare :sweat_smile: \n\nTo the game, it's really cool you were able to make it into a dungeon-like. Although the trick simply became \"circle them and shoot\"\n\nBig question though...\n\n### How do you do rotations! :open_mouth: Are you using images, or HTML5's built in drawRect to your advantage?\n\n## Regardless, nice game! (And that's NOT because of my bias since you made it with plain JS :eyes:)","likes":3,"format":"md"},{"author_name":"GullynGames","author_uid":"1128705","time":"2019-10-23T22:47:27Z","epoch":1571870847,"modified":1571870858,"text":"@itsdanidre Thanks!\n\nI do rotations with:\n\nvar x = mouse.x;\n\nvar y = mouse.y;\n\nplayer.rotation = Math.atan2(y - player.y, x - player.x) - Math.PI \/ 2;\n\n\nThat's to get the player's rotation whenever the mouse is moved.\n\nI do use context.drawImage to render the images on the screen.","likes":2,"format":"md"},{"author_name":"niborious","author_uid":"1003511","time":"2019-10-24T02:30:46Z","epoch":1571884246,"modified":1571884246,"text":"@itsdanidre @gullyngames Love to see other pure js developers! :D (as you can tell by my pic lol)\nI used Threejs this time, so not sure if that counts as pure anymore haha\n\n![dungeon-of-souls.png](\/\/\/raw\/7bd\/z\/29cf6.png)\nI Beat it!\nNice score lol\n\n### Design-wise,\nThe starting shooting speed and enemy health \/ number of enemies made the game feel really slow starting off.\nThe mechanics of adding fragments was pretty cool\n\nI think the map in the top right could be more helpful if it showed more than just your current room, and the full map would be Way more helpful if it showed untraveled adjacent rooms so I know where I need to check next or where the dead ends are.\n\nAfter killing the boss I got\n```Uncaught ReferenceError: enemies is not defined\n    at Player.update (player.js:106)\n    at update```\nin the console, you are also still console logging color information about transitions :P \n\n### Overall,\nProps for proc gen!\nThe music is nice. Love that you made everything yourself, if you made the music too.\nAdjusting the attack speed and move speed could really help a lot.\n\nbtw @itsdanidre if u are asking about canvas rotations u want to save, translate, rotate, restore, \njust google js canvas rotations https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/API\/CanvasRenderingContext2D\/rotate","likes":2,"format":"md"},{"author_name":"itsdanidre","author_uid":"1035824","time":"2019-10-24T03:27:23Z","epoch":1571887643,"modified":1571887643,"text":"@niborious UNPUREEEE! :rofl: :rofl: :rofl:  Although, going into the Ludum Dare I did promise myself to learn a pre-existing engine for my next game; but heck by the end I was so proud of my own, I'm gonna keep working on the spaghetti code that is the game I've made :joy: \n\nI had initially googled it, and all the translate and restore stuff brought a bad taste to me from a previous tutorial attempt (the player would rotate, but the axis would be skewed), so it'd also move off screen :sweat_smile: \n\nHowever, after looking at the source code from @gullyngames's game :eyes: I understood the actual process; I originally thought I would have had to draw a rotated image on an empty invisible canvas, then send the pixeldata to the main canvas to be displayed..which deterred me, since I'm not sure if that'll slow down or speed up rendering (constantly sending new pixel datas)\n\n\nNow though, after creating my own vcam and rendering system, I think I know a way to easily incorporate rotations into my game, which I'll definitely use for future updates. The only question now, is if all those *save, translate, rotate, restore* calls would slow down the game or not. :thinking: ","likes":1,"format":"md"},{"author_name":"Mattias Cibien","author_uid":"1160195","time":"2019-10-24T05:42:20Z","epoch":1571895740,"modified":1571895740,"text":" Very nice gameplay. Kudos for doing it in plain JS. \ud83d\udc4d","likes":1,"format":"md"},{"author_name":"Igoreshka","author_uid":"1132767","time":"2019-10-24T11:35:15Z","epoch":1571916915,"modified":1571916915,"text":"That's fun, but game like that needs some upgrades I think :sweat_smile: ","likes":1,"format":"md"},{"author_name":"GullynGames","author_uid":"1128705","time":"2019-10-24T11:48:18Z","epoch":1571917698,"modified":1571917698,"text":"@niborious Thanks for the error and suggestions!\n\nI was logging the transitions because they were the last thing I did... Forgot to remove the console.log\n\n@igoreshka That's what I was planning to do next. I only had a few hours left and thought I wouldn't have enough time.","likes":0,"format":"md"},{"author_name":"exilegl","author_uid":"1000755","time":"2019-10-25T18:57:39Z","epoch":1572029859,"modified":1572029859,"text":"I like the pacman looking mini boss thing. Perhaps a bit more hp dropped by the enemies would be good (or maybe I'm just bad :p) \n\nHere's how I've done so far :confetti_ball: \n\n![Screenshot from 2019-10-25 13-55-19.png](\/\/\/raw\/3f2\/z\/29d69.png)","likes":1,"format":"md"}],"format":"md","images":["ld45\/164122-aa717ca220ce76fc72cc87ba9f74a444.png"],"links":[{"url":"https:\/\/gullyngames.itch.io\/dungeon-of-souls","text":"Youtube"}],"metadata":{"g_key":"56187","g_author":"1128705","g_event":"LD45","g_eventkey":"78","g_subevent":"JAM","g_urlkey":"264208","g_title":"Dungeon of Souls","g_status":"PVT1","g_place":"886","g_commentcount":"16","g_site2_node_id":"164122","g_hide":"N","g_has_icon":"Y","g_rqueue":"0","g_random":"0"},"nds":{"n_key":"164122","n_urlkey":"264208","n_parent":"159347","n_path":"\/events\/ludum-dare\/45\/dungeon-of-souls","n_slug":"dungeon-of-souls","n_type":"item","n_subtype":"game","n_subsubtype":"jam","n_author":"128705","n_created":"1569966181","n_modified":"1570481129","n_version":"512386","n_status":"COMMIT"},"node":{"id":164122,"parent":159347,"superparent":9,"author":128705,"type":"item","subtype":"game","subsubtype":"jam","published":"2019-10-07T20:45:29Z","created":"2019-10-01T21:43:01Z","modified":"2019-10-07T20:45:29Z","version":512386,"slug":"dungeon-of-souls","name":"Dungeon of Souls","body":"![Screen Shot 2019-10-06 at 6.08.07 PM.png](\/\/\/raw\/1c6\/f1\/z\/266f2.png)\n\n**Controls:**\n\nWASD or arrow keys to move\n\nClick to shoot\n\nPress M for Map\n\nExplore the Dungeon of Souls and try to find the pieces of your soul, fragmented many years ago by the King of Souls. Beware of the empty souls guarding the dungeon.\n\n**About**\n\nDungeon of Souls is a roguelike top-down dungeon shooter where your goal is to find the fragments of your soul by defeating bosses guarding three other fragments of your soul.\n\n**Development**\n\nI made this game for the Jam, in three days. It was made with HTML5 Canvas, and plain Javascript.","meta":{"author":[128705],"cover":"\/\/\/content\/1c6\/f1\/z\/26711.png","link-01-tag":[42332],"link-02":"https:\/\/gullyngames.itch.io\/dungeon-of-souls","link-02-tag":[42336]},"path":"\/events\/ludum-dare\/45\/dungeon-of-souls","parents":[1,5,9,159347],"love":0,"notes":16,"notes-timestamp":"2019-10-25T18:57:39Z","grade":{"grade-01":25,"grade-02":25,"grade-03":25,"grade-04":25,"grade-05":25,"grade-06":23,"grade-07":20,"grade-08":21},"magic":{"cool":93.725825612476,"feedback":19,"given":19.875,"grade":23.625,"grade-01-average":3.087,"grade-01-result":886,"grade-02-average":3,"grade-02-result":772,"grade-03-average":2.761,"grade-03-result":878,"grade-04-average":2.957,"grade-04-result":814,"grade-05-average":2.652,"grade-05-result":969,"grade-06-average":2.881,"grade-06-result":571,"grade-07-average":2.472,"grade-07-result":669,"grade-08-average":2.763,"grade-08-result":950,"smart":8.1274354109872}},"text":"![Screen Shot 2019-10-06 at 6.08.07 PM.png](\/\/\/raw\/1c6\/f1\/z\/266f2.png)\n\n**Controls:**\n\nWASD or arrow keys to move\n\nClick to shoot\n\nPress M for Map\n\nExplore the Dungeon of Souls and try to find the pieces of your soul, fragmented many years ago by the King of Souls. Beware of the empty souls guarding the dungeon.\n\n**About**\n\nDungeon of Souls is a roguelike top-down dungeon shooter where your goal is to find the fragments of your soul by defeating bosses guarding three other fragments of your soul.\n\n**Development**\n\nI made this game for the Jam, in three days. It was made with HTML5 Canvas, and plain Javascript.","title":"Dungeon of Souls"}