Merge branch 'master' of ssh://git.sjkillen.ca:2222/sjkillen/everything_has_a_price_jam

This commit is contained in:
Spencer Killen 2026-09-26 18:18:01 -06:00
commit c3ccf0ffcc
Signed by: sjkillen
GPG key ID: 1DAA9D8D7C6ADD05
27 changed files with 419 additions and 1 deletions

37
CameraMove.gd Normal file
View file

@ -0,0 +1,37 @@
extends Camera2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
var mouse: = get_viewport().get_mouse_position()
var size: = get_viewport().get_visible_rect().size
if (mouse.x < (0.10*size.x)):
position.x -= 3
elif (mouse.x > (0.90*size.x)):
position.x += 3
if (mouse.y < (0.10*size.y)):
position.y -= 3
elif (mouse.y > (0.90*size.y)):
position.y += 3
func _input(event):
if event is InputEventMouseButton:
if event.button_index == MOUSE_BUTTON_WHEEL_UP and event.pressed:
zoom.x +=1
zoom.y +=1
elif event.button_index == MOUSE_BUTTON_WHEEL_DOWN and event.pressed:
zoom.x -=1
zoom.y -=1

1
CameraMove.gd.uid Normal file
View file

@ -0,0 +1 @@
uid://ws5ruc64db3v

BIN
Map/EHAP_map.png (Stored with Git LFS) Normal file

Binary file not shown.

