├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons ├── label_font_auto_sizer │ ├── LICENSE │ ├── icon.svg │ ├── icon.svg.import │ ├── label_auto_sizer.gd │ ├── label_auto_sizer.gd.uid │ ├── label_font_auto_size_manager.gd │ ├── label_font_auto_size_manager.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ ├── rich_label_auto_sizer.gd │ └── rich_label_auto_sizer.gd.uid └── smooth_scroll_container │ ├── LICENSE │ ├── SmoothScrollContainer.gd │ ├── SmoothScrollContainer.gd.uid │ └── scroll_damper │ ├── cubic_scroll_damper.gd │ ├── cubic_scroll_damper.gd.uid │ ├── expo_scroll_damper.gd │ ├── expo_scroll_damper.gd.uid │ ├── linear_scroll_damper.gd │ ├── linear_scroll_damper.gd.uid │ ├── quad_scroll_damper.gd │ ├── quad_scroll_damper.gd.uid │ ├── scroll_damper.gd │ └── scroll_damper.gd.uid ├── autoload ├── ActionGenerator.gd ├── ActionGenerator.gd.uid ├── ActionHandler.gd ├── ActionHandler.gd.uid ├── DebugLogger.gd ├── DebugLogger.gd.uid ├── FileLoader.gd ├── FileLoader.gd.uid ├── Global.gd ├── Global.gd.uid ├── Random.gd ├── Random.gd.uid ├── Scenes.gd ├── Scenes.gd.uid ├── Scripts.gd ├── Scripts.gd.uid ├── Signals.gd ├── Signals.gd.uid ├── UIDGenerator.gd └── UIDGenerator.gd.uid ├── data ├── CardPlayRequest.gd ├── CardPlayRequest.gd.uid ├── PrototypeData.gd ├── PrototypeData.gd.uid ├── SerializableData.gd ├── SerializableData.gd.uid ├── filters │ ├── ArtifactFilter.gd │ ├── ArtifactFilter.gd.uid │ ├── CardFilter.gd │ └── CardFilter.gd.uid ├── mutable │ ├── CombatStatsData.gd │ ├── CombatStatsData.gd.uid │ ├── LocationData.gd │ ├── LocationData.gd.uid │ ├── ProfileData.gd │ ├── ProfileData.gd.uid │ ├── ShopData.gd │ ├── ShopData.gd.uid │ ├── UserSettingsData.gd │ └── UserSettingsData.gd.uid ├── prototype │ ├── ArtifactData.gd │ ├── ArtifactData.gd.uid │ ├── CardData.gd │ ├── CardData.gd.uid │ ├── EnemyData.gd │ ├── EnemyData.gd.uid │ ├── PlayerData.gd │ └── PlayerData.gd.uid └── readonly │ ├── ActData.gd │ ├── ActData.gd.uid │ ├── ActionInterceptorData.gd │ ├── ActionInterceptorData.gd.uid │ ├── ArtifactPackData.gd │ ├── ArtifactPackData.gd.uid │ ├── CardPackData.gd │ ├── CardPackData.gd.uid │ ├── CharacterData.gd │ ├── CharacterData.gd.uid │ ├── ColorData.gd │ ├── ColorData.gd.uid │ ├── ConsumableData.gd │ ├── ConsumableData.gd.uid │ ├── DialogueData.gd │ ├── DialogueData.gd.uid │ ├── EventData.gd │ ├── EventData.gd.uid │ ├── EventPoolData.gd │ ├── EventPoolData.gd.uid │ ├── KeywordData.gd │ ├── KeywordData.gd.uid │ ├── RestActionData.gd │ ├── RestActionData.gd.uid │ ├── RunModifierData.gd │ ├── RunModifierData.gd.uid │ ├── RunStartOptionData.gd │ ├── RunStartOptionData.gd.uid │ ├── StatusEffectData.gd │ ├── StatusEffectData.gd.uid │ ├── embedded │ ├── DialogueOptionData.gd │ ├── DialogueOptionData.gd.uid │ ├── DialogueStateData.gd │ └── DialogueStateData.gd.uid │ └── modding │ ├── CustomSignal.gd │ ├── CustomSignal.gd.uid │ ├── CustomSignalData.gd │ ├── CustomSignalData.gd.uid │ ├── CustomUIData.gd │ ├── CustomUIData.gd.uid │ ├── ModData.gd │ ├── ModData.gd.uid │ ├── ModListData.gd │ └── ModListData.gd.uid ├── external ├── .gdignore ├── mod_info.json ├── mod_list.json ├── mods │ └── example_mod │ │ ├── cards │ │ └── card_modded_card.json │ │ ├── characters │ │ └── character_red.json │ │ ├── mod_info.json │ │ └── scripts │ │ └── ActionDebugLog.gd ├── sprites │ ├── artifacts │ │ ├── artifact_blue.png │ │ ├── artifact_green.png │ │ ├── artifact_orange.png │ │ ├── artifact_purple.png │ │ ├── artifact_red.png │ │ ├── artifact_white.png │ │ └── artifact_yellow.png │ ├── cards │ │ ├── blue │ │ │ └── card_blue.png │ │ ├── green │ │ │ └── card_green.png │ │ ├── orange │ │ │ └── card_orange.png │ │ └── red │ │ │ └── card_red.png │ ├── characters │ │ ├── character_blue │ │ │ ├── character_blue.png │ │ │ ├── character_blue_icon.png │ │ │ └── character_blue_text_energy.png │ │ ├── character_green │ │ │ ├── character_green.png │ │ │ ├── character_green_icon.png │ │ │ └── character_green_text_energy.png │ │ ├── character_orange │ │ │ ├── character_orange.png │ │ │ ├── character_orange_icon.png │ │ │ └── character_orange_text_energy.png │ │ └── character_red │ │ │ ├── character_red.png │ │ │ ├── character_red_icon.png │ │ │ └── character_red_text_energy.png │ ├── enemies │ │ ├── enemy_blue_large.png │ │ ├── enemy_blue_medium.png │ │ ├── enemy_blue_small.png │ │ ├── enemy_green_large.png │ │ ├── enemy_green_medium.png │ │ ├── enemy_green_small.png │ │ ├── enemy_purple_large.png │ │ ├── enemy_purple_medium.png │ │ ├── enemy_purple_small.png │ │ ├── enemy_red_large.png │ │ ├── enemy_red_medium.png │ │ ├── enemy_red_small.png │ │ ├── enemy_yellow_large.png │ │ ├── enemy_yellow_medium.png │ │ └── enemy_yellow_small.png │ ├── events │ │ └── event_pick_something.png │ └── icon.svg └── user_settings.json ├── icon.svg ├── icon.svg.import ├── misc └── curves │ ├── hand_rotation_curve.tres │ └── hand_y_curve.tres ├── project.godot ├── scenes ├── Root.tscn ├── combatants │ ├── BaseCombatant.tscn │ ├── Enemy.tscn │ ├── HealthLayer.tscn │ ├── LayeredHealthBar.tscn │ ├── Player.tscn │ ├── StatusEffect.tscn │ └── fades │ │ ├── ArtifactFade.tscn │ │ └── TextFade.tscn └── ui │ ├── Artifact.tscn │ ├── Card.tscn │ ├── CharacterSelectionButton.tscn │ ├── ConsumableButton.tscn │ ├── CustomRunModifierCheckbox.tscn │ ├── MapLocation.tscn │ ├── RestActionButton.tscn │ ├── custom │ ├── BaseCustomUI.tscn │ └── CustomUISeeTopOfDrawPile.tscn │ ├── general │ ├── DialogueOption.tscn │ ├── KeywordContainer.tscn │ ├── KeywordTooltip.tscn │ └── Tooltip.tscn │ ├── rewards │ ├── ArtifactRewardButton.tscn │ ├── BaseRewardButton.tscn │ ├── CardRewardButton.tscn │ └── MoneyRewardButton.tscn │ └── shop │ ├── ArtifactShopButton.tscn │ ├── BaseShopButton.tscn │ ├── CardDraftShopButton.tscn │ ├── CardRemovalShopButton.tscn │ ├── CardShopButton.tscn │ └── ConsumableShopButton.tscn ├── scripts ├── Root.gd ├── Root.gd.uid ├── action_interceptors │ ├── ActionInterceptorProcessor.gd │ ├── ActionInterceptorProcessor.gd.uid │ ├── BaseActionInterceptor.gd │ ├── BaseActionInterceptor.gd.uid │ ├── InterceptorDamageIncrease.gd │ ├── InterceptorDamageIncrease.gd.uid │ ├── InterceptorDuplicateAttacks.gd │ ├── InterceptorDuplicateAttacks.gd.uid │ ├── InterceptorDuplicateCardPlays.gd │ ├── InterceptorDuplicateCardPlays.gd.uid │ ├── InterceptorNegateDamage.gd │ ├── InterceptorNegateDamage.gd.uid │ ├── InterceptorNegateDebuff.gd │ ├── InterceptorNegateDebuff.gd.uid │ ├── InterceptorPreserveBlock.gd │ ├── InterceptorPreserveBlock.gd.uid │ ├── InterceptorVulnerable.gd │ ├── InterceptorVulnerable.gd.uid │ ├── InterceptorWeaken.gd │ ├── InterceptorWeaken.gd.uid │ └── status_effect_decay_interceptors │ │ ├── InterceptorBaseNegateStatusDecay.gd │ │ └── InterceptorBaseNegateStatusDecay.gd.uid ├── actions │ ├── ActionAddEnergy.gd │ ├── ActionAddEnergy.gd.uid │ ├── ActionAddHealth.gd │ ├── ActionAddHealth.gd.uid │ ├── ActionBlock.gd │ ├── ActionBlock.gd.uid │ ├── ActionDirectDamage.gd │ ├── ActionDirectDamage.gd.uid │ ├── ActionEndTurn.gd │ ├── ActionEndTurn.gd.uid │ ├── ActionHealPercent.gd │ ├── ActionHealPercent.gd.uid │ ├── ActionResetBlock.gd │ ├── ActionResetBlock.gd.uid │ ├── ActionReshuffle.gd │ ├── ActionReshuffle.gd.uid │ ├── ActionSummonEnemies.gd │ ├── ActionSummonEnemies.gd.uid │ ├── BaseAction.gd │ ├── BaseAction.gd.uid │ ├── BaseAsyncAction.gd │ ├── BaseAsyncAction.gd.uid │ ├── artifact_actions │ │ ├── ActionIncreaseArtifactCharge.gd │ │ └── ActionIncreaseArtifactCharge.gd.uid │ ├── cardset_actions │ │ ├── ActionAddCardsToDeck.gd │ │ ├── ActionAddCardsToDeck.gd.uid │ │ ├── ActionAddCardsToDraw.gd │ │ ├── ActionAddCardsToDraw.gd.uid │ │ ├── ActionAddCardsToHand.gd │ │ ├── ActionAddCardsToHand.gd.uid │ │ ├── ActionAttachCardsOntoEnemy.gd │ │ ├── ActionAttachCardsOntoEnemy.gd.uid │ │ ├── ActionBanishCards.gd │ │ ├── ActionBanishCards.gd.uid │ │ ├── ActionChangeCardEnergies.gd │ │ ├── ActionChangeCardEnergies.gd.uid │ │ ├── ActionChangeCardProperties.gd │ │ ├── ActionChangeCardProperties.gd.uid │ │ ├── ActionDiscardCards.gd │ │ ├── ActionDiscardCards.gd.uid │ │ ├── ActionExhaustCards.gd │ │ ├── ActionExhaustCards.gd.uid │ │ ├── ActionImproveCardValues.gd │ │ ├── ActionImproveCardValues.gd.uid │ │ ├── ActionMoveCardsToLimbo.gd │ │ ├── ActionMoveCardsToLimbo.gd.uid │ │ ├── ActionPlayCards.gd │ │ ├── ActionPlayCards.gd.uid │ │ ├── ActionRandomizeCardEnergies.gd │ │ ├── ActionRandomizeCardEnergies.gd.uid │ │ ├── ActionRemoveCardsFromDeck.gd │ │ ├── ActionRemoveCardsFromDeck.gd.uid │ │ ├── ActionRetainCards.gd │ │ ├── ActionRetainCards.gd.uid │ │ ├── ActionTransformCards.gd │ │ ├── ActionTransformCards.gd.uid │ │ ├── ActionUpgradeCards.gd │ │ ├── ActionUpgradeCards.gd.uid │ │ ├── BaseCardsetAction.gd │ │ └── BaseCardsetAction.gd.uid │ ├── custom_ui_actions │ │ ├── ActionCustomUI.gd │ │ └── ActionCustomUI.gd.uid │ ├── debug_actions │ │ ├── ActionDebugLog.gd │ │ └── ActionDebugLog.gd.uid │ ├── enemy_actions │ │ ├── ActionCycleEnemyIntent.gd │ │ └── ActionCycleEnemyIntent.gd.uid │ ├── generated_actions │ │ ├── ActionAttack.gd │ │ ├── ActionAttack.gd.uid │ │ ├── ActionDraw.gd │ │ └── ActionDraw.gd.uid │ ├── meta_actions │ │ ├── ActionAttackGenerator.gd │ │ ├── ActionAttackGenerator.gd.uid │ │ ├── ActionCardPlay.gd │ │ ├── ActionCardPlay.gd.uid │ │ ├── ActionCardPlayEnd.gd │ │ ├── ActionCardPlayEnd.gd.uid │ │ ├── ActionDrawGenerator.gd │ │ ├── ActionDrawGenerator.gd.uid │ │ ├── ActionEmitCustomSignal.gd │ │ ├── ActionEmitCustomSignal.gd.uid │ │ ├── ActionValidator.gd │ │ ├── ActionValidator.gd.uid │ │ ├── ActionVariableCardsetModifier.gd │ │ ├── ActionVariableCardsetModifier.gd.uid │ │ ├── ActionVariableCombatStatsModifier.gd │ │ ├── ActionVariableCombatStatsModifier.gd.uid │ │ ├── ActionVariableCostModifier.gd │ │ └── ActionVariableCostModifier.gd.uid │ ├── pick_card_actions │ │ ├── ActionBasePickCards.gd │ │ ├── ActionBasePickCards.gd.uid │ │ ├── ActionCreateCards.gd │ │ ├── ActionCreateCards.gd.uid │ │ ├── ActionPickCards.gd │ │ ├── ActionPickCards.gd.uid │ │ ├── ActionPickDuplicateCards.gd │ │ ├── ActionPickDuplicateCards.gd.uid │ │ ├── ActionPickUpgradeCards.gd │ │ └── ActionPickUpgradeCards.gd.uid │ ├── player_actions │ │ ├── ActionAddArtifact.gd │ │ ├── ActionAddArtifact.gd.uid │ │ ├── ActionAddConsumable.gd │ │ ├── ActionAddConsumable.gd.uid │ │ ├── ActionAddMoney.gd │ │ ├── ActionAddMoney.gd.uid │ │ ├── ActionSwapBossArtifact.gd │ │ ├── ActionSwapBossArtifact.gd.uid │ │ ├── ActionUpdateCardDrafts.gd │ │ ├── ActionUpdateCardDrafts.gd.uid │ │ ├── ActionUpdateRestActions.gd │ │ ├── ActionUpdateRestActions.gd.uid │ │ ├── ActionUseConsumable.gd │ │ └── ActionUseConsumable.gd.uid │ ├── rewards │ │ ├── ActionClearRewards.gd │ │ ├── ActionClearRewards.gd.uid │ │ ├── ActionGrantRewards.gd │ │ └── ActionGrantRewards.gd.uid │ ├── shop_actions │ │ ├── ActionShopPopulateItems.gd │ │ ├── ActionShopPopulateItems.gd.uid │ │ ├── ActionShopPurchaseItems.gd │ │ └── ActionShopPurchaseItems.gd.uid │ ├── status_actions │ │ ├── ActionApplyStatus.gd │ │ ├── ActionApplyStatus.gd.uid │ │ ├── ActionCorrosion.gd │ │ ├── ActionCorrosion.gd.uid │ │ ├── ActionDecayStatus.gd │ │ └── ActionDecayStatus.gd.uid │ ├── world_generation_actions │ │ ├── ActionGenerateAct.gd │ │ └── ActionGenerateAct.gd.uid │ └── world_interaction_actions │ │ ├── ActionOpenChest.gd │ │ ├── ActionOpenChest.gd.uid │ │ ├── ActionStartCombat.gd │ │ ├── ActionStartCombat.gd.uid │ │ ├── ActionVisitLocation.gd │ │ └── ActionVisitLocation.gd.uid ├── artifacts │ ├── ArtifactBlockOnAttacks.gd │ ├── ArtifactBlockOnAttacks.gd.uid │ ├── ArtifactDrawOnKill.gd │ ├── ArtifactDrawOnKill.gd.uid │ ├── ArtifactEasyMode.gd │ ├── ArtifactEasyMode.gd.uid │ ├── ArtifactRetainHand.gd │ ├── ArtifactRetainHand.gd.uid │ ├── BaseArtifact.gd │ └── BaseArtifact.gd.uid ├── card_listeners │ ├── BaseCardListener.gd │ ├── BaseCardListener.gd.uid │ ├── ListenerCardCostModifier.gd │ ├── ListenerCardCostModifier.gd.uid │ ├── ListenerCardValueModifier.gd │ └── ListenerCardValueModifier.gd.uid ├── combatants │ ├── BaseCombatant.gd │ ├── BaseCombatant.gd.uid │ ├── Enemy.gd │ ├── Enemy.gd.uid │ ├── HealthLayer.gd │ ├── HealthLayer.gd.uid │ ├── LayeredHealthBar.gd │ ├── LayeredHealthBar.gd.uid │ ├── Player.gd │ ├── Player.gd.uid │ ├── StatusEffect.gd │ ├── StatusEffect.gd.uid │ └── fades │ │ ├── ArtifactFade.gd │ │ ├── ArtifactFade.gd.uid │ │ ├── TextFade.gd │ │ └── TextFade.gd.uid ├── run_modifiers │ ├── BaseRunModifier.gd │ ├── BaseRunModifier.gd.uid │ ├── custom │ │ ├── RunModifierCustom1.gd │ │ ├── RunModifierCustom1.gd.uid │ │ ├── RunModifierCustom2.gd │ │ ├── RunModifierCustom2.gd.uid │ │ ├── RunModifierCustomDraftAllColors.gd │ │ ├── RunModifierCustomDraftAllColors.gd.uid │ │ ├── RunModifierCustomEasyMode.gd │ │ ├── RunModifierCustomEasyMode.gd.uid │ │ ├── RunModifierCustomEndlessMode.gd │ │ └── RunModifierCustomEndlessMode.gd.uid │ └── difficulties │ │ ├── RunModifierDifficulty1.gd │ │ ├── RunModifierDifficulty1.gd.uid │ │ ├── RunModifierDifficulty2.gd │ │ ├── RunModifierDifficulty2.gd.uid │ │ ├── RunModifierDifficulty3.gd │ │ ├── RunModifierDifficulty3.gd.uid │ │ ├── RunModifierDifficulty4.gd │ │ ├── RunModifierDifficulty4.gd.uid │ │ ├── RunModifierDifficulty5.gd │ │ └── RunModifierDifficulty5.gd.uid ├── status_effects │ ├── BaseStatusEffect.gd │ ├── BaseStatusEffect.gd.uid │ ├── StatusEffectAttachedCard.gd │ ├── StatusEffectAttachedCard.gd.uid │ ├── StatusEffectBomb.gd │ ├── StatusEffectBomb.gd.uid │ ├── StatusEffectDuplicateCardPlays.gd │ └── StatusEffectDuplicateCardPlays.gd.uid ├── ui │ ├── Artifact.gd │ ├── Artifact.gd.uid │ ├── ArtifactContainer.gd │ ├── ArtifactContainer.gd.uid │ ├── Card.gd │ ├── Card.gd.uid │ ├── CardDraftSelectionOverlay.gd │ ├── CardDraftSelectionOverlay.gd.uid │ ├── CardSelectionOverlay.gd │ ├── CardSelectionOverlay.gd.uid │ ├── CharacterButtonContainer.gd │ ├── CharacterButtonContainer.gd.uid │ ├── CharacterSelectionButton.gd │ ├── CharacterSelectionButton.gd.uid │ ├── Chest.gd │ ├── Chest.gd.uid │ ├── Combat.gd │ ├── Combat.gd.uid │ ├── CombatEndTurn.gd │ ├── CombatEndTurn.gd.uid │ ├── ConsumableButton.gd │ ├── ConsumableButton.gd.uid │ ├── Consumables.gd │ ├── Consumables.gd.uid │ ├── CustomRunModifierButtonContainer.gd │ ├── CustomRunModifierButtonContainer.gd.uid │ ├── CustomRunModifierCheckbox.gd │ ├── CustomRunModifierCheckbox.gd.uid │ ├── DialogueOverlay.gd │ ├── DialogueOverlay.gd.uid │ ├── EnemyContainer.gd │ ├── EnemyContainer.gd.uid │ ├── Hand.gd │ ├── Hand.gd.uid │ ├── Map.gd │ ├── Map.gd.uid │ ├── MapLocation.gd │ ├── MapLocation.gd.uid │ ├── PauseButton.gd │ ├── PauseButton.gd.uid │ ├── PauseOverlay.gd │ ├── PauseOverlay.gd.uid │ ├── RestActionButton.gd │ ├── RestActionButton.gd.uid │ ├── RestOverlay.gd │ ├── RestOverlay.gd.uid │ ├── RewardOverlay.gd │ ├── RewardOverlay.gd.uid │ ├── RunStartOptions.gd │ ├── RunStartOptions.gd.uid │ ├── RunSummaryOverlay.gd │ ├── RunSummaryOverlay.gd.uid │ ├── Shop.gd │ ├── Shop.gd.uid │ ├── ShopOverlay.gd │ ├── ShopOverlay.gd.uid │ ├── TurnOverlay.gd │ ├── TurnOverlay.gd.uid │ ├── custom │ │ ├── BaseCustomUI.gd │ │ ├── BaseCustomUI.gd.uid │ │ ├── CustomUISeeTopOfDrawPile.gd │ │ └── CustomUISeeTopOfDrawPile.gd.uid │ ├── general │ │ ├── DialogueOption.gd │ │ ├── DialogueOption.gd.uid │ │ ├── KeywordContainer.gd │ │ ├── KeywordContainer.gd.uid │ │ ├── KeywordTooltip.gd │ │ ├── KeywordTooltip.gd.uid │ │ ├── Tooltip.gd │ │ └── Tooltip.gd.uid │ ├── menus │ │ ├── CodexMenu.gd │ │ ├── CodexMenu.gd.uid │ │ ├── MainMenu.gd │ │ ├── MainMenu.gd.uid │ │ ├── NewRunMenu.gd │ │ ├── NewRunMenu.gd.uid │ │ ├── RunScreen.gd │ │ ├── RunScreen.gd.uid │ │ ├── TitleScreen.gd │ │ └── TitleScreen.gd.uid │ ├── rewards │ │ ├── ArtifactRewardButton.gd │ │ ├── ArtifactRewardButton.gd.uid │ │ ├── BaseRewardButton.gd │ │ ├── BaseRewardButton.gd.uid │ │ ├── CardRewardButton.gd │ │ ├── CardRewardButton.gd.uid │ │ ├── MoneyRewardButton.gd │ │ └── MoneyRewardButton.gd.uid │ └── shop │ │ ├── ArtifactShopButton.gd │ │ ├── ArtifactShopButton.gd.uid │ │ ├── BaseShopButton.gd │ │ ├── BaseShopButton.gd.uid │ │ ├── CardShopButton.gd │ │ ├── CardShopButton.gd.uid │ │ ├── ConsumableShopButton.gd │ │ └── ConsumableShopButton.gd.uid └── validators │ ├── BaseValidator.gd │ ├── BaseValidator.gd.uid │ ├── ValidatorCombatStats.gd │ ├── ValidatorCombatStats.gd.uid │ ├── ValidatorEnemyAttacking.gd │ ├── ValidatorEnemyAttacking.gd.uid │ ├── ValidatorEnemyType.gd │ ├── ValidatorEnemyType.gd.uid │ ├── ValidatorHasRelic.gd │ ├── ValidatorHasRelic.gd.uid │ ├── ValidatorInCombat.gd │ ├── ValidatorInCombat.gd.uid │ ├── ValidatorLocationType.gd │ ├── ValidatorLocationType.gd.uid │ ├── ValidatorMoney.gd │ ├── ValidatorMoney.gd.uid │ ├── ValidatorPlayerHealth.gd │ ├── ValidatorPlayerHealth.gd.uid │ ├── ValidatorPlayerTurn.gd │ ├── ValidatorPlayerTurn.gd.uid │ ├── ValidatorRNG.gd │ ├── ValidatorRNG.gd.uid │ ├── ValidatorRunModifier.gd │ ├── ValidatorRunModifier.gd.uid │ ├── ValidatorTurnCount.gd │ ├── ValidatorTurnCount.gd.uid │ ├── card │ ├── ValidatorCardColor.gd │ ├── ValidatorCardColor.gd.uid │ ├── ValidatorCardDraftable.gd │ ├── ValidatorCardDraftable.gd.uid │ ├── ValidatorCardEnergyCost.gd │ ├── ValidatorCardEnergyCost.gd.uid │ ├── ValidatorCardID.gd │ ├── ValidatorCardID.gd.uid │ ├── ValidatorCardLocation.gd │ ├── ValidatorCardLocation.gd.uid │ ├── ValidatorCardProperties.gd │ ├── ValidatorCardProperties.gd.uid │ ├── ValidatorCardRarity.gd │ ├── ValidatorCardRarity.gd.uid │ ├── ValidatorCardRemovableFromDeck.gd │ ├── ValidatorCardRemovableFromDeck.gd.uid │ ├── ValidatorCardTag.gd │ ├── ValidatorCardTag.gd.uid │ ├── ValidatorCardTransformableFromDeck.gd │ ├── ValidatorCardTransformableFromDeck.gd.uid │ ├── ValidatorCardType.gd │ ├── ValidatorCardType.gd.uid │ ├── ValidatorCardUpgradeable.gd │ └── ValidatorCardUpgradeable.gd.uid │ ├── card_plays │ ├── ValidatorCardPlayEnemyAttacking.gd │ ├── ValidatorCardPlayEnemyAttacking.gd.uid │ ├── ValidatorCardPlayEnergyInput.gd │ ├── ValidatorCardPlayEnergyInput.gd.uid │ ├── ValidatorCardPlayIsDuplicated.gd │ └── ValidatorCardPlayIsDuplicated.gd.uid │ ├── deck │ ├── ValidatorDeckHasRemovableCard.gd │ ├── ValidatorDeckHasRemovableCard.gd.uid │ ├── ValidatorDeckHasUpgradeableCard.gd │ ├── ValidatorDeckHasUpgradeableCard.gd.uid │ ├── ValidatorPileSize.gd │ └── ValidatorPileSize.gd.uid │ └── hand │ ├── ValidatorCardIDAdjacentInHand.gd │ ├── ValidatorCardIDAdjacentInHand.gd.uid │ ├── ValidatorCardPositionInHand.gd │ ├── ValidatorCardPositionInHand.gd.uid │ ├── ValidatorCardTypeAdjacentInHand.gd │ ├── ValidatorCardTypeAdjacentInHand.gd.uid │ ├── ValidatorCardTypeInHand.gd │ └── ValidatorCardTypeInHand.gd.uid ├── sprites ├── health_bar_frame.PNG ├── health_bar_frame.PNG.import ├── icon.png └── icon.png.import └── themes ├── keyword_tooltip_theme.tres └── title_screen_theme.tres /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/README.md -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/LICENSE -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/icon.svg -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/icon.svg.import -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/label_auto_sizer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/label_auto_sizer.gd -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/label_auto_sizer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://csw1vv4b1hbnb 2 | -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/label_font_auto_size_manager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/label_font_auto_size_manager.gd -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/label_font_auto_size_manager.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b4ujqpk6odmni 2 | -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/plugin.cfg -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/plugin.gd -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cjcnwc5n646eq 2 | -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/rich_label_auto_sizer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/label_font_auto_sizer/rich_label_auto_sizer.gd -------------------------------------------------------------------------------- /addons/label_font_auto_sizer/rich_label_auto_sizer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5i0sjwlko88l 2 | -------------------------------------------------------------------------------- /addons/smooth_scroll_container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/smooth_scroll_container/LICENSE -------------------------------------------------------------------------------- /addons/smooth_scroll_container/SmoothScrollContainer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/smooth_scroll_container/SmoothScrollContainer.gd -------------------------------------------------------------------------------- /addons/smooth_scroll_container/SmoothScrollContainer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2t515tpjrija 2 | -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/cubic_scroll_damper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/smooth_scroll_container/scroll_damper/cubic_scroll_damper.gd -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/cubic_scroll_damper.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ds5t0p0hjodi5 2 | -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/expo_scroll_damper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/smooth_scroll_container/scroll_damper/expo_scroll_damper.gd -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/expo_scroll_damper.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b3nvcsku8u75w 2 | -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/linear_scroll_damper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/smooth_scroll_container/scroll_damper/linear_scroll_damper.gd -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/linear_scroll_damper.gd.uid: -------------------------------------------------------------------------------- 1 | uid://e821e75gkx8d 2 | -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/quad_scroll_damper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/smooth_scroll_container/scroll_damper/quad_scroll_damper.gd -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/quad_scroll_damper.gd.uid: -------------------------------------------------------------------------------- 1 | uid://21571feqsqkj 2 | -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/scroll_damper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/addons/smooth_scroll_container/scroll_damper/scroll_damper.gd -------------------------------------------------------------------------------- /addons/smooth_scroll_container/scroll_damper/scroll_damper.gd.uid: -------------------------------------------------------------------------------- 1 | uid://r3cldpo7obyw 2 | -------------------------------------------------------------------------------- /autoload/ActionGenerator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/ActionGenerator.gd -------------------------------------------------------------------------------- /autoload/ActionGenerator.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0ss55574cruv 2 | -------------------------------------------------------------------------------- /autoload/ActionHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/ActionHandler.gd -------------------------------------------------------------------------------- /autoload/ActionHandler.gd.uid: -------------------------------------------------------------------------------- 1 | uid://db6e0yflcrwj1 2 | -------------------------------------------------------------------------------- /autoload/DebugLogger.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/DebugLogger.gd -------------------------------------------------------------------------------- /autoload/DebugLogger.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5p467ldm6p6q 2 | -------------------------------------------------------------------------------- /autoload/FileLoader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/FileLoader.gd -------------------------------------------------------------------------------- /autoload/FileLoader.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0wlysr3ksiti 2 | -------------------------------------------------------------------------------- /autoload/Global.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/Global.gd -------------------------------------------------------------------------------- /autoload/Global.gd.uid: -------------------------------------------------------------------------------- 1 | uid://vfw2cgq0gimi 2 | -------------------------------------------------------------------------------- /autoload/Random.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/Random.gd -------------------------------------------------------------------------------- /autoload/Random.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1ky2fjc0qehr 2 | -------------------------------------------------------------------------------- /autoload/Scenes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/Scenes.gd -------------------------------------------------------------------------------- /autoload/Scenes.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5xj8e7r057tr 2 | -------------------------------------------------------------------------------- /autoload/Scripts.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/Scripts.gd -------------------------------------------------------------------------------- /autoload/Scripts.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cm2dd1owque4x 2 | -------------------------------------------------------------------------------- /autoload/Signals.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/Signals.gd -------------------------------------------------------------------------------- /autoload/Signals.gd.uid: -------------------------------------------------------------------------------- 1 | uid://concin3jx3682 2 | -------------------------------------------------------------------------------- /autoload/UIDGenerator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/autoload/UIDGenerator.gd -------------------------------------------------------------------------------- /autoload/UIDGenerator.gd.uid: -------------------------------------------------------------------------------- 1 | uid://be7be7sa5431w 2 | -------------------------------------------------------------------------------- /data/CardPlayRequest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/CardPlayRequest.gd -------------------------------------------------------------------------------- /data/CardPlayRequest.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dunuklc2bvqpo 2 | -------------------------------------------------------------------------------- /data/PrototypeData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/PrototypeData.gd -------------------------------------------------------------------------------- /data/PrototypeData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://yqr6c2gw6xi4 2 | -------------------------------------------------------------------------------- /data/SerializableData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/SerializableData.gd -------------------------------------------------------------------------------- /data/SerializableData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://crgnypjt652av 2 | -------------------------------------------------------------------------------- /data/filters/ArtifactFilter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/filters/ArtifactFilter.gd -------------------------------------------------------------------------------- /data/filters/ArtifactFilter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://blwut223nftm3 2 | -------------------------------------------------------------------------------- /data/filters/CardFilter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/filters/CardFilter.gd -------------------------------------------------------------------------------- /data/filters/CardFilter.gd.uid: -------------------------------------------------------------------------------- 1 | uid://if2h2h42g430 2 | -------------------------------------------------------------------------------- /data/mutable/CombatStatsData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/mutable/CombatStatsData.gd -------------------------------------------------------------------------------- /data/mutable/CombatStatsData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ba6m18vl2q18d 2 | -------------------------------------------------------------------------------- /data/mutable/LocationData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/mutable/LocationData.gd -------------------------------------------------------------------------------- /data/mutable/LocationData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cu2iljbmmq4yi 2 | -------------------------------------------------------------------------------- /data/mutable/ProfileData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/mutable/ProfileData.gd -------------------------------------------------------------------------------- /data/mutable/ProfileData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bvsa8myk7mgrb 2 | -------------------------------------------------------------------------------- /data/mutable/ShopData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/mutable/ShopData.gd -------------------------------------------------------------------------------- /data/mutable/ShopData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://1rq8ewcoudrm 2 | -------------------------------------------------------------------------------- /data/mutable/UserSettingsData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/mutable/UserSettingsData.gd -------------------------------------------------------------------------------- /data/mutable/UserSettingsData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://0py2stc4ns5f 2 | -------------------------------------------------------------------------------- /data/prototype/ArtifactData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/prototype/ArtifactData.gd -------------------------------------------------------------------------------- /data/prototype/ArtifactData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://carre54e2q5m5 2 | -------------------------------------------------------------------------------- /data/prototype/CardData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/prototype/CardData.gd -------------------------------------------------------------------------------- /data/prototype/CardData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dltjjucvc8hxe 2 | -------------------------------------------------------------------------------- /data/prototype/EnemyData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/prototype/EnemyData.gd -------------------------------------------------------------------------------- /data/prototype/EnemyData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cj3y70fl8axw4 2 | -------------------------------------------------------------------------------- /data/prototype/PlayerData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/prototype/PlayerData.gd -------------------------------------------------------------------------------- /data/prototype/PlayerData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cf3sa12jelp10 2 | -------------------------------------------------------------------------------- /data/readonly/ActData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/ActData.gd -------------------------------------------------------------------------------- /data/readonly/ActData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ddura3ljgjw68 2 | -------------------------------------------------------------------------------- /data/readonly/ActionInterceptorData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/ActionInterceptorData.gd -------------------------------------------------------------------------------- /data/readonly/ActionInterceptorData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ejloepkqwr6s 2 | -------------------------------------------------------------------------------- /data/readonly/ArtifactPackData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/ArtifactPackData.gd -------------------------------------------------------------------------------- /data/readonly/ArtifactPackData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://db4lumj0jwq8f 2 | -------------------------------------------------------------------------------- /data/readonly/CardPackData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/CardPackData.gd -------------------------------------------------------------------------------- /data/readonly/CardPackData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn0x52c7gratm 2 | -------------------------------------------------------------------------------- /data/readonly/CharacterData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/CharacterData.gd -------------------------------------------------------------------------------- /data/readonly/CharacterData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfyon04ksules 2 | -------------------------------------------------------------------------------- /data/readonly/ColorData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/ColorData.gd -------------------------------------------------------------------------------- /data/readonly/ColorData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2s5k8ngubm62 2 | -------------------------------------------------------------------------------- /data/readonly/ConsumableData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/ConsumableData.gd -------------------------------------------------------------------------------- /data/readonly/ConsumableData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bietwbq2ita0c 2 | -------------------------------------------------------------------------------- /data/readonly/DialogueData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/DialogueData.gd -------------------------------------------------------------------------------- /data/readonly/DialogueData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b7tt1i5sopm5t 2 | -------------------------------------------------------------------------------- /data/readonly/EventData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/EventData.gd -------------------------------------------------------------------------------- /data/readonly/EventData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cqoe6yu8ur7ca 2 | -------------------------------------------------------------------------------- /data/readonly/EventPoolData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/EventPoolData.gd -------------------------------------------------------------------------------- /data/readonly/EventPoolData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cagux80aesq27 2 | -------------------------------------------------------------------------------- /data/readonly/KeywordData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/KeywordData.gd -------------------------------------------------------------------------------- /data/readonly/KeywordData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjcbu1lr0i7ic 2 | -------------------------------------------------------------------------------- /data/readonly/RestActionData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/RestActionData.gd -------------------------------------------------------------------------------- /data/readonly/RestActionData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c87jpyhyaduqc 2 | -------------------------------------------------------------------------------- /data/readonly/RunModifierData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/RunModifierData.gd -------------------------------------------------------------------------------- /data/readonly/RunModifierData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://beffkq3bgk1gc 2 | -------------------------------------------------------------------------------- /data/readonly/RunStartOptionData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/RunStartOptionData.gd -------------------------------------------------------------------------------- /data/readonly/RunStartOptionData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cso3gvp43nvpn 2 | -------------------------------------------------------------------------------- /data/readonly/StatusEffectData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/StatusEffectData.gd -------------------------------------------------------------------------------- /data/readonly/StatusEffectData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bk35foaihtdmo 2 | -------------------------------------------------------------------------------- /data/readonly/embedded/DialogueOptionData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/embedded/DialogueOptionData.gd -------------------------------------------------------------------------------- /data/readonly/embedded/DialogueOptionData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://civc8r4rj1hhb 2 | -------------------------------------------------------------------------------- /data/readonly/embedded/DialogueStateData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/embedded/DialogueStateData.gd -------------------------------------------------------------------------------- /data/readonly/embedded/DialogueStateData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbvaca2pv467j 2 | -------------------------------------------------------------------------------- /data/readonly/modding/CustomSignal.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/modding/CustomSignal.gd -------------------------------------------------------------------------------- /data/readonly/modding/CustomSignal.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b7mhqjgmhu7p 2 | -------------------------------------------------------------------------------- /data/readonly/modding/CustomSignalData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/modding/CustomSignalData.gd -------------------------------------------------------------------------------- /data/readonly/modding/CustomSignalData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bg160p2mc7kdr 2 | -------------------------------------------------------------------------------- /data/readonly/modding/CustomUIData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/modding/CustomUIData.gd -------------------------------------------------------------------------------- /data/readonly/modding/CustomUIData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://vvqqeiexw0vt 2 | -------------------------------------------------------------------------------- /data/readonly/modding/ModData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/modding/ModData.gd -------------------------------------------------------------------------------- /data/readonly/modding/ModData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cq6eq27ywc7ya 2 | -------------------------------------------------------------------------------- /data/readonly/modding/ModListData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/data/readonly/modding/ModListData.gd -------------------------------------------------------------------------------- /data/readonly/modding/ModListData.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccdxcw1hkv6vh 2 | -------------------------------------------------------------------------------- /external/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/mod_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/mod_info.json -------------------------------------------------------------------------------- /external/mod_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/mod_list.json -------------------------------------------------------------------------------- /external/mods/example_mod/cards/card_modded_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/mods/example_mod/cards/card_modded_card.json -------------------------------------------------------------------------------- /external/mods/example_mod/characters/character_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/mods/example_mod/characters/character_red.json -------------------------------------------------------------------------------- /external/mods/example_mod/mod_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/mods/example_mod/mod_info.json -------------------------------------------------------------------------------- /external/mods/example_mod/scripts/ActionDebugLog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/mods/example_mod/scripts/ActionDebugLog.gd -------------------------------------------------------------------------------- /external/sprites/artifacts/artifact_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/artifacts/artifact_blue.png -------------------------------------------------------------------------------- /external/sprites/artifacts/artifact_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/artifacts/artifact_green.png -------------------------------------------------------------------------------- /external/sprites/artifacts/artifact_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/artifacts/artifact_orange.png -------------------------------------------------------------------------------- /external/sprites/artifacts/artifact_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/artifacts/artifact_purple.png -------------------------------------------------------------------------------- /external/sprites/artifacts/artifact_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/artifacts/artifact_red.png -------------------------------------------------------------------------------- /external/sprites/artifacts/artifact_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/artifacts/artifact_white.png -------------------------------------------------------------------------------- /external/sprites/artifacts/artifact_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/artifacts/artifact_yellow.png -------------------------------------------------------------------------------- /external/sprites/cards/blue/card_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/cards/blue/card_blue.png -------------------------------------------------------------------------------- /external/sprites/cards/green/card_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/cards/green/card_green.png -------------------------------------------------------------------------------- /external/sprites/cards/orange/card_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/cards/orange/card_orange.png -------------------------------------------------------------------------------- /external/sprites/cards/red/card_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/cards/red/card_red.png -------------------------------------------------------------------------------- /external/sprites/characters/character_blue/character_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_blue/character_blue.png -------------------------------------------------------------------------------- /external/sprites/characters/character_blue/character_blue_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_blue/character_blue_icon.png -------------------------------------------------------------------------------- /external/sprites/characters/character_blue/character_blue_text_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_blue/character_blue_text_energy.png -------------------------------------------------------------------------------- /external/sprites/characters/character_green/character_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_green/character_green.png -------------------------------------------------------------------------------- /external/sprites/characters/character_green/character_green_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_green/character_green_icon.png -------------------------------------------------------------------------------- /external/sprites/characters/character_green/character_green_text_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_green/character_green_text_energy.png -------------------------------------------------------------------------------- /external/sprites/characters/character_orange/character_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_orange/character_orange.png -------------------------------------------------------------------------------- /external/sprites/characters/character_orange/character_orange_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_orange/character_orange_icon.png -------------------------------------------------------------------------------- /external/sprites/characters/character_orange/character_orange_text_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_orange/character_orange_text_energy.png -------------------------------------------------------------------------------- /external/sprites/characters/character_red/character_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_red/character_red.png -------------------------------------------------------------------------------- /external/sprites/characters/character_red/character_red_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_red/character_red_icon.png -------------------------------------------------------------------------------- /external/sprites/characters/character_red/character_red_text_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/characters/character_red/character_red_text_energy.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_blue_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_blue_large.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_blue_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_blue_medium.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_blue_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_blue_small.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_green_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_green_large.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_green_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_green_medium.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_green_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_green_small.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_purple_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_purple_large.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_purple_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_purple_medium.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_purple_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_purple_small.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_red_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_red_large.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_red_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_red_medium.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_red_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_red_small.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_yellow_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_yellow_large.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_yellow_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_yellow_medium.png -------------------------------------------------------------------------------- /external/sprites/enemies/enemy_yellow_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/enemies/enemy_yellow_small.png -------------------------------------------------------------------------------- /external/sprites/events/event_pick_something.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/events/event_pick_something.png -------------------------------------------------------------------------------- /external/sprites/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/sprites/icon.svg -------------------------------------------------------------------------------- /external/user_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/external/user_settings.json -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/icon.svg.import -------------------------------------------------------------------------------- /misc/curves/hand_rotation_curve.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/misc/curves/hand_rotation_curve.tres -------------------------------------------------------------------------------- /misc/curves/hand_y_curve.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/misc/curves/hand_y_curve.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/project.godot -------------------------------------------------------------------------------- /scenes/Root.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/Root.tscn -------------------------------------------------------------------------------- /scenes/combatants/BaseCombatant.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/BaseCombatant.tscn -------------------------------------------------------------------------------- /scenes/combatants/Enemy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/Enemy.tscn -------------------------------------------------------------------------------- /scenes/combatants/HealthLayer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/HealthLayer.tscn -------------------------------------------------------------------------------- /scenes/combatants/LayeredHealthBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/LayeredHealthBar.tscn -------------------------------------------------------------------------------- /scenes/combatants/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/Player.tscn -------------------------------------------------------------------------------- /scenes/combatants/StatusEffect.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/StatusEffect.tscn -------------------------------------------------------------------------------- /scenes/combatants/fades/ArtifactFade.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/fades/ArtifactFade.tscn -------------------------------------------------------------------------------- /scenes/combatants/fades/TextFade.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/combatants/fades/TextFade.tscn -------------------------------------------------------------------------------- /scenes/ui/Artifact.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/Artifact.tscn -------------------------------------------------------------------------------- /scenes/ui/Card.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/Card.tscn -------------------------------------------------------------------------------- /scenes/ui/CharacterSelectionButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/CharacterSelectionButton.tscn -------------------------------------------------------------------------------- /scenes/ui/ConsumableButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/ConsumableButton.tscn -------------------------------------------------------------------------------- /scenes/ui/CustomRunModifierCheckbox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/CustomRunModifierCheckbox.tscn -------------------------------------------------------------------------------- /scenes/ui/MapLocation.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/MapLocation.tscn -------------------------------------------------------------------------------- /scenes/ui/RestActionButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/RestActionButton.tscn -------------------------------------------------------------------------------- /scenes/ui/custom/BaseCustomUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/custom/BaseCustomUI.tscn -------------------------------------------------------------------------------- /scenes/ui/custom/CustomUISeeTopOfDrawPile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/custom/CustomUISeeTopOfDrawPile.tscn -------------------------------------------------------------------------------- /scenes/ui/general/DialogueOption.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/general/DialogueOption.tscn -------------------------------------------------------------------------------- /scenes/ui/general/KeywordContainer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/general/KeywordContainer.tscn -------------------------------------------------------------------------------- /scenes/ui/general/KeywordTooltip.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/general/KeywordTooltip.tscn -------------------------------------------------------------------------------- /scenes/ui/general/Tooltip.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/general/Tooltip.tscn -------------------------------------------------------------------------------- /scenes/ui/rewards/ArtifactRewardButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/rewards/ArtifactRewardButton.tscn -------------------------------------------------------------------------------- /scenes/ui/rewards/BaseRewardButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/rewards/BaseRewardButton.tscn -------------------------------------------------------------------------------- /scenes/ui/rewards/CardRewardButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/rewards/CardRewardButton.tscn -------------------------------------------------------------------------------- /scenes/ui/rewards/MoneyRewardButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/rewards/MoneyRewardButton.tscn -------------------------------------------------------------------------------- /scenes/ui/shop/ArtifactShopButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/shop/ArtifactShopButton.tscn -------------------------------------------------------------------------------- /scenes/ui/shop/BaseShopButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/shop/BaseShopButton.tscn -------------------------------------------------------------------------------- /scenes/ui/shop/CardDraftShopButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/shop/CardDraftShopButton.tscn -------------------------------------------------------------------------------- /scenes/ui/shop/CardRemovalShopButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/shop/CardRemovalShopButton.tscn -------------------------------------------------------------------------------- /scenes/ui/shop/CardShopButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/shop/CardShopButton.tscn -------------------------------------------------------------------------------- /scenes/ui/shop/ConsumableShopButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scenes/ui/shop/ConsumableShopButton.tscn -------------------------------------------------------------------------------- /scripts/Root.gd: -------------------------------------------------------------------------------- 1 | extends Node2D 2 | -------------------------------------------------------------------------------- /scripts/Root.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ckfi22o2jit0b 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/ActionInterceptorProcessor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/ActionInterceptorProcessor.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/ActionInterceptorProcessor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://74f28ex2n8m3 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/BaseActionInterceptor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/BaseActionInterceptor.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/BaseActionInterceptor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bqei6btdc842b 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorDamageIncrease.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorDamageIncrease.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorDamageIncrease.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3taw8monwix1 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorDuplicateAttacks.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorDuplicateAttacks.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorDuplicateAttacks.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4u2idnnffnx6 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorDuplicateCardPlays.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorDuplicateCardPlays.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorDuplicateCardPlays.gd.uid: -------------------------------------------------------------------------------- 1 | uid://babasx4ubrojh 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorNegateDamage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorNegateDamage.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorNegateDamage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0lr04w74h2di 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorNegateDebuff.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorNegateDebuff.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorNegateDebuff.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bnnhcjk876g4p 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorPreserveBlock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorPreserveBlock.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorPreserveBlock.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bo36v4sn135fo 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorVulnerable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorVulnerable.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorVulnerable.gd.uid: -------------------------------------------------------------------------------- 1 | uid://buo880ah0bxa4 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorWeaken.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/InterceptorWeaken.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/InterceptorWeaken.gd.uid: -------------------------------------------------------------------------------- 1 | uid://citshbhdrdexk 2 | -------------------------------------------------------------------------------- /scripts/action_interceptors/status_effect_decay_interceptors/InterceptorBaseNegateStatusDecay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/action_interceptors/status_effect_decay_interceptors/InterceptorBaseNegateStatusDecay.gd -------------------------------------------------------------------------------- /scripts/action_interceptors/status_effect_decay_interceptors/InterceptorBaseNegateStatusDecay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cdpsvx28qcm36 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionAddEnergy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionAddEnergy.gd -------------------------------------------------------------------------------- /scripts/actions/ActionAddEnergy.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ena6otnml5mq 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionAddHealth.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionAddHealth.gd -------------------------------------------------------------------------------- /scripts/actions/ActionAddHealth.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6lavby333y7f 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionBlock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionBlock.gd -------------------------------------------------------------------------------- /scripts/actions/ActionBlock.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bud0p5tqr5veg 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionDirectDamage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionDirectDamage.gd -------------------------------------------------------------------------------- /scripts/actions/ActionDirectDamage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cppi1sebmth3k 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionEndTurn.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionEndTurn.gd -------------------------------------------------------------------------------- /scripts/actions/ActionEndTurn.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b37egrari06ok 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionHealPercent.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionHealPercent.gd -------------------------------------------------------------------------------- /scripts/actions/ActionHealPercent.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dcn5dpvxwbo52 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionResetBlock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionResetBlock.gd -------------------------------------------------------------------------------- /scripts/actions/ActionResetBlock.gd.uid: -------------------------------------------------------------------------------- 1 | uid://phm4uon7naky 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionReshuffle.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionReshuffle.gd -------------------------------------------------------------------------------- /scripts/actions/ActionReshuffle.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c2q0lbsba6ynq 2 | -------------------------------------------------------------------------------- /scripts/actions/ActionSummonEnemies.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/ActionSummonEnemies.gd -------------------------------------------------------------------------------- /scripts/actions/ActionSummonEnemies.gd.uid: -------------------------------------------------------------------------------- 1 | uid://45wjbeioqn0v 2 | -------------------------------------------------------------------------------- /scripts/actions/BaseAction.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/BaseAction.gd -------------------------------------------------------------------------------- /scripts/actions/BaseAction.gd.uid: -------------------------------------------------------------------------------- 1 | uid://63ma83if6jog 2 | -------------------------------------------------------------------------------- /scripts/actions/BaseAsyncAction.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/BaseAsyncAction.gd -------------------------------------------------------------------------------- /scripts/actions/BaseAsyncAction.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c0pc7yqfn6yb6 2 | -------------------------------------------------------------------------------- /scripts/actions/artifact_actions/ActionIncreaseArtifactCharge.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/artifact_actions/ActionIncreaseArtifactCharge.gd -------------------------------------------------------------------------------- /scripts/actions/artifact_actions/ActionIncreaseArtifactCharge.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfwr4whsyi4bs 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAddCardsToDeck.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionAddCardsToDeck.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAddCardsToDeck.gd.uid: -------------------------------------------------------------------------------- 1 | uid://tljsoc1ce2he 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAddCardsToDraw.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionAddCardsToDraw.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAddCardsToDraw.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c06ww71kesqtc 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAddCardsToHand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionAddCardsToHand.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAddCardsToHand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://toslft2xriau 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAttachCardsOntoEnemy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionAttachCardsOntoEnemy.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionAttachCardsOntoEnemy.gd.uid: -------------------------------------------------------------------------------- 1 | uid://qq5tl6tirtfi 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionBanishCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionBanishCards.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionBanishCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cb83qx0a05sy 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionChangeCardEnergies.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionChangeCardEnergies.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionChangeCardEnergies.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dxt8gxt4a0b6o 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionChangeCardProperties.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionChangeCardProperties.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionChangeCardProperties.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c17tohfbw4cao 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionDiscardCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionDiscardCards.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionDiscardCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dtqrfac6ohxfd 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionExhaustCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionExhaustCards.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionExhaustCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b4nbsf01sqw72 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionImproveCardValues.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionImproveCardValues.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionImproveCardValues.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cltnb4ik50u1b 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionMoveCardsToLimbo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionMoveCardsToLimbo.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionMoveCardsToLimbo.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cyygc0bosnvh2 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionPlayCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionPlayCards.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionPlayCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://s2a33ajc6m7l 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionRandomizeCardEnergies.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionRandomizeCardEnergies.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionRandomizeCardEnergies.gd.uid: -------------------------------------------------------------------------------- 1 | uid://r6y2pqbnnvsj 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionRemoveCardsFromDeck.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionRemoveCardsFromDeck.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionRemoveCardsFromDeck.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn0yt5cay6lqe 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionRetainCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionRetainCards.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionRetainCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://i188d010yawm 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionTransformCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionTransformCards.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionTransformCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cq6x7r168ltx8 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionUpgradeCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/ActionUpgradeCards.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/ActionUpgradeCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0d4feh3myyko 2 | -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/BaseCardsetAction.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/cardset_actions/BaseCardsetAction.gd -------------------------------------------------------------------------------- /scripts/actions/cardset_actions/BaseCardsetAction.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b670i2mtye13p 2 | -------------------------------------------------------------------------------- /scripts/actions/custom_ui_actions/ActionCustomUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/custom_ui_actions/ActionCustomUI.gd -------------------------------------------------------------------------------- /scripts/actions/custom_ui_actions/ActionCustomUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dfuxr6um2gxrw 2 | -------------------------------------------------------------------------------- /scripts/actions/debug_actions/ActionDebugLog.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/debug_actions/ActionDebugLog.gd -------------------------------------------------------------------------------- /scripts/actions/debug_actions/ActionDebugLog.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b37yo1348yje3 2 | -------------------------------------------------------------------------------- /scripts/actions/enemy_actions/ActionCycleEnemyIntent.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/enemy_actions/ActionCycleEnemyIntent.gd -------------------------------------------------------------------------------- /scripts/actions/enemy_actions/ActionCycleEnemyIntent.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jv1j2cufqq4i 2 | -------------------------------------------------------------------------------- /scripts/actions/generated_actions/ActionAttack.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/generated_actions/ActionAttack.gd -------------------------------------------------------------------------------- /scripts/actions/generated_actions/ActionAttack.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bh0sdarbnctj4 2 | -------------------------------------------------------------------------------- /scripts/actions/generated_actions/ActionDraw.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/generated_actions/ActionDraw.gd -------------------------------------------------------------------------------- /scripts/actions/generated_actions/ActionDraw.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cmuu1nbsva3ii 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionAttackGenerator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionAttackGenerator.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionAttackGenerator.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dv8f3lkeybkuk 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionCardPlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionCardPlay.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionCardPlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cmwoswmkspkoo 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionCardPlayEnd.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionCardPlayEnd.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionCardPlayEnd.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c0bdrwegrsu3x 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionDrawGenerator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionDrawGenerator.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionDrawGenerator.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfpx6mssty0j8 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionEmitCustomSignal.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionEmitCustomSignal.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionEmitCustomSignal.gd.uid: -------------------------------------------------------------------------------- 1 | uid://be2jc8co160wv 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionValidator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionValidator.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionValidator.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c27bjud22jvfx 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionVariableCardsetModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionVariableCardsetModifier.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionVariableCardsetModifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://lismtp2bv2fu 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionVariableCombatStatsModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionVariableCombatStatsModifier.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionVariableCombatStatsModifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jdtgahn6nofs 2 | -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionVariableCostModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/meta_actions/ActionVariableCostModifier.gd -------------------------------------------------------------------------------- /scripts/actions/meta_actions/ActionVariableCostModifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cny3w5gjj58l 2 | -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionBasePickCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/pick_card_actions/ActionBasePickCards.gd -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionBasePickCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://inrbljajqnal 2 | -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionCreateCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/pick_card_actions/ActionCreateCards.gd -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionCreateCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://buuoai45ad1oe 2 | -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionPickCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/pick_card_actions/ActionPickCards.gd -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionPickCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpu4qdn4a53mp 2 | -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionPickDuplicateCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/pick_card_actions/ActionPickDuplicateCards.gd -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionPickDuplicateCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c1yn61lk58o52 2 | -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionPickUpgradeCards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/pick_card_actions/ActionPickUpgradeCards.gd -------------------------------------------------------------------------------- /scripts/actions/pick_card_actions/ActionPickUpgradeCards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cmjkctf8kyba4 2 | -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionAddArtifact.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/player_actions/ActionAddArtifact.gd -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionAddArtifact.gd.uid: -------------------------------------------------------------------------------- 1 | uid://daghgoxhp08ry 2 | -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionAddConsumable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/player_actions/ActionAddConsumable.gd -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionAddConsumable.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c4fruooi2aqbe 2 | -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionAddMoney.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/player_actions/ActionAddMoney.gd -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionAddMoney.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ccgvvlth56jby 2 | -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionSwapBossArtifact.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/player_actions/ActionSwapBossArtifact.gd -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionSwapBossArtifact.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bsoo6h3k3hlv7 2 | -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionUpdateCardDrafts.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/player_actions/ActionUpdateCardDrafts.gd -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionUpdateCardDrafts.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d34q4ie0vu6c 2 | -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionUpdateRestActions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/player_actions/ActionUpdateRestActions.gd -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionUpdateRestActions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bamt1125nbcac 2 | -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionUseConsumable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/player_actions/ActionUseConsumable.gd -------------------------------------------------------------------------------- /scripts/actions/player_actions/ActionUseConsumable.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2fs0smylinyx 2 | -------------------------------------------------------------------------------- /scripts/actions/rewards/ActionClearRewards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/rewards/ActionClearRewards.gd -------------------------------------------------------------------------------- /scripts/actions/rewards/ActionClearRewards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://njnuq1f42xs4 2 | -------------------------------------------------------------------------------- /scripts/actions/rewards/ActionGrantRewards.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/rewards/ActionGrantRewards.gd -------------------------------------------------------------------------------- /scripts/actions/rewards/ActionGrantRewards.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dxxxo1jkmscip 2 | -------------------------------------------------------------------------------- /scripts/actions/shop_actions/ActionShopPopulateItems.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/shop_actions/ActionShopPopulateItems.gd -------------------------------------------------------------------------------- /scripts/actions/shop_actions/ActionShopPopulateItems.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dqg8mrrdlxuij 2 | -------------------------------------------------------------------------------- /scripts/actions/shop_actions/ActionShopPurchaseItems.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/shop_actions/ActionShopPurchaseItems.gd -------------------------------------------------------------------------------- /scripts/actions/shop_actions/ActionShopPurchaseItems.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bakfwlueicbep 2 | -------------------------------------------------------------------------------- /scripts/actions/status_actions/ActionApplyStatus.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/status_actions/ActionApplyStatus.gd -------------------------------------------------------------------------------- /scripts/actions/status_actions/ActionApplyStatus.gd.uid: -------------------------------------------------------------------------------- 1 | uid://db8plwo778ak 2 | -------------------------------------------------------------------------------- /scripts/actions/status_actions/ActionCorrosion.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/status_actions/ActionCorrosion.gd -------------------------------------------------------------------------------- /scripts/actions/status_actions/ActionCorrosion.gd.uid: -------------------------------------------------------------------------------- 1 | uid://kkc8a5eouuxg 2 | -------------------------------------------------------------------------------- /scripts/actions/status_actions/ActionDecayStatus.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/status_actions/ActionDecayStatus.gd -------------------------------------------------------------------------------- /scripts/actions/status_actions/ActionDecayStatus.gd.uid: -------------------------------------------------------------------------------- 1 | uid://xpwuyuhoh4jo 2 | -------------------------------------------------------------------------------- /scripts/actions/world_generation_actions/ActionGenerateAct.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/world_generation_actions/ActionGenerateAct.gd -------------------------------------------------------------------------------- /scripts/actions/world_generation_actions/ActionGenerateAct.gd.uid: -------------------------------------------------------------------------------- 1 | uid://byo2xbsgsm7ry 2 | -------------------------------------------------------------------------------- /scripts/actions/world_interaction_actions/ActionOpenChest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/world_interaction_actions/ActionOpenChest.gd -------------------------------------------------------------------------------- /scripts/actions/world_interaction_actions/ActionOpenChest.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cmmhs2i7na1b8 2 | -------------------------------------------------------------------------------- /scripts/actions/world_interaction_actions/ActionStartCombat.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/world_interaction_actions/ActionStartCombat.gd -------------------------------------------------------------------------------- /scripts/actions/world_interaction_actions/ActionStartCombat.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cyh46lc6kipco 2 | -------------------------------------------------------------------------------- /scripts/actions/world_interaction_actions/ActionVisitLocation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/actions/world_interaction_actions/ActionVisitLocation.gd -------------------------------------------------------------------------------- /scripts/actions/world_interaction_actions/ActionVisitLocation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ciotkqoq4n1tf 2 | -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactBlockOnAttacks.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/artifacts/ArtifactBlockOnAttacks.gd -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactBlockOnAttacks.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bh7tgkav65ppb 2 | -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactDrawOnKill.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/artifacts/ArtifactDrawOnKill.gd -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactDrawOnKill.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bss0e7mnjhoc7 2 | -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactEasyMode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/artifacts/ArtifactEasyMode.gd -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactEasyMode.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bx7ejf71badh3 2 | -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactRetainHand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/artifacts/ArtifactRetainHand.gd -------------------------------------------------------------------------------- /scripts/artifacts/ArtifactRetainHand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b1mqrlg162yj6 2 | -------------------------------------------------------------------------------- /scripts/artifacts/BaseArtifact.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/artifacts/BaseArtifact.gd -------------------------------------------------------------------------------- /scripts/artifacts/BaseArtifact.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bot8gd6ghg6cn 2 | -------------------------------------------------------------------------------- /scripts/card_listeners/BaseCardListener.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/card_listeners/BaseCardListener.gd -------------------------------------------------------------------------------- /scripts/card_listeners/BaseCardListener.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bopfhkeg1d2fi 2 | -------------------------------------------------------------------------------- /scripts/card_listeners/ListenerCardCostModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/card_listeners/ListenerCardCostModifier.gd -------------------------------------------------------------------------------- /scripts/card_listeners/ListenerCardCostModifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c6jlxfytnt14l 2 | -------------------------------------------------------------------------------- /scripts/card_listeners/ListenerCardValueModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/card_listeners/ListenerCardValueModifier.gd -------------------------------------------------------------------------------- /scripts/card_listeners/ListenerCardValueModifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ck81qewu8bmrd 2 | -------------------------------------------------------------------------------- /scripts/combatants/BaseCombatant.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/BaseCombatant.gd -------------------------------------------------------------------------------- /scripts/combatants/BaseCombatant.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c2ftr3dvpi75p 2 | -------------------------------------------------------------------------------- /scripts/combatants/Enemy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/Enemy.gd -------------------------------------------------------------------------------- /scripts/combatants/Enemy.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d4l5y1jvle1mq 2 | -------------------------------------------------------------------------------- /scripts/combatants/HealthLayer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/HealthLayer.gd -------------------------------------------------------------------------------- /scripts/combatants/HealthLayer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bc3pqbsn3caqt 2 | -------------------------------------------------------------------------------- /scripts/combatants/LayeredHealthBar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/LayeredHealthBar.gd -------------------------------------------------------------------------------- /scripts/combatants/LayeredHealthBar.gd.uid: -------------------------------------------------------------------------------- 1 | uid://lltsdli24v32 2 | -------------------------------------------------------------------------------- /scripts/combatants/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/Player.gd -------------------------------------------------------------------------------- /scripts/combatants/Player.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bu5jx208ipx8i 2 | -------------------------------------------------------------------------------- /scripts/combatants/StatusEffect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/StatusEffect.gd -------------------------------------------------------------------------------- /scripts/combatants/StatusEffect.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dyk3dehb3twof 2 | -------------------------------------------------------------------------------- /scripts/combatants/fades/ArtifactFade.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/fades/ArtifactFade.gd -------------------------------------------------------------------------------- /scripts/combatants/fades/ArtifactFade.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dr6qc5pdjo7yy 2 | -------------------------------------------------------------------------------- /scripts/combatants/fades/TextFade.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/combatants/fades/TextFade.gd -------------------------------------------------------------------------------- /scripts/combatants/fades/TextFade.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dd3ox284x54mg 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/BaseRunModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/BaseRunModifier.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/BaseRunModifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://du2fgujk7bfak 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustom1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/custom/RunModifierCustom1.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustom1.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3akx4n2i46q 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustom2.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/custom/RunModifierCustom2.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustom2.gd.uid: -------------------------------------------------------------------------------- 1 | uid://mfkbpb2fr7df 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustomDraftAllColors.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/custom/RunModifierCustomDraftAllColors.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustomDraftAllColors.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c0ql2deyp22vk 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustomEasyMode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/custom/RunModifierCustomEasyMode.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustomEasyMode.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbijc7ot32fs0 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustomEndlessMode.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/custom/RunModifierCustomEndlessMode.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/custom/RunModifierCustomEndlessMode.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c3kfvr76awx6f 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/difficulties/RunModifierDifficulty1.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty1.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bokqd7m0v4j1c 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty2.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/difficulties/RunModifierDifficulty2.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty2.gd.uid: -------------------------------------------------------------------------------- 1 | uid://caphpid8515ul 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty3.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/difficulties/RunModifierDifficulty3.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty3.gd.uid: -------------------------------------------------------------------------------- 1 | uid://crrwma3j1fh2a 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty4.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/difficulties/RunModifierDifficulty4.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty4.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4we622bcguty 2 | -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty5.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/run_modifiers/difficulties/RunModifierDifficulty5.gd -------------------------------------------------------------------------------- /scripts/run_modifiers/difficulties/RunModifierDifficulty5.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0q3ty44giqyc 2 | -------------------------------------------------------------------------------- /scripts/status_effects/BaseStatusEffect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/status_effects/BaseStatusEffect.gd -------------------------------------------------------------------------------- /scripts/status_effects/BaseStatusEffect.gd.uid: -------------------------------------------------------------------------------- 1 | uid://8b1a7wdcnn7a 2 | -------------------------------------------------------------------------------- /scripts/status_effects/StatusEffectAttachedCard.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/status_effects/StatusEffectAttachedCard.gd -------------------------------------------------------------------------------- /scripts/status_effects/StatusEffectAttachedCard.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bmodlcflnvqb 2 | -------------------------------------------------------------------------------- /scripts/status_effects/StatusEffectBomb.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/status_effects/StatusEffectBomb.gd -------------------------------------------------------------------------------- /scripts/status_effects/StatusEffectBomb.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jg0pdkm02y8h 2 | -------------------------------------------------------------------------------- /scripts/status_effects/StatusEffectDuplicateCardPlays.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/status_effects/StatusEffectDuplicateCardPlays.gd -------------------------------------------------------------------------------- /scripts/status_effects/StatusEffectDuplicateCardPlays.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b1qtgny6n2ye0 2 | -------------------------------------------------------------------------------- /scripts/ui/Artifact.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Artifact.gd -------------------------------------------------------------------------------- /scripts/ui/Artifact.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dswtk5i5bcmjj 2 | -------------------------------------------------------------------------------- /scripts/ui/ArtifactContainer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/ArtifactContainer.gd -------------------------------------------------------------------------------- /scripts/ui/ArtifactContainer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cedacrx3ip1sl 2 | -------------------------------------------------------------------------------- /scripts/ui/Card.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Card.gd -------------------------------------------------------------------------------- /scripts/ui/Card.gd.uid: -------------------------------------------------------------------------------- 1 | uid://k4n0whn5t0m 2 | -------------------------------------------------------------------------------- /scripts/ui/CardDraftSelectionOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/CardDraftSelectionOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/CardDraftSelectionOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bepy2gle06uwf 2 | -------------------------------------------------------------------------------- /scripts/ui/CardSelectionOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/CardSelectionOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/CardSelectionOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://brwptyvf1yacl 2 | -------------------------------------------------------------------------------- /scripts/ui/CharacterButtonContainer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/CharacterButtonContainer.gd -------------------------------------------------------------------------------- /scripts/ui/CharacterButtonContainer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://chcjmcum7dbn7 2 | -------------------------------------------------------------------------------- /scripts/ui/CharacterSelectionButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/CharacterSelectionButton.gd -------------------------------------------------------------------------------- /scripts/ui/CharacterSelectionButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b30k46q1v2d56 2 | -------------------------------------------------------------------------------- /scripts/ui/Chest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Chest.gd -------------------------------------------------------------------------------- /scripts/ui/Chest.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b8gg8exxeg26k 2 | -------------------------------------------------------------------------------- /scripts/ui/Combat.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Combat.gd -------------------------------------------------------------------------------- /scripts/ui/Combat.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dao05mln2rw4g 2 | -------------------------------------------------------------------------------- /scripts/ui/CombatEndTurn.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/CombatEndTurn.gd -------------------------------------------------------------------------------- /scripts/ui/CombatEndTurn.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c4nyn5lhm1g87 2 | -------------------------------------------------------------------------------- /scripts/ui/ConsumableButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/ConsumableButton.gd -------------------------------------------------------------------------------- /scripts/ui/ConsumableButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://lclxd5k1by2h 2 | -------------------------------------------------------------------------------- /scripts/ui/Consumables.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Consumables.gd -------------------------------------------------------------------------------- /scripts/ui/Consumables.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5htysy0x53ab 2 | -------------------------------------------------------------------------------- /scripts/ui/CustomRunModifierButtonContainer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/CustomRunModifierButtonContainer.gd -------------------------------------------------------------------------------- /scripts/ui/CustomRunModifierButtonContainer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://djp4k7pq27a7e 2 | -------------------------------------------------------------------------------- /scripts/ui/CustomRunModifierCheckbox.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/CustomRunModifierCheckbox.gd -------------------------------------------------------------------------------- /scripts/ui/CustomRunModifierCheckbox.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dyrtu2pm8iko3 2 | -------------------------------------------------------------------------------- /scripts/ui/DialogueOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/DialogueOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/DialogueOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ci6oby4hmnfg6 2 | -------------------------------------------------------------------------------- /scripts/ui/EnemyContainer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/EnemyContainer.gd -------------------------------------------------------------------------------- /scripts/ui/EnemyContainer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://p4ouiuival0e 2 | -------------------------------------------------------------------------------- /scripts/ui/Hand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Hand.gd -------------------------------------------------------------------------------- /scripts/ui/Hand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dlwowe1wugkh4 2 | -------------------------------------------------------------------------------- /scripts/ui/Map.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Map.gd -------------------------------------------------------------------------------- /scripts/ui/Map.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dnvcyccyhfcmu 2 | -------------------------------------------------------------------------------- /scripts/ui/MapLocation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/MapLocation.gd -------------------------------------------------------------------------------- /scripts/ui/MapLocation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://t65xqvojt1pl 2 | -------------------------------------------------------------------------------- /scripts/ui/PauseButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/PauseButton.gd -------------------------------------------------------------------------------- /scripts/ui/PauseButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c2i6b2ert5jls 2 | -------------------------------------------------------------------------------- /scripts/ui/PauseOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/PauseOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/PauseOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://6xsavir53fvp 2 | -------------------------------------------------------------------------------- /scripts/ui/RestActionButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/RestActionButton.gd -------------------------------------------------------------------------------- /scripts/ui/RestActionButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dv7mjgtd73m7l 2 | -------------------------------------------------------------------------------- /scripts/ui/RestOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/RestOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/RestOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b2hl2ln4jm0mj 2 | -------------------------------------------------------------------------------- /scripts/ui/RewardOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/RewardOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/RewardOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ejl2op54o7aw 2 | -------------------------------------------------------------------------------- /scripts/ui/RunStartOptions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/RunStartOptions.gd -------------------------------------------------------------------------------- /scripts/ui/RunStartOptions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://s7lqf6p66yti 2 | -------------------------------------------------------------------------------- /scripts/ui/RunSummaryOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/RunSummaryOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/RunSummaryOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://pk2e8kasw6rr 2 | -------------------------------------------------------------------------------- /scripts/ui/Shop.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/Shop.gd -------------------------------------------------------------------------------- /scripts/ui/Shop.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cdp0fx5l64nnt 2 | -------------------------------------------------------------------------------- /scripts/ui/ShopOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/ShopOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/ShopOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cw6tfwitjoo0i 2 | -------------------------------------------------------------------------------- /scripts/ui/TurnOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/TurnOverlay.gd -------------------------------------------------------------------------------- /scripts/ui/TurnOverlay.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cu62o32eaklx7 2 | -------------------------------------------------------------------------------- /scripts/ui/custom/BaseCustomUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/custom/BaseCustomUI.gd -------------------------------------------------------------------------------- /scripts/ui/custom/BaseCustomUI.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ys5bnu5uxsww 2 | -------------------------------------------------------------------------------- /scripts/ui/custom/CustomUISeeTopOfDrawPile.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/custom/CustomUISeeTopOfDrawPile.gd -------------------------------------------------------------------------------- /scripts/ui/custom/CustomUISeeTopOfDrawPile.gd.uid: -------------------------------------------------------------------------------- 1 | uid://86yopnw4bkc2 2 | -------------------------------------------------------------------------------- /scripts/ui/general/DialogueOption.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/general/DialogueOption.gd -------------------------------------------------------------------------------- /scripts/ui/general/DialogueOption.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4eigvngvl3f6 2 | -------------------------------------------------------------------------------- /scripts/ui/general/KeywordContainer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/general/KeywordContainer.gd -------------------------------------------------------------------------------- /scripts/ui/general/KeywordContainer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2fxhtmdfmtdf 2 | -------------------------------------------------------------------------------- /scripts/ui/general/KeywordTooltip.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/general/KeywordTooltip.gd -------------------------------------------------------------------------------- /scripts/ui/general/KeywordTooltip.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cks4rsneoyf8v 2 | -------------------------------------------------------------------------------- /scripts/ui/general/Tooltip.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/general/Tooltip.gd -------------------------------------------------------------------------------- /scripts/ui/general/Tooltip.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dqpfi1s7dxwe 2 | -------------------------------------------------------------------------------- /scripts/ui/menus/CodexMenu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/menus/CodexMenu.gd -------------------------------------------------------------------------------- /scripts/ui/menus/CodexMenu.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dgls5w4w7ym84 2 | -------------------------------------------------------------------------------- /scripts/ui/menus/MainMenu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/menus/MainMenu.gd -------------------------------------------------------------------------------- /scripts/ui/menus/MainMenu.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cg1kj2nrg24jw 2 | -------------------------------------------------------------------------------- /scripts/ui/menus/NewRunMenu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/menus/NewRunMenu.gd -------------------------------------------------------------------------------- /scripts/ui/menus/NewRunMenu.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c4twsg7v4ky8u 2 | -------------------------------------------------------------------------------- /scripts/ui/menus/RunScreen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/menus/RunScreen.gd -------------------------------------------------------------------------------- /scripts/ui/menus/RunScreen.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dm6o2678kafwr 2 | -------------------------------------------------------------------------------- /scripts/ui/menus/TitleScreen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/menus/TitleScreen.gd -------------------------------------------------------------------------------- /scripts/ui/menus/TitleScreen.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dw0xyfu580mkb 2 | -------------------------------------------------------------------------------- /scripts/ui/rewards/ArtifactRewardButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/rewards/ArtifactRewardButton.gd -------------------------------------------------------------------------------- /scripts/ui/rewards/ArtifactRewardButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn357mo7x75qr 2 | -------------------------------------------------------------------------------- /scripts/ui/rewards/BaseRewardButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/rewards/BaseRewardButton.gd -------------------------------------------------------------------------------- /scripts/ui/rewards/BaseRewardButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cdbs7aby3q3x8 2 | -------------------------------------------------------------------------------- /scripts/ui/rewards/CardRewardButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/rewards/CardRewardButton.gd -------------------------------------------------------------------------------- /scripts/ui/rewards/CardRewardButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bpn0n8sinh417 2 | -------------------------------------------------------------------------------- /scripts/ui/rewards/MoneyRewardButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/rewards/MoneyRewardButton.gd -------------------------------------------------------------------------------- /scripts/ui/rewards/MoneyRewardButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dj4i6ft1148qa 2 | -------------------------------------------------------------------------------- /scripts/ui/shop/ArtifactShopButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/shop/ArtifactShopButton.gd -------------------------------------------------------------------------------- /scripts/ui/shop/ArtifactShopButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dastyj0nm12fr 2 | -------------------------------------------------------------------------------- /scripts/ui/shop/BaseShopButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/shop/BaseShopButton.gd -------------------------------------------------------------------------------- /scripts/ui/shop/BaseShopButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://wfe4p5kajrby 2 | -------------------------------------------------------------------------------- /scripts/ui/shop/CardShopButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/shop/CardShopButton.gd -------------------------------------------------------------------------------- /scripts/ui/shop/CardShopButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c0pu5ciowd6mx 2 | -------------------------------------------------------------------------------- /scripts/ui/shop/ConsumableShopButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/ui/shop/ConsumableShopButton.gd -------------------------------------------------------------------------------- /scripts/ui/shop/ConsumableShopButton.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c3fsbs4llckwx 2 | -------------------------------------------------------------------------------- /scripts/validators/BaseValidator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/BaseValidator.gd -------------------------------------------------------------------------------- /scripts/validators/BaseValidator.gd.uid: -------------------------------------------------------------------------------- 1 | uid://jmur3d36tnm4 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorCombatStats.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorCombatStats.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorCombatStats.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ckpinc8jg53c0 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorEnemyAttacking.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorEnemyAttacking.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorEnemyAttacking.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5wsqy5mselaq 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorEnemyType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorEnemyType.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorEnemyType.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dnc1jdisydnvr 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorHasRelic.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorHasRelic.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorHasRelic.gd.uid: -------------------------------------------------------------------------------- 1 | uid://52kar4deao5e 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorInCombat.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorInCombat.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorInCombat.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bu5wur2messma 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorLocationType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorLocationType.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorLocationType.gd.uid: -------------------------------------------------------------------------------- 1 | uid://drnbtl3dh6wqc 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorMoney.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorMoney.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorMoney.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b3cieauiu8dtb 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorPlayerHealth.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorPlayerHealth.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorPlayerHealth.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bco8tqvhpv5ig 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorPlayerTurn.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorPlayerTurn.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorPlayerTurn.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cv4v3vk61gm7k 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorRNG.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorRNG.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorRNG.gd.uid: -------------------------------------------------------------------------------- 1 | uid://rsuo43kevam8 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorRunModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorRunModifier.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorRunModifier.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfgyhq2vv42ft 2 | -------------------------------------------------------------------------------- /scripts/validators/ValidatorTurnCount.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/ValidatorTurnCount.gd -------------------------------------------------------------------------------- /scripts/validators/ValidatorTurnCount.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cv13yj12bt83c 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardColor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardColor.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardColor.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dl001y8660702 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardDraftable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardDraftable.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardDraftable.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cfbo0tuj3r2vq 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardEnergyCost.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardEnergyCost.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardEnergyCost.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d3dja13p8l8dc 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardID.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardID.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardID.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dh3aia2b54urc 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardLocation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardLocation.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardLocation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bjq4b8rqb2hsj 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardProperties.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardProperties.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardProperties.gd.uid: -------------------------------------------------------------------------------- 1 | uid://7om46mijrfi2 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardRarity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardRarity.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardRarity.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c41f6gb7curek 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardRemovableFromDeck.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardRemovableFromDeck.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardRemovableFromDeck.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpelxo3banai6 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardTag.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardTag.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardTag.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bycgymdun1kxq 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardTransformableFromDeck.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardTransformableFromDeck.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardTransformableFromDeck.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bxaoiqcwobxij 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardType.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardType.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ppaayt2nqv7q 2 | -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardUpgradeable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card/ValidatorCardUpgradeable.gd -------------------------------------------------------------------------------- /scripts/validators/card/ValidatorCardUpgradeable.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cb2opscxkxq6a 2 | -------------------------------------------------------------------------------- /scripts/validators/card_plays/ValidatorCardPlayEnemyAttacking.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card_plays/ValidatorCardPlayEnemyAttacking.gd -------------------------------------------------------------------------------- /scripts/validators/card_plays/ValidatorCardPlayEnemyAttacking.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dbrrkj3s5n443 2 | -------------------------------------------------------------------------------- /scripts/validators/card_plays/ValidatorCardPlayEnergyInput.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card_plays/ValidatorCardPlayEnergyInput.gd -------------------------------------------------------------------------------- /scripts/validators/card_plays/ValidatorCardPlayEnergyInput.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dv0t6lqqss2xt 2 | -------------------------------------------------------------------------------- /scripts/validators/card_plays/ValidatorCardPlayIsDuplicated.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/card_plays/ValidatorCardPlayIsDuplicated.gd -------------------------------------------------------------------------------- /scripts/validators/card_plays/ValidatorCardPlayIsDuplicated.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c7a4dtcibk2pj 2 | -------------------------------------------------------------------------------- /scripts/validators/deck/ValidatorDeckHasRemovableCard.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/deck/ValidatorDeckHasRemovableCard.gd -------------------------------------------------------------------------------- /scripts/validators/deck/ValidatorDeckHasRemovableCard.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c52kq31b0n8kq 2 | -------------------------------------------------------------------------------- /scripts/validators/deck/ValidatorDeckHasUpgradeableCard.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/deck/ValidatorDeckHasUpgradeableCard.gd -------------------------------------------------------------------------------- /scripts/validators/deck/ValidatorDeckHasUpgradeableCard.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bahi4xfx7kgj7 2 | -------------------------------------------------------------------------------- /scripts/validators/deck/ValidatorPileSize.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/deck/ValidatorPileSize.gd -------------------------------------------------------------------------------- /scripts/validators/deck/ValidatorPileSize.gd.uid: -------------------------------------------------------------------------------- 1 | uid://r28c01gwnlg0 2 | -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardIDAdjacentInHand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/hand/ValidatorCardIDAdjacentInHand.gd -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardIDAdjacentInHand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dblccb31kvpwn 2 | -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardPositionInHand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/hand/ValidatorCardPositionInHand.gd -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardPositionInHand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cetqep6qswglp 2 | -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardTypeAdjacentInHand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/hand/ValidatorCardTypeAdjacentInHand.gd -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardTypeAdjacentInHand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://db5v2c5t31dpv 2 | -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardTypeInHand.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/scripts/validators/hand/ValidatorCardTypeInHand.gd -------------------------------------------------------------------------------- /scripts/validators/hand/ValidatorCardTypeInHand.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ufajrl574gi3 2 | -------------------------------------------------------------------------------- /sprites/health_bar_frame.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/sprites/health_bar_frame.PNG -------------------------------------------------------------------------------- /sprites/health_bar_frame.PNG.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/sprites/health_bar_frame.PNG.import -------------------------------------------------------------------------------- /sprites/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/sprites/icon.png -------------------------------------------------------------------------------- /sprites/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/sprites/icon.png.import -------------------------------------------------------------------------------- /themes/keyword_tooltip_theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/themes/keyword_tooltip_theme.tres -------------------------------------------------------------------------------- /themes/title_screen_theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesirePathGames/Slay-The-Robot/HEAD/themes/title_screen_theme.tres --------------------------------------------------------------------------------