diff --git a/assets/config.json b/assets/config.json index e4721ea..b0f8dc9 100644 --- a/assets/config.json +++ b/assets/config.json @@ -2,15 +2,17 @@ "sprites": { "armored_knight": "assets/armored_knight_1-256.png", "sword": "assets/cinqueda_1-512.png", - "barrel": "assets/wood_barrel_large-256.png", + "barrel_small": "assets/wood_barrel_small-256.png", "hanging_brazier": "assets/hanging_brazier-256.png", "torch_pillar": "assets/torch_pillar-256.png", "torch_crappy": "assets/torch_crappy-256.png", + "torch_horizontal_floor": "assets/torch_horizontal_floor-256.png", "evil_eye": "assets/evil_eye-sprites.png", "peasant_girl": "assets/undead_peasant-256.png", "floor": "assets/floor_tile_test-256.png", "ceiling": "assets/ceiling_test-256.png", "healing_potion_small": "assets/healing_potion_small-256.png", + "well_down": "assets/well_down-256.png", "cinqueda": "assets/cinqueda_1-256.png" }, "enemy": { diff --git a/assets/devices.json b/assets/devices.json index 31ce4ac..b15d94f 100644 --- a/assets/devices.json +++ b/assets/devices.json @@ -14,7 +14,7 @@ {"_type": "Device", "config": {"test": true}, "events": ["Events::GUI::STAIRS_DOWN"]}, - {"_type": "Sprite", "name": "barrel"} + {"_type": "Sprite", "name": "well_down"} ] }, "STAIRS_UP": { @@ -31,7 +31,7 @@ {"_type": "Device", "config": {"test": true}, "events": ["Events::GUI::STAIRS_UP"]}, - {"_type": "Sprite", "name": "barrel"} + {"_type": "Sprite", "name": "barrel_small"} ] }, "SPIKE_TRAP": { @@ -47,7 +47,7 @@ {"_type": "Device", "config": {"test": true}, "events": ["Events::GUI::TRAP"]}, - {"_type": "Sprite", "name": "barrel"} + {"_type": "Sprite", "name": "barrel_small"} ] } } diff --git a/assets/items.json b/assets/items.json index 67192b1..9116efc 100644 --- a/assets/items.json +++ b/assets/items.json @@ -5,12 +5,12 @@ "description": "A torch that barely lights the way. You wonder if it'd be better to not see the person who murders you.", "inventory_count": 1, "components": [ - {"_type": "LightSource", "strength": 70, "radius": 2.0}, + {"_type": "LightSource", "strength": 50, "radius": 1.5}, {"_type": "Tile", "display": "\u0f08", "foreground": [24, 120, 189], "background": [230,120, 120] }, - {"_type": "Sprite", "name": "torch_crappy"} + {"_type": "Sprite", "name": "torch_horizontal_floor"} ] }, "SWORD_RUSTY": { @@ -27,17 +27,17 @@ {"_type": "Sprite", "name": "cinqueda"} ] }, - "CHEST_SMALL": { - "id": "CHEST_SMALL", - "name": "Small Chest", - "description": "A small chest of gold. You wonder who would leave something like this around.", + "BARREL_SMALL": { + "id": "BARREL_SMALL", + "name": "Small Barrel", + "description": "A small rotten barrel that may hold things.", "components": [ {"_type": "Tile", "display": "\uaaea", "foreground": [150, 100, 189], "background": [150, 100, 189] }, {"_type": "Loot", "amount": 10}, - {"_type": "Sprite", "name": "barrel"} + {"_type": "Sprite", "name": "barrel_small"} ], "inventory_count": 1 }, diff --git a/assets/torch_horizontal_floor-256.png b/assets/torch_horizontal_floor-256.png new file mode 100644 index 0000000..3c7c718 Binary files /dev/null and b/assets/torch_horizontal_floor-256.png differ diff --git a/assets/well_down-256.png b/assets/well_down-256.png new file mode 100644 index 0000000..514de63 Binary files /dev/null and b/assets/well_down-256.png differ diff --git a/assets/wood_barrel_small-256.png b/assets/wood_barrel_small-256.png new file mode 100644 index 0000000..43aede2 Binary files /dev/null and b/assets/wood_barrel_small-256.png differ