Browse Source

A lot of random changes that I am lazy to say...

master
parent
commit
d5113a4b0c
51 changed files with 4 additions and 4 deletions
  1. +2
    -2
      source/item.ads
  2. +1
    -1
      source/main.adb
  3. +1
    -1
      source/unit.ads
  4. BIN
      sprite/item/chest/bronze_chestplate.png
  5. BIN
      sprite/item/chest/chainmail_chestplate.png
  6. BIN
      sprite/item/chest/leather_chestplate.png
  7. BIN
      sprite/item/feet/bronze_greaves.png
  8. BIN
      sprite/item/feet/chainmail_greaves.png
  9. BIN
      sprite/item/feet/leather_greaves.png
  10. BIN
      sprite/item/hands/bronze_gauntlets.png
  11. BIN
      sprite/item/hands/chainmail_gauntlets.png
  12. BIN
      sprite/item/hands/leather_gauntlets.png
  13. BIN
      sprite/item/head/bronze_helmet.png
  14. BIN
      sprite/item/head/chainmail_helmet.png
  15. BIN
      sprite/item/head/leather_helmet.png
  16. +0
    -0
      sprite/unit/dwarf/dwarf_base.png
  17. BIN
      sprite/unit/dwarf/dwarf_male.png
  18. +0
    -0
      sprite/unit/fairy/fairy_base.png
  19. BIN
      sprite/unit/fairy/fairy_male.png
  20. +0
    -0
      sprite/unit/gnoll/gnoll_base.png
  21. BIN
      sprite/unit/gnoll/gnoll_male.png
  22. +0
    -0
      sprite/unit/goblin/goblin_base.png
  23. BIN
      sprite/unit/goblin/goblin_male.png
  24. BIN
      sprite/unit/icon/dwarf_base.png
  25. BIN
      sprite/unit/icon/dwarf_male.png
  26. BIN
      sprite/unit/icon/fairy_base.png
  27. BIN
      sprite/unit/icon/fairy_male.png
  28. BIN
      sprite/unit/icon/gnoll_base.png
  29. BIN
      sprite/unit/icon/gnoll_male.png
  30. BIN
      sprite/unit/icon/goblin_base.png
  31. BIN
      sprite/unit/icon/goblin_male.png
  32. BIN
      sprite/unit/icon/imp_base.png
  33. BIN
      sprite/unit/icon/imp_male.png
  34. BIN
      sprite/unit/icon/kobold_base.png
  35. BIN
      sprite/unit/icon/kobold_male.png
  36. +0
    -0
      sprite/unit/imp/imp_base.png
  37. BIN
      sprite/unit/imp/imp_male.png
  38. +0
    -0
      sprite/unit/kobold/kobold_base.png
  39. BIN
      sprite/unit/kobold/kobold_male.png
  40. BIN
      sprite/unit/view/dwarf_base.png
  41. BIN
      sprite/unit/view/dwarf_male.png
  42. BIN
      sprite/unit/view/fairy_base.png
  43. BIN
      sprite/unit/view/fairy_male.png
  44. BIN
      sprite/unit/view/gnoll_base.png
  45. BIN
      sprite/unit/view/gnoll_male.png
  46. BIN
      sprite/unit/view/goblin_base.png
  47. BIN
      sprite/unit/view/goblin_male.png
  48. BIN
      sprite/unit/view/imp_base.png
  49. BIN
      sprite/unit/view/imp_male.png
  50. BIN
      sprite/unit/view/kobold_base.png
  51. BIN
      sprite/unit/view/kobold_male.png

+ 2
- 2
source/item.ads View File

@@ -15,7 +15,7 @@ package item is

type enumeration is (
iron_chestplate, iron_greaves, iron_gauntlets, iron_helmet, iron_sword,
golden_necklace, iron_round_shield,
golden_necklace, iron_shield,
grey_tunic, white_tunic, black_tunic, red_tunic, green_tunic, blue_tunic,
yellow_tunic, orange_tunic, cyan_tunic, lime_tunic, pink_tunic, purple_tunic
);
@@ -41,7 +41,7 @@ package item is
("Iron Helmet ", head, (0, 1, 0, 0, 0, 0), faction.gnoll, effect.none),
("Iron Sword ", main_hand, (1, 0, 0, 0, 1, 2), faction.gnoll, effect.none),
("Golden Necklace ", neck, (0, 0, 0, 0, 0, 0), faction.fairy, effect.none),
("Iron Round Shield ", off_hand, (0, 2, 0, 0, 0, 1), faction.gnoll, effect.none),
("Iron Shield ", off_hand, (0, 2, 0, 0, 0, 1), faction.gnoll, effect.none),
("Grey Tunic ", full_body, (0, 1, 0, 1, 0, 0), faction.neutral, effect.none),
("White Tunic ", full_body, (0, 1, 0, 1, 0, 0), faction.neutral, effect.none),
("Black Tunic ", full_body, (0, 1, 0, 1, 0, 0), faction.neutral, effect.none),