40
Map/EHAP_map.png.import Normal file
View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bntb4uxiugjq3"
path="res://.godot/imported/EHAP_map.png-b029a0a0b09d67741377398e7d614575.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Map/EHAP_map.png"
dest_files=["res://.godot/imported/EHAP_map.png-b029a0a0b09d67741377398e7d614575.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
currency/EHAP_map.png (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://8lqq14trnf5u"
path="res://.godot/imported/EHAP_map.png-b1025cc065bdc97d744b65efd6468a03.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://currency/EHAP_map.png"
dest_files=["res://.godot/imported/EHAP_map.png-b1025cc065bdc97d744b65efd6468a03.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -2,9 +2,11 @@
[ext_resource type="Script" uid="uid://dddyxbkq0ienn" path="res://currency/production.gd" id="1_apagg"]
[ext_resource type="Script" uid="uid://cthcf4w1il4h8" path="res://currency/inanimate_currency.gd" id="2_h7qij"]
[ext_resource type="Texture2D" uid="uid://bplvus0ytk2f8" path="res://thumbnails/beer.png" id="3_h7qij"]
[resource]
script = ExtResource("2_h7qij")
name = "Beer"
description = "A favourite of divorced dads everywhere."
thumbnail = ExtResource("3_h7qij")
metadata/_custom_type_script = "uid://b3tqa2kc2bu0p"

View file

@ -2,9 +2,11 @@
[ext_resource type="Script" uid="uid://cthcf4w1il4h8" path="res://currency/inanimate_currency.gd" id="1_6u8vm"]
[ext_resource type="Script" uid="uid://dddyxbkq0ienn" path="res://currency/production.gd" id="1_vpm3o"]
[ext_resource type="Texture2D" uid="uid://7calk4akv2wk" path="res://thumbnails/blood.jpg" id="3_78x5f"]
[resource]
script = ExtResource("1_6u8vm")
name = "Blood"
description = "Great if you wanna paint the kingdom red."
thumbnail = ExtResource("3_78x5f")
metadata/_custom_type_script = "uid://b3tqa2kc2bu0p"

View file

@ -2,9 +2,11 @@
[ext_resource type="Script" uid="uid://dddyxbkq0ienn" path="res://currency/production.gd" id="1_btpsu"]
[ext_resource type="Script" uid="uid://cthcf4w1il4h8" path="res://currency/inanimate_currency.gd" id="2_nt5od"]
[ext_resource type="Texture2D" uid="uid://bpc8gm2ikb6ld" path="res://thumbnails/bread.jpg" id="3_nt5od"]
[resource]
script = ExtResource("2_nt5od")
name = "Bread"
description = "I prefer eating raw flower personally."
thumbnail = ExtResource("3_nt5od")
metadata/_custom_type_script = "uid://b3tqa2kc2bu0p"

View file

@ -2,9 +2,11 @@
[ext_resource type="Script" uid="uid://dddyxbkq0ienn" path="res://currency/production.gd" id="1_6u3lm"]
[ext_resource type="Script" uid="uid://cthcf4w1il4h8" path="res://currency/inanimate_currency.gd" id="2_aao11"]
[ext_resource type="Texture2D" uid="uid://8st5esb8blio" path="res://thumbnails/corpse.jpg" id="3_aao11"]
[resource]
script = ExtResource("2_aao11")
name = "Corpse"
description = "It's a dead body! Of what creature? We don't know!"
thumbnail = ExtResource("3_aao11")
metadata/_custom_type_script = "uid://b3tqa2kc2bu0p"

View file

@ -2,9 +2,11 @@
[ext_resource type="Script" uid="uid://dddyxbkq0ienn" path="res://currency/production.gd" id="1_g2gb5"]
[ext_resource type="Script" uid="uid://cthcf4w1il4h8" path="res://currency/inanimate_currency.gd" id="1_ilt41"]
[ext_resource type="Texture2D" uid="uid://dctklkyp4ugdt" path="res://thumbnails/wood.jpg" id="3_mwc6k"]
[resource]
script = ExtResource("1_ilt41")
name = "Wood"
description = "Gives you lumber support. You know your back could probably use it."
thumbnail = ExtResource("3_mwc6k")
metadata/_custom_type_script = "uid://b3tqa2kc2bu0p"

View file

@ -4,10 +4,12 @@
[ext_resource type="Script" uid="uid://dddyxbkq0ienn" path="res://currency/production.gd" id="1_ohece"]
[ext_resource type="Resource" uid="uid://boshkhnywnk27" path="res://currency/production/human_production_shared_1.tres" id="2_u3n2t"]
[ext_resource type="Resource" uid="uid://mgb7y1r3eapq" path="res://currency/production/human_production_shared_2.tres" id="3_yv5d2"]
[ext_resource type="Texture2D" uid="uid://bbcjo350ne8pv" path="res://thumbnails/doctor.jpg" id="5_e68kt"]
[resource]
script = ExtResource("1_8u0th")
name = "Doctor"
production = Array[ExtResource("1_ohece")]([ExtResource("2_u3n2t"), ExtResource("3_yv5d2")])
description = "They're definitely not crow people. Don't question the masks. it's fine."
thumbnail = ExtResource("5_e68kt")
metadata/_custom_type_script = "uid://hcvynq5fjypj"

18
map.tscn Normal file
View file

@ -0,0 +1,18 @@
[gd_scene format=3 uid="uid://bdk1r2u8clllr"]
[ext_resource type="Texture2D" uid="uid://bntb4uxiugjq3" path="res://Map/EHAP_map.png" id="1_c7s6e"]
[ext_resource type="Script" uid="uid://ws5ruc64db3v" path="res://CameraMove.gd" id="2_wijl4"]
[node name="Node2D" type="Node2D" unique_id=575553336]
[node name="EhapMap" type="Sprite2D" parent="." unique_id=26962123]
position = Vector2(966, -28)
texture = ExtResource("1_c7s6e")
[node name="Camera2D" type="Camera2D" parent="." unique_id=1974259721]
position = Vector2(582, 1260)
limit_left = 6
limit_top = -1648
limit_right = 1926
limit_bottom = 1592
script = ExtResource("2_wijl4")

View file

@ -20,7 +20,6 @@ Economy="*uid://dnpioqaes87yb"
Random="*uid://cu3n7igqstbxi"
UserContext="*uid://0a08ucta58lp"
GameState="*uid://bohql2ihaumsa"
LetterGeneration="*uid://d156m2y8b38qs"
[dialogic]

View file

@ -0,0 +1,7 @@
wood.jpg - cropped from: "20160211154306!Nussbaum Holz.jpg" by Das Ohr, https://commons.wikimedia.org/wiki/File:20160211154306!Nussbaum_Holz.jpg, licensed under https://creativecommons.org/licenses/by/3.0/
beer.png - from: "Straight beer glass.png" by Etamme, https://commons.wikimedia.org/wiki/File:Straight_beer_glass.png, licensed under https://creativecommons.org/licenses/by/3.0/
bread.jpg - cropped from: "Bread on blue plate from an angle.jpg" by Kansattica, https://commons.wikimedia.org/wiki/File:Bread_on_blue_plate_from_an_angle.jpg, licensed under https://creativecommons.org/licenses/by/4.0/
doctor.jpg - cropped from: "Effect inferno 2022 movie frame 01.jpg" by Sergey A. Demidov, https://commons.wikimedia.org/wiki/File:Effect_inferno_2022_movie_frame_01.jpg, licensed under https://creativecommons.org/licenses/by/4.0/

BIN
thumbnails/beer.png (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bplvus0ytk2f8"
path="res://.godot/imported/beer.png-6c423fbb7c86d4d3f78a08ea9855dc1e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thumbnails/beer.png"
dest_files=["res://.godot/imported/beer.png-6c423fbb7c86d4d3f78a08ea9855dc1e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
thumbnails/blood.jpg (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://7calk4akv2wk"
path="res://.godot/imported/blood.jpg-6d6bed569711a60757be2ff49236d203.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thumbnails/blood.jpg"
dest_files=["res://.godot/imported/blood.jpg-6d6bed569711a60757be2ff49236d203.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
thumbnails/bread.jpg (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bpc8gm2ikb6ld"
path="res://.godot/imported/bread.jpg-f47ea884e4d2c1f24a69dc75afd7fe98.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thumbnails/bread.jpg"
dest_files=["res://.godot/imported/bread.jpg-f47ea884e4d2c1f24a69dc75afd7fe98.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
thumbnails/corpse.jpg (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://8st5esb8blio"
path="res://.godot/imported/corpse.jpg-022fa40684770e53fc7c9a8e0bfd84be.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thumbnails/corpse.jpg"
dest_files=["res://.godot/imported/corpse.jpg-022fa40684770e53fc7c9a8e0bfd84be.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
thumbnails/doctor.jpg (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bbcjo350ne8pv"
path="res://.godot/imported/doctor.jpg-674d8bda1c8cfefd555ca3ffbb6e3382.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thumbnails/doctor.jpg"
dest_files=["res://.godot/imported/doctor.jpg-674d8bda1c8cfefd555ca3ffbb6e3382.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

BIN
thumbnails/wood.jpg (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dctklkyp4ugdt"
path="res://.godot/imported/wood.jpg-c388c0edb58cc79b038499d85fe86a46.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://thumbnails/wood.jpg"
dest_files=["res://.godot/imported/wood.jpg-c388c0edb58cc79b038499d85fe86a46.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1