Game & Fullstack developer
Portfolio: egordorichev.github.io Blog: rexcellentgames.com
Game & Fullstack developer
Portfolio: egordorichev.github.io Blog: rexcellentgames.com
# Requires python3.6 | |
from pattern.en import parse | |
from pattern.web import Twitter | |
from gingerit.gingerit import GingerIt | |
from better_profanity import profanity | |
import json | |
import string | |
import re |
static SDL_Color palette[] = { | |
{ 0, 0, 0, 255 }, | |
{ 29, 43, 83, 255 }, | |
{ 126, 37, 83, 255 }, | |
{ 0, 135, 81, 255 }, | |
{ 171, 82, 54, 255 }, | |
{ 95, 87, 79, 255 }, | |
{ 194, 195, 199, 255 }, | |
{ 255, 241, 232, 255 }, |
static SDL_Color palette[] = { | |
{ 0, 0, 0, 255 }, | |
{ 29, 43, 83, 255 }, | |
{ 126, 37, 83, 255 }, | |
{ 0, 135, 81, 255 }, | |
{ 171, 82, 54, 255 }, | |
{ 95, 87, 79, 255 }, | |
{ 194, 195, 199, 255 }, | |
{ 255, 241, 232, 255 }, | |
{ 255, 0, 77, 255 }, |
#!/bin/bash | |
PASSED=$1 | |
if [ -d "${PASSED}" ] | |
then ls -l $PASSED; | |
elif [ -f "${PASSED}" ] | |
then cat $PASSED; | |
else echo "Confused barking sound"; | |
exit 1 |
package org.rexcellentgames.burningknight.entity.level.rooms; | |
import com.badlogic.gdx.math.Vector2; | |
import org.rexcellentgames.burningknight.Dungeon; | |
import org.rexcellentgames.burningknight.entity.level.Level; | |
import org.rexcellentgames.burningknight.entity.level.Terrain; | |
import org.rexcellentgames.burningknight.entity.level.entities.Entrance; | |
import org.rexcellentgames.burningknight.entity.level.painters.Painter; | |
import org.rexcellentgames.burningknight.entity.level.rooms.regular.RegularRoom; | |
import org.rexcellentgames.burningknight.entity.level.save.LevelSave; |
pico-8 cartridge // http://www.pico-8.com | |
version 16 | |
__lua__ | |
-- corrupted space | |
-- by @egordorichev | |
cartdata("ldjam42") | |
menuitem(1,"restart lvl",function() | |
if(state==menu) return |
pico-8 cartridge // http://www.pico-8.com | |
version 16 | |
__lua__ | |
-- main | |
-- todo | |
-- music | |
-- sfx | |
-- fx |
-- spacy adventure | |
-- by @egordorichev | |
-- | |
-- main callbacks | |
-- | |
cartdata("ld39") | |
t=1 | |
dmg=5 |