generated from bitbrain/godot-gamejam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: bunch of cards and some styling stuff
1 parent
cd257e7
commit a53ce3f
Showing
13 changed files
with
123 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[gd_resource type="Resource" script_class="Ingredient" load_steps=4 format=3 uid="uid://8p82vshqls3p"] | ||
|
||
[ext_resource type="Script" path="res://ingredient_actions/actions/defend_action.gd" id="1_ow2ti"] | ||
[ext_resource type="Script" path="res://scenes/ingredient_block/ingredient_resource.gd" id="2_6un3w"] | ||
|
||
[sub_resource type="Resource" id="Resource_vvcgy"] | ||
script = ExtResource("1_ow2ti") | ||
defense_value = 10 | ||
|
||
[resource] | ||
script = ExtResource("2_6un3w") | ||
ingredient_name = "Cube Block" | ||
image = "res://assets/CubeBlock.svg" | ||
action = SubResource("Resource_vvcgy") | ||
color = Color(0.781871, 0.0319325, 0.340096, 1) | ||
base_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, 1), Vector2(0, 2), Vector2(1, 0), Vector2(1, 1), Vector2(1, 2), Vector2(2, 0), Vector2(2, 1), Vector2(2, 2)]) | ||
right_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, 1), Vector2(0, 2), Vector2(-1, 0), Vector2(-1, 1), Vector2(-1, 2), Vector2(-2, 0), Vector2(-2, 1), Vector2(-2, 2)]) | ||
flipped_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, -1), Vector2(0, -2), Vector2(-1, 0), Vector2(-1, -1), Vector2(-1, -2), Vector2(-2, 0), Vector2(-2, -1), Vector2(-2, -2)]) | ||
left_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, -1), Vector2(0, -2), Vector2(1, 0), Vector2(1, -1), Vector2(1, -2), Vector2(2, 0), Vector2(2, -1), Vector2(2, -2)]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[gd_resource type="Resource" script_class="Ingredient" load_steps=4 format=3 uid="uid://curs4gmtnp140"] | ||
|
||
[ext_resource type="Script" path="res://ingredient_actions/actions/attack_action.gd" id="1_p7vqq"] | ||
[ext_resource type="Script" path="res://scenes/ingredient_block/ingredient_resource.gd" id="2_7vwyi"] | ||
|
||
[sub_resource type="Resource" id="Resource_y52xg"] | ||
script = ExtResource("1_p7vqq") | ||
attack_range = Array[int]([2, 3]) | ||
target = 0 | ||
|
||
[resource] | ||
script = ExtResource("2_7vwyi") | ||
ingredient_name = "Disconnected Block" | ||
image = "res://assets/DisconnectHookBlock.svg" | ||
action = SubResource("Resource_y52xg") | ||
color = Color(0.781871, 0.0319325, 0.340096, 1) | ||
base_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, 1), Vector2(1, 2), Vector2(2, 2)]) | ||
right_structure = Array[Vector2]([Vector2(0, 0), Vector2(-1, 0), Vector2(-2, 1), Vector2(-2, 2)]) | ||
flipped_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, -1), Vector2(-1, -2), Vector2(-2, -2)]) | ||
left_structure = Array[Vector2]([Vector2(0, 0), Vector2(1, 0), Vector2(2, -1), Vector2(2, -2)]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[gd_resource type="Resource" script_class="Ingredient" load_steps=4 format=3 uid="uid://crywtu8cg1y53"] | ||
|
||
[ext_resource type="Script" path="res://ingredient_actions/actions/attack_action.gd" id="1_4378i"] | ||
[ext_resource type="Script" path="res://scenes/ingredient_block/ingredient_resource.gd" id="2_6i7m1"] | ||
|
||
[sub_resource type="Resource" id="Resource_y52xg"] | ||
script = ExtResource("1_4378i") | ||
attack_range = Array[int]([2, 3]) | ||
target = 0 | ||
|
||
[resource] | ||
script = ExtResource("2_6i7m1") | ||
ingredient_name = "L Block" | ||
image = "res://assets/HookBlock.svg" | ||
action = SubResource("Resource_y52xg") | ||
color = Color(0.781871, 0.0319325, 0.340096, 1) | ||
base_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, 1), Vector2(0, 2), Vector2(1, 2), Vector2(2, 2)]) | ||
right_structure = Array[Vector2]([Vector2(0, 0), Vector2(-1, 0), Vector2(-2, 0), Vector2(-2, 1), Vector2(-2, 2)]) | ||
flipped_structure = Array[Vector2]([Vector2(0, 0), Vector2(0, -1), Vector2(0, -2), Vector2(-1, -2), Vector2(-2, -2)]) | ||
left_structure = Array[Vector2]([Vector2(0, 0), Vector2(1, 0), Vector2(2, 0), Vector2(2, -1), Vector2(2, -2)]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.