slayer_in_the_shadows.constants#

Variables that are needed in multiple files and don’t change.

Module Contents#

slayer_in_the_shadows.constants.SCREEN_WIDTH[source]#
slayer_in_the_shadows.constants.SCREEN_HEIGHT[source]#
slayer_in_the_shadows.constants.SCREEN_TITLE = 'Slayer in the Shadows'[source]#
slayer_in_the_shadows.constants.CHARACTER_SCALING = 1[source]#
slayer_in_the_shadows.constants.TILE_SCALING = 0.5[source]#
slayer_in_the_shadows.constants.COIN_SCALING = 0.5[source]#
slayer_in_the_shadows.constants.SPRITE_PIXEL_SIZE = 128[source]#
slayer_in_the_shadows.constants.GRID_PIXEL_SIZE[source]#
slayer_in_the_shadows.constants.MAX_DASHES = 1[source]#
slayer_in_the_shadows.constants.DASH_COOLDOWN = 2[source]#
slayer_in_the_shadows.constants.SLOW_TIME_DURATION = 4[source]#
slayer_in_the_shadows.constants.SLOW_TIME_COOLDOWN = 10[source]#
slayer_in_the_shadows.constants.ENEMY_RENDER_DISTANCE = 500[source]#
slayer_in_the_shadows.constants.ENEMY_FOV = 0.4[source]#
slayer_in_the_shadows.constants.FRAMES_PER_RAYCAST = 5[source]#
slayer_in_the_shadows.constants.GRAVITY = 3000[source]#
slayer_in_the_shadows.constants.DEFAULT_DAMPING = 1.0[source]#
slayer_in_the_shadows.constants.PLAYER_FRICTION = 1.0[source]#
slayer_in_the_shadows.constants.WALL_FRICTION = 0.7[source]#
slayer_in_the_shadows.constants.DYNAMIC_ITEM_FRICTION = 0.6[source]#
slayer_in_the_shadows.constants.PLAYER_MASS = 2.0[source]#
slayer_in_the_shadows.constants.PLAYER_MAX_HORIZONTAL_SPEED = 450[source]#
slayer_in_the_shadows.constants.PLAYER_MAX_VERTICAL_SPEED = 1600[source]#
slayer_in_the_shadows.constants.PLAYER_MOVE_FORCE_ON_GROUND = 30000[source]#
slayer_in_the_shadows.constants.PLAYER_MOVE_FORCE_IN_AIR = 10000[source]#
slayer_in_the_shadows.constants.PLAYER_JUMP_IMPULSE = 1800[source]#
slayer_in_the_shadows.constants.DASH_MOVE_IMPULSE = 15000[source]#
slayer_in_the_shadows.constants.KEYMAP_DICT[source]#
slayer_in_the_shadows.constants.ARCADE_KEYS_TO_NAME[source]#
slayer_in_the_shadows.constants.ANIMATION_FREEZE_TIME = 3[source]#
slayer_in_the_shadows.constants.COLLISION_DAMAGE = 10[source]#
slayer_in_the_shadows.constants.INVULNERABILITY_DURATION = 1[source]#
slayer_in_the_shadows.constants.MELEE_RANGE = 150[source]#
slayer_in_the_shadows.constants.SLASH_DURATION = 0.5[source]#