put more text on menus

This commit is contained in:
pennyrigate 2023-07-27 22:33:03 -04:00
parent f14e8ebdd0
commit 8ba46dc705
23 changed files with 373 additions and 69 deletions

View file

@ -10,7 +10,7 @@ onready var ac_cheat = $CodeEntrySound
onready var ac_boss = $BossSound
onready var ac_shard = $ShardSound
#Sounds
const a_gold = preload("res://audio/sounds/key.ogg")
const a_gold = preload("res://audio/sounds/key.wav")
const a_arrow = preload("res://audio/sounds/a_egg_collect.ogg")
const a_jump = preload("res://audio/sounds/jump.ogg")
const a_star = preload("res://audio/sounds/star.ogg")

View file

@ -7,6 +7,8 @@ enum Difficulty {
PUNGENT, # faster enemies, 3 lives
}
const DIFFICULTY_NAMES = ["Sweet","Salty","Spicy","Pungent"]
var resolution = Vector2(256,192)
var current_sector = Vector2(0,0)
#Onreadys

View file

@ -16,7 +16,7 @@
resource_name = "Verdant Hills"
script = ExtResource( 5 )
title = "Verdant Hills"
shard_titles = [ "Climb to the top", "Dodge the bioslime", "Avoid the Catbat", "Energetic eviscerator", "5 Rainbow Stars", "Collection Bonus", "Time Bonus", "Life Bonus" ]
shard_titles = [ "Climb to the top", "The obstacle course", "The smallest platform", "Energetic eviscerator", "5 Rainbow Stars", "Collection Bonus", "Time Bonus", "Life Bonus" ]
save_id = "hills"
scene = ExtResource( 2 )