Added trading system and cargo saving
This commit is contained in:
parent
50be4a0bb2
commit
30e53f858f
19 changed files with 301 additions and 12 deletions
|
|
@ -1,5 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="Item" load_steps=2 format=3 uid="uid://16xqvcrmuga6"]
|
||||
[gd_resource type="Resource" script_class="Item" load_steps=3 format=3 uid="uid://16xqvcrmuga6"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://daojdy0tpvsoh" path="res://sprites/items_icons/energy.png" id="1_1ocvl"]
|
||||
[ext_resource type="Script" path="res://scripts/item.gd" id="1_wdaj0"]
|
||||
|
||||
[resource]
|
||||
|
|
@ -9,4 +10,5 @@ description = ""
|
|||
min_price = 1.0
|
||||
max_price = 20.0
|
||||
weight = 1.0
|
||||
icon = ExtResource("1_1ocvl")
|
||||
type = 0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
[gd_resource type="Resource" script_class="Item" load_steps=2 format=3 uid="uid://ca8cpmd1aluut"]
|
||||
[gd_resource type="Resource" script_class="Item" load_steps=3 format=3 uid="uid://ca8cpmd1aluut"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/item.gd" id="1_gmqal"]
|
||||
[ext_resource type="Texture2D" uid="uid://w3aft10s2hxd" path="res://sprites/items_icons/food.png" id="1_w33w6"]
|
||||
|
||||
[resource]
|
||||
script = ExtResource("1_gmqal")
|
||||
|
|
@ -9,4 +10,5 @@ description = ""
|
|||
min_price = 10.0
|
||||
max_price = 100.0
|
||||
weight = 10.0
|
||||
icon = ExtResource("1_w33w6")
|
||||
type = 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="Item" load_steps=2 format=3 uid="uid://dlnl6w416qylo"]
|
||||
[gd_resource type="Resource" script_class="Item" load_steps=3 format=3 uid="uid://dlnl6w416qylo"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://dlh6eyywjrsk4" path="res://sprites/items_icons/raw_materials.png" id="1_an4j4"]
|
||||
[ext_resource type="Script" path="res://scripts/item.gd" id="1_l7wcw"]
|
||||
|
||||
[resource]
|
||||
|
|
@ -9,4 +10,5 @@ description = ""
|
|||
min_price = 10.0
|
||||
max_price = 50.0
|
||||
weight = 5.0
|
||||
icon = ExtResource("1_an4j4")
|
||||
type = 0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
[gd_resource type="Resource" script_class="Item" load_steps=2 format=3 uid="uid://b4jy8uknltolk"]
|
||||
[gd_resource type="Resource" script_class="Item" load_steps=3 format=3 uid="uid://b4jy8uknltolk"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://cova10yh1rlk1" path="res://sprites/items_icons/water.png" id="1_fv1u8"]
|
||||
[ext_resource type="Script" path="res://scripts/item.gd" id="1_w7v0g"]
|
||||
|
||||
[resource]
|
||||
|
|
@ -9,4 +10,5 @@ description = ""
|
|||
min_price = 5.0
|
||||
max_price = 30.0
|
||||
weight = 10.0
|
||||
icon = ExtResource("1_fv1u8")
|
||||
type = 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue