about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Removed unused instance variables from MainStarla Insigna2012-06-061-3/+0
|
* Added two mobs for second floor and added power counter to status barStarla Insigna2012-06-063-1/+123
|
* Added effect to ring of regenerationStarla Insigna2012-06-062-6/+6
|
* Removed doors when picking up keyStarla Insigna2012-06-061-0/+3
|
* Doors now start closed and can be opened or closedStarla Insigna2012-06-062-121/+183
|
* Added some worthless equippable itemsStarla Insigna2012-06-061-0/+120
|
* Fixed the map out of bounds bug AGAINStarla Insigna2012-06-061-1/+1
|
* Added Day 3 link to readmeStarla Insigna2012-06-051-0/+1
|
* Gave clothing attack and defense valuesStarla Insigna2012-06-054-5/+39
|
* Monsters now drop items when you kill themStarla Insigna2012-06-051-1/+11
| | | | The per mille chance that a mob will drop an item is equal to their base experience divided by the floor squared.
* Added basic equipping system (though equipped items have no worth yet) and ↵Starla Insigna2012-06-056-9/+326
| | | | added some new items
* Added item Wooden Helmet (no use yet) and added ability to drop itemsStarla Insigna2012-06-054-3/+58
|
* Added inventory overlayStarla Insigna2012-06-044-1/+142
| | | | Now items can be used! Such fun.
* Integrated key into item systemStarla Insigna2012-06-043-41/+64
|
* Started to add itemsStarla Insigna2012-06-045-0/+183
| | | | Items now exist and can be spawned randomly (though it's weighted so that items of a rarer type such as rings which spawn less frequently than swords let's say). There's currently only one item defined: a scroll of healing. Items can be seen and picked up but there is no inventory interface and no way to use items yet.
* Allowed for multiple floorsStarla Insigna2012-06-044-63/+96
| | | | Also made the spider a bit weaker
* Added Day 2 link to readmeStarla Insigna2012-06-041-0/+1
|
* Fixed bug where mice would move onto positions in use by other mobsStarla Insigna2012-06-041-2/+15
|
* Tweaked battle systemStarla Insigna2012-06-041-7/+10
| | | | There is now an upper limit on mobs in a level, experience gained is now inversely proportional to the level SQUARED, and the player's attack power is now the square root of their level.
* Added HP gain for growing a levelStarla Insigna2012-06-041-6/+13
|
* Fixed bug where mobs would move onto each otherStarla Insigna2012-06-041-1/+15
|
* Fixed experience bugStarla Insigna2012-06-041-1/+1
| | | | Previously, you needed 1001 exp to grow a level. This has been fixed.
* Added experience/levellingStarla Insigna2012-06-046-11/+134
| | | | You get less experience for fighting the same mob when you increase a level. Also, your attack power is equal to your level.
* Added real monster spawningStarla Insigna2012-06-042-23/+77
|
* Added wait commandStarla Insigna2012-06-041-0/+4
|
* Added key and heartbeatStarla Insigna2012-06-042-0/+110
| | | | When you pick up the key, the windows in the room shatter and snow grows into unblocked spaces (except for up stairs) every other turn. When you're standing on snow, you lose 1HP every other turn. When you're not, you randomly gain 1HP back every few turns.
* Created key roomsStarla Insigna2012-06-041-5/+142
| | | | There are not yet keys in the key rooms, but the rooms are generated in a random extreme of the map and are bordered with windows.
* Added death conditionStarla Insigna2012-06-032-1/+60
| | | | Now, when you reach zero health, you are promted to quit the game. Also, Window, ShatteredWindow and Snow tiles were added in preparation for the key rooms.
* Changed color scheme to give game more of a "cold" feelingStarla Insigna2012-06-031-3/+13
|
* Actually fixed the first out of bounds map bug mentioned earlierStarla Insigna2012-06-031-1/+1
|
* Added basic melee combatStarla Insigna2012-06-034-1/+38
| | | | Rats can now hurt you, yaaaay. Your health counter changes color depending on how much HP you have, and there is now also a defense counter too, which will, at this point, always say zero.
* Added health counterStarla Insigna2012-06-031-0/+10
|
* Fixed a couple of out of bounds map bugsStarla Insigna2012-06-032-5/+4
| | | | One bug had to do with the fact that if the game attempted to place a staircase at the edge of the map, it would check if every surrounding space was blocked regardless of whether or not they were valid positions (i.e. if they were off the edge off the map). The other bug had to do with rounding errors when calculating the viewport because the viewport width and height were both an odd number of tiles. By decreasing the canvas width and increasing the size of the message window, the viewport was changed so as to have an even width and height, thus avoiding the rounding errors.
* Added Rat mobStarla Insigna2012-06-034-10/+249
| | | | Rat is classified as "hostile," so it moves toward the player when it can see the player, otherwise it moves randomly. Rat still cannot yet attack the player.
* Added colored charactersStarla Insigna2012-06-035-14/+28
|
* Added ability to kill miceStarla Insigna2012-06-033-20/+49
| | | | When you walk into a mob, they lose one HP. Mice have only one HP, so when you walk into one (note: they are hard to catch as they move quite erratically), they immediately die. Mobs cannot yet hurt you but then again mice can't hurt you anyway.
* Made game center itself upon startStarla Insigna2012-06-031-1/+1
|
* Made screen initially smallerStarla Insigna2012-06-031-1/+2
| | | | This is adorable. It also now factors in the window inset at the top, so goodbye annoying letterbox edges.
* Renamed GAME_WIDTH/GAME_HEIGHT constantsStarla Insigna2012-06-032-43/+42
| | | | Both Main and MapViewGameState had two constants called GAME_WIDTH and GAME_HEIGHT; however, in Main, they described the size in pixels of the canvas, and in MapViewGameState, the size, in tiles, of the map. They have now been renamed to avoid confusion.
* Changed tile size to 12x12Starla Insigna2012-06-032-3/+3
| | | | Characters (both in the message window and in the game, like the player and the mobs) look better now because the images themselves are 12x12, not 16x16.
* Added message windowStarla Insigna2012-06-031-1/+54
|
* Started player next to down staircaseStarla Insigna2012-06-031-2/+5
|
* Fixed readmeStarla Insigna2012-06-031-1/+1
|
* Added staircases and updated readmeStarla Insigna2012-06-032-2/+49
|
* Started work on mobsStarla Insigna2012-06-035-26/+188
| | | | Mice are randomly added to rooms and they move randomly. They move through the player, currently, however.
* Consolidated makeRoom methodStarla Insigna2012-06-033-202/+159
|
* Removed screen refresh loopStarla Insigna2012-06-031-12/+12
| | | | Now, the screen repaints itself only after it changes (or the component resizes or something and needs to be repainted). This is much better than the refresh loop because it uses much less CPU and doesn't make your computer's fan growl at you.
* Added field of view (using recursive shadowcasting)Starla Insigna2012-06-031-11/+98
|
* Added background colors for tilesStarla Insigna2012-06-032-16/+40
|
* Replaced basic dungeon generator with a much cooler oneStarla Insigna2012-06-023-81/+537
| | | | Also added support for more than two types of tiles, which are represented by characters. Later I'll add the functionality for different coloring of characters, because the bright Xs are kind of annoying.