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,7 @@
~ start
Snacko: Hi I'm Snacko the Snack Gecko!
Snacko: I changed my name for business purposes. But I think I like it.
Snacko: You should also change your name to Snacko you might like it.
=> END

View file

@ -0,0 +1,15 @@
[remap]
importer="dialogue_manager_compiler_11"
type="Resource"
uid="uid://jy06xnlh3ipo"
path="res://.godot/imported/SnacksGecko.dialogue-a4cbe6ca05623a6885e0d84b646f0f4e.tres"
[deps]
source_file="res://NPCs/Faire/SnacksGecko/SnacksGecko.dialogue"
dest_files=["res://.godot/imported/SnacksGecko.dialogue-a4cbe6ca05623a6885e0d84b646f0f4e.tres"]
[params]
defaults=true

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 B

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dxcoc356w4do3"
path="res://.godot/imported/SnacksGecko.png-60f6242781766f74140bdcfe3e4d2775.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://NPCs/Faire/SnacksGecko/SnacksGecko.png"
dest_files=["res://.godot/imported/SnacksGecko.png-60f6242781766f74140bdcfe3e4d2775.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,36 @@
[gd_scene load_steps=5 format=3 uid="uid://htt14aincihu"]
[ext_resource type="PackedScene" uid="uid://doqfsp7yxools" path="res://NPCs/NPC.tscn" id="1_2lkpj"]
[ext_resource type="Texture2D" uid="uid://dxcoc356w4do3" path="res://NPCs/Faire/SnacksGecko/SnacksGecko.png" id="2_8dhaa"]
[ext_resource type="Resource" uid="uid://jy06xnlh3ipo" path="res://NPCs/Faire/SnacksGecko/SnacksGecko.dialogue" id="2_83wqs"]
[sub_resource type="SpriteFrames" id="SpriteFrames_r2apx"]
animations = [{
"frames": [{
"duration": 1.0,
"texture": ExtResource("2_8dhaa")
}],
"loop": true,
"name": &"default",
"speed": 5.0
}]
[node name="SnacksGecko" instance=ExtResource("1_2lkpj")]
dialogueResource = ExtResource("2_83wqs")
[node name="Sprite" parent="." index="0"]
sprite_frames = SubResource("SpriteFrames_r2apx")
[node name="Panel" parent="Interactable" index="1"]
offset_left = -25.0
offset_top = -12.0
offset_right = 25.0
offset_bottom = 11.0
[node name="CollisionShape2D" parent="." index="3"]
visible = false
disabled = true
[editable path="Interactable"]
[editable path="Interactable/ActionMenu"]
[editable path="Talkable"]

View file

@ -0,0 +1,16 @@
extends "res://Interactions/Shopping/ShopHaver.gd"
func instantiate_shop_inventory():
var cottonCandy = load("res://Items/Foods/Snack/CottonCandy.gd").new()
var churro = load("res://Items/Foods/Snack/Churro.gd").new()
var bigPretzel = load("res://Items/Foods/Snack/BigPretzel.gd").new()
var lollipop = load("res://Items/Foods/Snack/Lollipop.gd").new()
shopInventory = []
shopInventory.append(cottonCandy)
shopInventory.append(churro)
shopInventory.append(bigPretzel)
shopInventory.append(lollipop)
super.instantiate_shop_inventory()