Try add character

Try add character, has error
This commit is contained in:
FrazeRIP
2025-11-04 00:11:29 -06:00
parent abc540809f
commit f64f25edcf
128 changed files with 2563 additions and 1018 deletions

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 43455d45ee8719041bbc6663ee7575e9
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,58 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 9a4129cdd7011ca46b83d8c17d9f3623, type: 3}
m_Name: CardData_Basic_Torture
m_EditorClassIdentifier: Assembly-CSharp::Continentis.MainGame.Card.CardData
modName: Basic
className: Torture
displayName: Card_Basic_Torture_DisplayName
cardRarity: 20
cardType: 10
keywords:
- TargetSelf
cardSprite: {fileID: 21300000, guid: 38466aa09b7b3dc468a47c6ca7251524, type: 3}
cardLayoutTags: []
functionText: Card_Basic_Torture_FunctionText
cardDescription:
baseWeight: 1
variableAttributes:
dictionaryList:
- Key: TargetCount
Value: 0
index: 0
isKeyDuplicated: 0
- Key: StaminaCost
Value: 0
index: 1
isKeyDuplicated: 0
- Key: ManaCost
Value: 0
index: 2
isKeyDuplicated: 0
dividerPosProp: 0.5
originalAttributes:
dictionaryList: []
dividerPosProp: 0.5
runtimeCurrentAttributes:
dictionaryList: []
dividerPosProp: 0.5
upgradeNode:
sourceCard: {fileID: 0}
isTerminalNode: 0
isInfiniteUpgrade: 0
maxUpgradeLevel: 0
upgradeCards: []
customDescriptions: []
prefabRefs: []
derivativeCardDataRefs:
- CardData_Basic_Strike
derivativeCharacterDataRefs: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e4a74f213c8fe584b9d74dd14ac3dfdb
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ac427836dfa8db64a8a4344dc0b8c3a8
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,24 @@
using Continentis.MainGame.Card;
using Continentis.MainGame.Character;
using Continentis.MainGame.Commands;
using SLSFramework.General;
using System.Collections.Generic;
namespace Continentis.Mods.Basic.Cards
{
public class Torture : CardLogicBase
{
protected override CommandBase PlayEffect(List<CharacterBase> targetList)
{
CommandGroup mainGroup = TargetListCommandGroup(targetList,
new Cmd_PlayAnimation(user.characterView, "Skill"),
new Cmd_ParamFunction<CharacterBase>(0.1f, target =>
{
user.deckSubmodule.DrawCards(1);
//Todo: Apply debuff
}));
return base.PlayEffect(targetList);
}
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 6fe3c768a2ec2fc4b8d807f4d3c2e3c5

View File

@@ -1,10 +1,9 @@
using System.Collections.Generic;
using Continentis.MainGame;
using Continentis.MainGame.Card;
using Continentis.MainGame.Character;
using Continentis.MainGame.Commands;
using SLSFramework.General;
using UnityEngine;
using System.Collections.Generic;
namespace Continentis.Mods.Basic.Cards
{