Added hidden card game.
Deploy Promiscuity Auth API / deploy (push) Successful in 46s
Deploy Promiscuity Character API / deploy (push) Successful in 43s
Deploy Promiscuity Locations API / deploy (push) Successful in 46s
k8s smoke test / test (push) Successful in 7s

This commit is contained in:
2026-02-13 12:30:24 -06:00
parent 6dc4d53ba0
commit f4ff1308b8
11 changed files with 125 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
extends Node2D
var card_scene = preload("uid://cqumma8ibtbsx")
func _ready():
var card = card_scene.instantiate()
var size = get_viewport().get_visible_rect().size
card.card_text = "YOOOOOO"
card.card_name = "HAHAHAH"
card.card_cost = 2
card.position = Vector2(size.x / 2, size.y / 2)
add_child(card)