It's Cow Game! Version 2.04!

This commit is contained in:
PajamaBee 2024-09-19 23:06:51 -05:00
commit a9e1ed9ddd
3148 changed files with 95332 additions and 0 deletions

View file

@ -0,0 +1,4 @@
~ start
Rudy: The hole never ends it just keeps going I've dug down never ends but I don't worry about it.
=> END

View file

@ -0,0 +1,15 @@
[remap]
importer="dialogue_manager_compiler_11"
type="Resource"
uid="uid://vjisxd6jm5nv"
path="res://.godot/imported/HoleMole.dialogue-8fcabfab63e67a135ff51d1017731595.tres"
[deps]
source_file="res://NPCs/MuseumArea/HoleMole/HoleMole.dialogue"
dest_files=["res://.godot/imported/HoleMole.dialogue-8fcabfab63e67a135ff51d1017731595.tres"]
[params]
defaults=true

View file

@ -0,0 +1,4 @@
extends NPC
func _ready():
dialogueResource = load("res://NPCs/MuseumArea/HoleMole/HoleMole.dialogue")

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://5c7k8hd1b02f"
path="res://.godot/imported/HoleMole.png-8647c787c9116b3391f690087d9ed11c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/MuseumArea/HoleMole/HoleMole.png"
dest_files=["res://.godot/imported/HoleMole.png-8647c787c9116b3391f690087d9ed11c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
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/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

@ -0,0 +1,39 @@
[gd_scene load_steps=5 format=3 uid="uid://cgjyo7bm2qx3s"]
[ext_resource type="PackedScene" uid="uid://doqfsp7yxools" path="res://NPCs/NPC.tscn" id="1_20v4r"]
[ext_resource type="Texture2D" uid="uid://5c7k8hd1b02f" path="res://NPCs/MuseumArea/HoleMole/HoleMole.png" id="2_2oi1a"]
[ext_resource type="Script" path="res://NPCs/MuseumArea/HoleMole/HoleMole.gd" id="2_ye306"]
[sub_resource type="SpriteFrames" id="SpriteFrames_6hnbm"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": ExtResource("2_2oi1a")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}]
[node name="HoleMole" instance=ExtResource("1_20v4r")]
script = ExtResource("2_ye306")
[node name="Sprite" parent="." index="0"]
position = Vector2(-2, -9)
sprite_frames = SubResource("SpriteFrames_6hnbm")
[node name="Panel" parent="Interactable" index="1"]
offset_left = -20.0
offset_top = -29.0
offset_right = 29.0
offset_bottom = 7.0
[node name="CollisionShape2D" parent="Talkable/InteractionArea" index="0"]
position = Vector2(0, -6)
[node name="CollisionShape2D" parent="." index="3"]
disabled = true
[editable path="Interactable"]
[editable path="Interactable/ActionMenu"]
[editable path="Talkable"]

View file

@ -0,0 +1,14 @@
extends NPC
# Called when the node enters the scene tree for the first time.
func _ready():
if SaveManager.get_save_value("juiceLakeQuestStarted", false):
position.x = 317
position.y = -590
dialogueResource = load("res://NPCs/MuseumArea/Museum/HamsterDialogueNotBlocking.dialogue")
else:
dialogueResource = load("res://NPCs/MuseumArea/Museum/HamsterDialogue.dialogue")
characterName = "Chocolate Chip"
pronouns = "any"

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://db58snjitldud"
path="res://.godot/imported/Hamster.png-9e0b7ad6aa53b9bdca49df2b4de9bb27.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/MuseumArea/Museum/Hamster.png"
dest_files=["res://.godot/imported/Hamster.png-9e0b7ad6aa53b9bdca49df2b4de9bb27.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
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/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

@ -0,0 +1,7 @@
~ start
Chocolate Chip: hello!
Chocolate Chip: It is my job to block this part of the museum until later.
Chocolate Chip: I'm really good at my job :)
Chocolate Chip: I hope you come back later, maybe after you've started a quest.
=> END

View file

@ -0,0 +1,15 @@
[remap]
importer="dialogue_manager_compiler_11"
type="Resource"
uid="uid://c3h3ibwujh7f0"
path="res://.godot/imported/HamsterDialogue.dialogue-f586f7b5aa0380d590ce153393e66743.tres"
[deps]
source_file="res://NPCs/MuseumArea/Museum/HamsterDialogue.dialogue"
dest_files=["res://.godot/imported/HamsterDialogue.dialogue-f586f7b5aa0380d590ce153393e66743.tres"]
[params]
defaults=true

View file

@ -0,0 +1,7 @@
~ start
Chocolate Chip: hello!
Chocolate Chip: My dad finally put together this exhibit.
Chocolate Chip: He says this door has a michael phone.
Chocolate Chip: wow!
=> END

View file

@ -0,0 +1,15 @@
[remap]
importer="dialogue_manager_compiler_11"
type="Resource"
uid="uid://bmbtda512djrs"
path="res://.godot/imported/HamsterDialogueNotBlocking.dialogue-41f7fbf093acc524d9cd847a98c82246.tres"
[deps]
source_file="res://NPCs/MuseumArea/Museum/HamsterDialogueNotBlocking.dialogue"
dest_files=["res://.godot/imported/HamsterDialogueNotBlocking.dialogue-41f7fbf093acc524d9cd847a98c82246.tres"]
[params]
defaults=true

View file

@ -0,0 +1,5 @@
~ start
Pterry: hi my name is Pterry, everyone forgets to say the P, but that's ok i guess.
Pterry: SCRAAAAAAA!!! :)
Pterry: that is my happy voice :)
=> END

View file

@ -0,0 +1,15 @@
[remap]
importer="dialogue_manager_compiler_11"
type="Resource"
uid="uid://dj1i1fly6j227"
path="res://.godot/imported/Pterodactyl.dialogue-eee74d2c29b9cc98c5c289b1ca4fb620.tres"
[deps]
source_file="res://NPCs/MuseumArea/Museum/Pterodactyl/Pterodactyl.dialogue"
dest_files=["res://.godot/imported/Pterodactyl.dialogue-eee74d2c29b9cc98c5c289b1ca4fb620.tres"]
[params]
defaults=true

View file

@ -0,0 +1,8 @@
extends NPC
# Called when the node enters the scene tree for the first time.
func _ready():
characterName = "Pterodacyl"
pronouns = "any"
dialogueResource = load("res://NPCs/MuseumArea/Museum/Pterodactyl/Pterodactyl.dialogue")

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dyncnfv1p3a60"
path="res://.godot/imported/Pterodactyl.png-3c671372eae65a0f069a989bba68c61c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/MuseumArea/Museum/Pterodactyl/Pterodactyl.png"
dest_files=["res://.godot/imported/Pterodactyl.png-3c671372eae65a0f069a989bba68c61c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
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/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

@ -0,0 +1,51 @@
[gd_scene load_steps=8 format=3 uid="uid://duiqe5dfjdrv8"]
[ext_resource type="PackedScene" uid="uid://doqfsp7yxools" path="res://NPCs/NPC.tscn" id="1_ticsr"]
[ext_resource type="Script" path="res://NPCs/MuseumArea/Museum/Pterodactyl/Pterodactyl.gd" id="2_btlew"]
[ext_resource type="Texture2D" uid="uid://dyncnfv1p3a60" path="res://NPCs/MuseumArea/Museum/Pterodactyl/Pterodactyl.png" id="3_s1si6"]
[ext_resource type="Script" path="res://Utils/PlayOnReady.gd" id="4_0pb67"]
[sub_resource type="SpriteFrames" id="SpriteFrames_ubgyg"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": ExtResource("3_s1si6")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}]
[sub_resource type="CircleShape2D" id="CircleShape2D_dyd4r"]
radius = 99.4636
[sub_resource type="RectangleShape2D" id="RectangleShape2D_no6hl"]
size = Vector2(25.25, 9)
[node name="Pterodactyl" instance=ExtResource("1_ticsr")]
script = ExtResource("2_btlew")
[node name="Sprite" parent="." index="0"]
position = Vector2(1, -33)
sprite_frames = SubResource("SpriteFrames_ubgyg")
script = ExtResource("4_0pb67")
[node name="Panel" parent="Interactable" index="1"]
offset_left = -97.0
offset_top = -52.0
offset_right = 99.0
offset_bottom = -1.0
[node name="CollisionShape2D" parent="Talkable/InteractionArea" index="0"]
position = Vector2(0, -6)
rotation = 1.5708
shape = SubResource("CircleShape2D_dyd4r")
[node name="CollisionShape2D" parent="." index="3"]
position = Vector2(-1, -8)
shape = SubResource("RectangleShape2D_no6hl")
disabled = true
[editable path="Interactable"]
[editable path="Interactable/ActionMenu"]
[editable path="Talkable"]

View file

@ -0,0 +1,6 @@
~ start
Trixy: Welcome to the museum!
Trixy: Here we welcome science and discovery!
Trixy: Entrance is free :)
=> END

View file

@ -0,0 +1,15 @@
[remap]
importer="dialogue_manager_compiler_11"
type="Resource"
uid="uid://dnct4vjv70dqq"
path="res://.godot/imported/Triceratops.dialogue-2c7f8058083d321693acf63221bf01c8.tres"
[deps]
source_file="res://NPCs/MuseumArea/Museum/Triceratops/Triceratops.dialogue"
dest_files=["res://.godot/imported/Triceratops.dialogue-2c7f8058083d321693acf63221bf01c8.tres"]
[params]
defaults=true

View file

@ -0,0 +1,8 @@
extends NPC
# Called when the node enters the scene tree for the first time.
func _ready():
characterName = "Triceratops"
pronouns = "any"
dialogueResource = load("res://NPCs/MuseumArea/Museum/Triceratops/Triceratops.dialogue")

View file

@ -0,0 +1,76 @@
[gd_scene load_steps=11 format=3 uid="uid://nhfenq1xp75s"]
[ext_resource type="PackedScene" uid="uid://doqfsp7yxools" path="res://NPCs/NPC.tscn" id="1_j13be"]
[ext_resource type="Script" path="res://NPCs/MuseumArea/Museum/Triceratops/Triceratops.gd" id="2_a8w36"]
[ext_resource type="Texture2D" uid="uid://cy4aqgor8jbtn" path="res://NPCs/MuseumArea/Museum/Triceratops/triceratops1.png" id="3_qpqt6"]
[ext_resource type="Texture2D" uid="uid://c0qxh6hiag2a7" path="res://NPCs/MuseumArea/Museum/Triceratops/triceratops2.png" id="4_lxk6s"]
[ext_resource type="Texture2D" uid="uid://b15iihwgdwoyy" path="res://NPCs/MuseumArea/Museum/Triceratops/triceratops4.png" id="5_bsw08"]
[ext_resource type="Texture2D" uid="uid://coxbrvx7w0qk5" path="res://NPCs/MuseumArea/Museum/Triceratops/triceratops3.png" id="6_pjijk"]
[ext_resource type="Script" path="res://Utils/PlayOnReady.gd" id="7_lwswk"]
[sub_resource type="SpriteFrames" id="SpriteFrames_tdl6n"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": ExtResource("3_qpqt6")
}, {
"duration": 1.0,
"texture": ExtResource("4_lxk6s")
}, {
"duration": 1.0,
"texture": ExtResource("3_qpqt6")
}, {
"duration": 1.0,
"texture": ExtResource("5_bsw08")
}, {
"duration": 1.0,
"texture": ExtResource("3_qpqt6")
}, {
"duration": 1.0,
"texture": ExtResource("4_lxk6s")
}, {
"duration": 1.0,
"texture": ExtResource("6_pjijk")
}, {
"duration": 1.0,
"texture": ExtResource("5_bsw08")
}],
"loop": true,
"name": &"default",
"speed": 4.0
}]
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_bhabp"]
radius = 61.0
height = 400.0
[sub_resource type="RectangleShape2D" id="RectangleShape2D_no6hl"]
size = Vector2(134.5, 22)
[node name="Triceratops" instance=ExtResource("1_j13be")]
script = ExtResource("2_a8w36")
[node name="Sprite" parent="." index="0"]
position = Vector2(8, -58)
sprite_frames = SubResource("SpriteFrames_tdl6n")
frame_progress = 0.721407
script = ExtResource("7_lwswk")
[node name="Panel" parent="Interactable" index="1"]
offset_left = -136.0
offset_top = -110.0
offset_right = 87.0
offset_bottom = -19.0
[node name="CollisionShape2D" parent="Talkable/InteractionArea" index="0"]
position = Vector2(-32, -50)
rotation = 1.5708
shape = SubResource("CapsuleShape2D_bhabp")
[node name="CollisionShape2D" parent="." index="3"]
position = Vector2(8.75, 11)
shape = SubResource("RectangleShape2D_no6hl")
[editable path="Interactable"]
[editable path="Interactable/ActionMenu"]
[editable path="Talkable"]

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cy4aqgor8jbtn"
path="res://.godot/imported/triceratops1.png-2e66fd4e9cc2d88b69eb6f62f36d9a7c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/MuseumArea/Museum/Triceratops/triceratops1.png"
dest_files=["res://.godot/imported/triceratops1.png-2e66fd4e9cc2d88b69eb6f62f36d9a7c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
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/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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c0qxh6hiag2a7"
path="res://.godot/imported/triceratops2.png-719d764cd6520c51da4a66fbf72304ae.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/MuseumArea/Museum/Triceratops/triceratops2.png"
dest_files=["res://.godot/imported/triceratops2.png-719d764cd6520c51da4a66fbf72304ae.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
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/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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://coxbrvx7w0qk5"
path="res://.godot/imported/triceratops3.png-4ed98fcd4304f640a12a4eed2610e99e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/MuseumArea/Museum/Triceratops/triceratops3.png"
dest_files=["res://.godot/imported/triceratops3.png-4ed98fcd4304f640a12a4eed2610e99e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
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/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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b15iihwgdwoyy"
path="res://.godot/imported/triceratops4.png-4616953cdb3b258ca883e672208f2def.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/MuseumArea/Museum/Triceratops/triceratops4.png"
dest_files=["res://.godot/imported/triceratops4.png-4616953cdb3b258ca883e672208f2def.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
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/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

@ -0,0 +1,43 @@
[gd_scene load_steps=6 format=3 uid="uid://dj4l381u8h2vh"]
[ext_resource type="PackedScene" uid="uid://doqfsp7yxools" path="res://NPCs/NPC.tscn" id="1_h6cvr"]
[ext_resource type="Texture2D" uid="uid://db58snjitldud" path="res://NPCs/MuseumArea/Museum/Hamster.png" id="2_0lind"]
[ext_resource type="Script" path="res://NPCs/MuseumArea/Museum/Hamster.gd" id="2_q614o"]
[sub_resource type="SpriteFrames" id="SpriteFrames_ivvch"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": ExtResource("2_0lind")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_no6hl"]
size = Vector2(41, 14)
[node name="Hamster" instance=ExtResource("1_h6cvr")]
script = ExtResource("2_q614o")
[node name="Sprite" parent="." index="0"]
position = Vector2(0, -8)
sprite_frames = SubResource("SpriteFrames_ivvch")
[node name="Panel" parent="Interactable" index="1"]
offset_left = -8.0
offset_top = -21.0
offset_right = 8.0
offset_bottom = 4.0
[node name="CollisionShape2D" parent="Talkable/InteractionArea" index="0"]
position = Vector2(0, -7)
[node name="CollisionShape2D" parent="." index="3"]
position = Vector2(-0.5, -2)
shape = SubResource("RectangleShape2D_no6hl")
[editable path="Interactable"]
[editable path="Interactable/ActionMenu"]
[editable path="Talkable"]