+ 1
- 1
source/main.adb View File

@@ -169,7 +169,7 @@ begin
--
menu_render;
--
ui.draw_fill_bar (64, core.window_height - 56, 320, 0.7);
--~ui.draw_fill_bar (64, core.window_height - 56, 320, 0.7);
--
chad.draw_pepe;
--


+ 1
- 1
source/unit.ads View File

@@ -13,7 +13,7 @@ package unit is
);

type enumeration is (
dwarf_male, fairy_male, gnoll_male, goblin_male, imp_male, kobold_male
dwarf_base, fairy_base, gnoll_base, goblin_base, imp_base, kobold_base
);

------------------------------------------------------------------------------------------


BIN
sprite/item/chest/bronze_chestplate.png View File

Before After
Width: 64  |  Height: 96  |  Size: 437B

BIN
sprite/item/chest/chainmail_chestplate.png View File

Before After
Width: 64  |  Height: 96  |  Size: 450B

BIN
sprite/item/chest/leather_chestplate.png View File

Before After
Width: 64  |  Height: 96  |  Size: 403B

BIN
sprite/item/feet/bronze_greaves.png View File

Before After
Width: 64  |  Height: 96  |  Size: 295B

BIN
sprite/item/feet/chainmail_greaves.png View File

Before After
Width: 64  |  Height: 96  |  Size: 291B

BIN
sprite/item/feet/leather_greaves.png View File

Before After
Width: 64  |  Height: 96  |  Size: 282B

BIN
sprite/item/hands/bronze_gauntlets.png View File

Before After
Width: 64  |  Height: 96  |  Size: 317B

BIN
sprite/item/hands/chainmail_gauntlets.png View File

Before After
Width: 64  |  Height: 96  |  Size: 327B

BIN
sprite/item/hands/leather_gauntlets.png View File

Before After
Width: 64  |  Height: 96  |  Size: 326B

BIN
sprite/item/head/bronze_helmet.png View File

Before After
Width: 64  |  Height: 96  |  Size: 536B

BIN
sprite/item/head/chainmail_helmet.png View File

Before After
Width: 64  |  Height: 96  |  Size: 619B

BIN
sprite/item/head/leather_helmet.png View File

Before After
Width: 64  |  Height: 96  |  Size: 465B

sprite/unit/dwarf/base.png → sprite/unit/dwarf/dwarf_base.png View File


BIN
sprite/unit/dwarf/dwarf_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

sprite/unit/fairy/base.png → sprite/unit/fairy/fairy_base.png View File


BIN
sprite/unit/fairy/fairy_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

sprite/unit/gnoll/base.png → sprite/unit/gnoll/gnoll_base.png View File


BIN
sprite/unit/gnoll/gnoll_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

sprite/unit/goblin/base.png → sprite/unit/goblin/goblin_base.png View File


BIN
sprite/unit/goblin/goblin_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/icon/dwarf_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 383B

BIN
sprite/unit/icon/dwarf_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/icon/fairy_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 402B

BIN
sprite/unit/icon/fairy_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/icon/gnoll_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 377B

BIN
sprite/unit/icon/gnoll_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/icon/goblin_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 384B

BIN
sprite/unit/icon/goblin_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/icon/imp_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 382B

BIN
sprite/unit/icon/imp_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/icon/kobold_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 379B

BIN
sprite/unit/icon/kobold_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

sprite/unit/imp/base.png → sprite/unit/imp/imp_base.png View File


BIN
sprite/unit/imp/imp_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

sprite/unit/kobold/base.png → sprite/unit/kobold/kobold_base.png View File


BIN
sprite/unit/kobold/kobold_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/view/dwarf_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 383B

BIN
sprite/unit/view/dwarf_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/view/fairy_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 402B

BIN
sprite/unit/view/fairy_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/view/gnoll_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 377B

BIN
sprite/unit/view/gnoll_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/view/goblin_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 384B

BIN
sprite/unit/view/goblin_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/view/imp_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 382B

BIN
sprite/unit/view/imp_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

BIN
sprite/unit/view/kobold_base.png View File

Before After
Width: 128  |  Height: 32  |  Size: 379B

BIN
sprite/unit/view/kobold_male.png View File

Before After
Width: 16  |  Height: 16  |  Size: 343B

Loading…
Cancel
Save