initial commit

This commit is contained in:
2024-09-08 17:57:53 -03:00
commit c54bc5bf9b
46 changed files with 2838 additions and 0 deletions

20
gd/data/items/olive.tres Normal file
View File

@ -0,0 +1,20 @@
[gd_resource type="Resource" script_class="Item" load_steps=3 format=3 uid="uid://n5vwskdrnk7y"]
[ext_resource type="Texture2D" uid="uid://kl1g25keou1k" path="res://icon.svg" id="1_q6q32"]
[ext_resource type="Script" path="res://src/lib/item.gd" id="1_xy46h"]
[resource]
script = ExtResource("1_xy46h")
icon = ExtResource("1_q6q32")
name = "Olive"
id = &"olive"
description = "It's supposed to look like that."
categories = 17
intrinsic_value = 1
weight = 1
stackable = true
stack_size = 6
spoilage_per_day = 0
condition = 100
states = 0
amount = 1

View File

@ -0,0 +1,20 @@
[gd_resource type="Resource" script_class="Item" load_steps=3 format=3 uid="uid://cy6581ixduqti"]
[ext_resource type="Texture2D" uid="uid://kl1g25keou1k" path="res://icon.svg" id="1_ix6ik"]
[ext_resource type="Script" path="res://src/lib/item.gd" id="2_wiywl"]
[resource]
script = ExtResource("2_wiywl")
icon = ExtResource("1_ix6ik")
name = "Scented Hammer"
id = &"scented_hammer"
description = "This is a great idea."
categories = 2
intrinsic_value = 15
weight = 20
stackable = false
stack_size = 6
spoilage_per_day = 0
condition = 100
states = 0
amount = 1

View File

@ -0,0 +1,15 @@
[gd_resource type="Resource" script_class="Town" load_steps=3 format=3 uid="uid://fr2sgjoprkgb"]
[ext_resource type="Script" path="res://src/lib/town.gd" id="1_l2yn4"]
[ext_resource type="Resource" uid="uid://clvys3lr00hgd" path="res://data/towns/salmonmound.tres" id="2_qqgee"]
[resource]
script = ExtResource("1_l2yn4")
name = "Goldthorn"
size = 0
status = 0
workshops = 0
neighboring_towns = Array[ExtResource("1_l2yn4")]([ExtResource("2_qqgee")])
has_dimension_gate = false
has_water = true
possible_npcs = Array[PackedScene]([])

View File

@ -0,0 +1,14 @@
[gd_resource type="Resource" script_class="Town" load_steps=2 format=3 uid="uid://clvys3lr00hgd"]
[ext_resource type="Script" path="res://src/lib/town.gd" id="1_axw15"]
[resource]
script = ExtResource("1_axw15")
name = "Salmonmound"
size = 1
status = 1
workshops = 1
neighboring_towns = Array[ExtResource("1_axw15")]([])
has_dimension_gate = false
has_water = true
possible_npcs = Array[PackedScene]([])