{"author_link":"\/users\/python-b","author_name":"Python_B","author_uid":1242274,"comments":[{"id":629391,"author_name":"RefraX295","author_uid":"refrax295","epoch":1619461674,"text":"I get \"Access denied\" on the Google Drive link. You may need to set it to public.","format":"md","likes":0,"spam":"N"},{"id":629789,"author_name":"ForeverTrash","author_uid":"forevertrash","epoch":1619463758,"text":"Like @RefraX295 already pointed out I get \u201cAccess denied\u201d on the Google Drive link. You have to set it to public","format":"md","likes":0,"spam":"N"},{"id":630541,"author_name":"phealsout","author_uid":"phealsout","epoch":1619467175,"text":"Is this only for linux?","format":"md","likes":0,"spam":"N"},{"id":630818,"author_name":"LDJam user 240168","author_uid":"240168","epoch":1619468477,"text":"I don't see an actual executable in the downloadable archive, only the source code. Not sure if that's intended, but most people here probably won't know how to compile it or just won't bother. The code uses Makefiles (people on e.g. Windows or Mac don't usually have `make`), `.tar` archives (again, not the most widespread thing), and links a system-provided `sfml` library, which, again, most people probably won't have. So, building this on Windows or Mac would be a nightmare.\n\nThat being said, I love compiling stuff, so I did try it. I'm on Linux, and I already have `sfml` installed. First of all, a few notes on compilation:\n- You use \"cd\" to the source directory, but that doesn't work in my system. In general, each line of a Makefile build rule can be executed in a separate sub-shell, and its working directory doesn't persist across lines. [Here's](https:\/\/gist.github.com\/lisyarus\/7a8d10a2cd82abd8010f2e9717221fae) how you could rewrite this Makefile to make it work\n- You use `ceil` and `floor` functions without including the appropriate `<cmath>` header. It probably worked on your system because some other standard library headers included `<cmath>` by themselves, but you can't count on that across platforms. (also they really are `std::ceil` and `std::floor`, but omitting `std` in this case works on most platforms)\n\nNow about the game itself: looks promising, reminds me of Heroes turn-based combat. The interface needs a lot of work, though, and the exact sequence of actions is a little unclear (e.g. when exactly should I press the skill buttons?). Nevertheless, managed to win a few fights and go deeper before I was killed. Anyways, nice job!\n","format":"md","likes":2,"spam":"N"}],"format":"md","images":["ld48\/wayback-placeholder.png"],"links":[{"url":"https:\/\/github.com\/PythonB\/DDSCld48v\/tree\/master","text":"GitHub"}],"metadata":{"g_key":"76252","g_author":"1242274","g_event":"LD48","g_eventkey":"109","g_subevent":"COMPO","g_urlkey":"370973","g_title":"Dark Dungeons and Scary Creatures (DDSC)","g_status":"WAYBACK","g_place":"99999","g_commentcount":"4","g_site2_node_id":"242278","g_hide":"N","g_has_icon":"Y","g_rqueue":"0","g_random":"0"},"nds":{"n_key":"242278","n_urlkey":"370973","n_parent":"233335","n_path":"\/events\/ludum-dare\/48\/dark-dungeons-and-scary-creatures-ddsc","n_slug":"dark-dungeons-and-scary-creature","n_type":"item","n_subtype":"game","n_subsubtype":"compo","n_author":"242274","n_created":"1619107551","n_modified":"1778614530","n_version":"776000","n_status":"WAYBACK"},"node":{"_collation":{"body_sanitizer":"TextUtils::SanitizeHTML via existing importer","event":"LD48","removed_author":false},"_superparent":9,"_trust":1,"author":242274,"body":"Dungeon crawler game for MacOSX\/Linux (natively) and Windows (mingw or WSL). For those who want to read source code - \"abandon all hope ye who enter here...\"\n\n--- READ ME ---\n\"Dark Dungeons and Scary Creatures\" is turn based dungeon crawler.\nmade by Python_B for Ludum Dare 48.\nGameplay is very simple. On your turn you choose on of possible actions:\n + Attack monster.\n + Use your special skill.\n + Go deeper, if all monsters are defeated.\n\n### Attacking:\nEvery monsters has it's own number from 1 to 4 (I-IV), to attack you press 'a' key, and target's number.\nEexample: To attack first monster you press 'a' and then '1'. Information, like how many damage you did will appear in area in between your stats and fight screen.\n\n### Skills\nYou have 3 skills:\n 1: Makes your attack slightly more powerful, you deal extra damage.\n 2: Heals you a bit\n 3: Makes your attack way more powerful, useful when dealing with last monster on low hp.\n\nUsed skill recovers for 3 turns.\n### Advancing through the dungeon\nWhen you've defeated last monster you should press 'd', to deeper into next room.\nDoor will appear, and after one second you'll see new monster set and be able to fight them.\n\n\nAlso currently I'm trying to rewrite it from scratch and make it better, so here's [my itch.io](https:\/\/python-b.itch.io\/)\n[Screenshot 1](\/\/\/raw\/262\/b3\/z\/3d352.png)\n![Screenshot 2](\/\/\/raw\/262\/b3\/z\/3d353.png)","comments":4,"comments-timestamp":"2021-04-26T20:27:38Z","created":"2021-04-22T16:05:51Z","files":[],"files-timestamp":0,"grade":{"grade-01":4,"grade-02":4,"grade-03":4,"grade-04":4,"grade-05":4,"grade-06":2,"grade-07":3,"grade-08":3},"id":242278,"love":0,"magic":{"cool":63.245553203368,"feedback":1,"given":1,"grade":3.5,"grade-01-average":2.75,"grade-02-average":2.75,"grade-03-average":3,"grade-04-average":3.5,"grade-05-average":3.25,"grade-07-average":3,"grade-08-average":3,"smart":-42.264973081037},"meta":{"allow-anonymous-comments":"1","author":[242274],"cover":"\/\/\/content\/262\/b3\/z\/3d350.png","link-01":"https:\/\/github.com\/PythonB\/DDSCld48v\/tree\/master","link-01-name":"GitHub","link-01-tag":[42332],"link-02":"","link-02-name":"","link-02-tag":null},"meta-timestamp":"2026-05-12T19:35:30Z","modified":"2026-05-12T19:35:30Z","name":"Dark Dungeons and Scary Creatures (DDSC)","node-timestamp":"2021-04-27T16:54:44Z","parent":233335,"parents":[1,5,9,233335],"path":"\/events\/ludum-dare\/48\/dark-dungeons-and-scary-creatures-ddsc","published":"2021-04-26T00:51:22Z","scope":"public","slug":"dark-dungeons-and-scary-creatures-ddsc","subsubtype":"compo","subtype":"game","type":"item","version":776000},"text":"Dungeon crawler game for MacOSX\/Linux (natively) and Windows (mingw or WSL). For those who want to read source code - \"abandon all hope ye who enter here...\"\n\n--- READ ME ---\n\"Dark Dungeons and Scary Creatures\" is turn based dungeon crawler.\nmade by Python_B for Ludum Dare 48.\nGameplay is very simple. On your turn you choose on of possible actions:\n + Attack monster.\n + Use your special skill.\n + Go deeper, if all monsters are defeated.\n\n### Attacking:\nEvery monsters has it's own number from 1 to 4 (I-IV), to attack you press 'a' key, and target's number.\nEexample: To attack first monster you press 'a' and then '1'. Information, like how many damage you did will appear in area in between your stats and fight screen.\n\n### Skills\nYou have 3 skills:\n 1: Makes your attack slightly more powerful, you deal extra damage.\n 2: Heals you a bit\n 3: Makes your attack way more powerful, useful when dealing with last monster on low hp.\n\nUsed skill recovers for 3 turns.\n### Advancing through the dungeon\nWhen you've defeated last monster you should press 'd', to deeper into next room.\nDoor will appear, and after one second you'll see new monster set and be able to fight them.\n\n\nAlso currently I'm trying to rewrite it from scratch and make it better, so here's [my itch.io](https:\/\/python-b.itch.io\/)\n[Screenshot 1](\/\/\/raw\/262\/b3\/z\/3d352.png)\n![Screenshot 2](\/\/\/raw\/262\/b3\/z\/3d353.png)","title":"Dark Dungeons and Scary Creatures (DDSC)","wayback_recovered":true,"wayback_source":{"capture":{"original":"https:\/\/api-jam.ludumdare.com\/vx\/node2\/get\/242001+242002+242003+242004+242005+242006+242007+242008+242009+242010+242011+242012+242013+242014+242015+242016+242017+242018+242019+242020+242021+242022+242023+242024+242025+242026+242027+242028+242029+242030+242031+242032+242033+242034+242035+242036+242037+242038+242039+242040+242041+242042+242043+242044+242045+242046+242047+242048+242049+242050+242051+242052+242053+242054+242055+242056+242057+242058+242059+242060+242061+242062+242063+242064+242065+242066+242067+242068+242069+242070+242071+242072+242073+242074+242075+242076+242077+242078+242079+242080+242081+242082+242083+242084+242085+242086+242087+242088+242089+242090+242091+242092+242093+242094+242095+242096+242097+242098+242099+242100+242101+242102+242103+242104+242105+242106+242107+242108+242109+242110+242111+242112+242113+242114+242115+242116+242117+242118+242119+242120+242121+242122+242123+242124+242125+242126+242127+242128+242129+242130+242131+242132+242133+242134+242135+242136+242137+242138+242139+242140+242141+242142+242143+242144+242145+242146+242147+242148+242149+242150+242151+242152+242153+242154+242155+242156+242157+242158+242159+242160+242161+242162+242163+242164+242165+242166+242167+242168+242169+242170+242171+242172+242173+242174+242175+242176+242177+242178+242179+242180+242181+242182+242183+242184+242185+242186+242187+242188+242189+242190+242191+242192+242193+242194+242195+242196+242197+242198+242199+242200+242201+242202+242203+242204+242205+242206+242207+242208+242209+242210+242211+242212+242213+242214+242215+242216+242217+242218+242219+242220+242221+242222+242223+242224+242225+242226+242227+242228+242229+242230+242231+242232+242233+242234+242235+242236+242237+242238+242239+242240+242241+242242+242243+242244+242245+242246+242247+242248+242249+242250+242251+242252+242253+242254+242255+242256+242257+242258+242259+242260+242261+242262+242263+242264+242265+242266+242267+242268+242269+242270+242271+242272+242273+242274+242275+242276+242277+242278+242279+242280+242281+242282+242283+242284+242285+242286+242287+242288+242289+242290+242291+242292+242293+242294+242295+242296+242297+242298+242299+242300+242301+242302+242303+242304+242305+242306+242307+242308+242309+242310+242311+242312+242313+242314+242315+242316+242317+242318+242319+242320+242321+242322+242323+242324+242325+242326+242327+242328+242329+242330+242331+242332+242333+242334+242335+242336+242337+242338+242339+242340+242341+242342+242343+242344+242345+242346+242347+242348+242349+242350+242351+242352+242353+242354+242355+242356+242357+242358+242359+242360+242361+242362+242363+242364+242365+242366+242367+242368+242369+242370+242371+242372+242373+242374+242375+242376+242377+242378+242379+242380+242381+242382+242383+242384+242385+242386+242387+242388+242389+242390+242391+242392+242393+242394+242395+242396+242397+242398+242399+242400+242401+242402+242403+242404+242405+242406+242407+242408+242409+242410+242411+242412+242413+242414+242415+242416+242417+242418+242419+242420+242421+242422+242423+242424+242425+242426+242427+242428+242429+242430+242431+242432+242433+242434+242435+242436+242437+242438+242439+242440+242441+242442+242443+242444+242445+242446+242447+242448+242449+242450+242451+242452+242453+242454+242455+242456+242457+242458+242459+242460+242461+242462+242463+242464+242465+242466+242467+242468+242469+242470+242471+242472+242473+242474+242475+242476+242477+242478+242479+242480+242481+242482+242483+242484+242485+242486+242487+242488+242489+242490+242491+242492+242493+242494+242495+242496+242497+242498+242499+242500?authors&parents&superparent"},"object":"objects\/sha256\/d8\/d87fbe59efe60c911c8af813e6bb8d332f0415e0f08aef9a7d7f6a96472c0cb6","record":"shard-3\/json-live-urgent-v3\/records\/4b4a9ecf4bcede1faf4a410e4df1d3069bc73ee19a1c67d03b893bffe702bde5.json","sha256":"d87fbe59efe60c911c8af813e6bb8d332f0415e0f08aef9a7d7f6a96472c0cb6","source":"https","stored_at":1784022321}}