More test

This commit is contained in:
FrazeRIP
2025-11-04 01:00:38 -06:00
parent f64f25edcf
commit c5c3e2c5d8
8 changed files with 28 additions and 12 deletions

Binary file not shown.

View File

@@ -50,6 +50,7 @@ MonoBehaviour:
- CardData_Basic_Dazed - CardData_Basic_Dazed
- CardData_Basic_Faint - CardData_Basic_Faint
- CardData_Basic_Oblivion - CardData_Basic_Oblivion
- CardData_Basic_Torture
- CardData_Basic_LessRestoration - CardData_Basic_LessRestoration
- CardData_Basic_BattlefieldExperience - CardData_Basic_BattlefieldExperience
- CardData_Basic_BodyAsShield - CardData_Basic_BodyAsShield
@@ -78,6 +79,8 @@ MonoBehaviour:
- CardData_Basic_Scorch - CardData_Basic_Scorch
- CardData_Basic_WitchcraftRay - CardData_Basic_WitchcraftRay
characterDataIDList: characterDataIDList:
- CharacterData_Basic_Assassin
- CharacterData_Basic_Cleric
- CharacterData_Basic_Knight - CharacterData_Basic_Knight
- CharacterData_Basic_Mage - CharacterData_Basic_Mage
- CharacterData_Basic_MarshalOfTheUnderworld - CharacterData_Basic_MarshalOfTheUnderworld
@@ -95,3 +98,4 @@ MonoBehaviour:
- {fileID: 4900000, guid: 5d66745b8665526429012762a60469bd, type: 3} - {fileID: 4900000, guid: 5d66745b8665526429012762a60469bd, type: 3}
- {fileID: 4900000, guid: b8e11e42fa0f82c41a2cb84cd79ccb79, type: 3} - {fileID: 4900000, guid: b8e11e42fa0f82c41a2cb84cd79ccb79, type: 3}
- {fileID: 4900000, guid: 240d7d7c1050c1c498575d637265ab32, type: 3} - {fileID: 4900000, guid: 240d7d7c1050c1c498575d637265ab32, type: 3}
- {fileID: 4900000, guid: 189619dba501d344ea1d0f59202d9e6d, type: 3}

View File

@@ -38,6 +38,10 @@ MonoBehaviour:
Value: 0 Value: 0
index: 2 index: 2
isKeyDuplicated: 0 isKeyDuplicated: 0
- Key: DrawCardAmount
Value: 1
index: 3
isKeyDuplicated: 0
dividerPosProp: 0.5 dividerPosProp: 0.5
originalAttributes: originalAttributes:
dictionaryList: [] dictionaryList: []

View File

@@ -10,15 +10,10 @@ namespace Continentis.Mods.Basic.Cards
{ {
protected override CommandBase PlayEffect(List<CharacterBase> targetList) protected override CommandBase PlayEffect(List<CharacterBase> targetList)
{ {
CommandGroup mainGroup = TargetListCommandGroup(targetList, CommandGroup mainGroup = new CommandGroup(ExecutionMode.Sequential, new Cmd_PlayAnimation(user.characterView, "Skill"));
new Cmd_PlayAnimation(user.characterView, "Skill"), mainGroup.AddCommand(new Cmd_DrawCards(user.deckSubmodule, 1));
new Cmd_ParamFunction<CharacterBase>(0.1f, target => //Todo: All enemy apply debuff
{ return mainGroup;
user.deckSubmodule.DrawCards(1);
//Todo: Apply debuff
}));
return base.PlayEffect(targetList);
} }
} }
} }

View File

@@ -201,6 +201,8 @@ MonoBehaviour:
derivativeCardDataRefs: [] derivativeCardDataRefs: []
derivativeCharacterDataRefs: [] derivativeCharacterDataRefs: []
initialDeckRef: initialDeckRef:
- CardData_Basic_TortureTest - CardData_Basic_Torture
- CardData_Basic_Torture
- CardData_Basic_Torture
hudDataRefs: hudDataRefs:
- HUDData_Basic_Default - HUDData_Basic_Default

View File

@@ -0,0 +1,3 @@
Key,English,Simplified Chinese,Traditional Chinese,Japanese,Korean,Vietnamese,Thai
Card_Basic_Torture_DisplayName,Torture,<EFBFBD>Ü<EFBFBD>,,,,,
Card_Basic_Torture_FunctionText,Test,??,,,,,
1 Key English Simplified Chinese Traditional Chinese Japanese Korean Vietnamese Thai
2 Card_Basic_Torture_DisplayName Torture �ܖ�
3 Card_Basic_Torture_FunctionText Test ??

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 189619dba501d344ea1d0f59202d9e6d
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -37,6 +37,7 @@ namespace SLSFramework.UModAssistance
if (listProperty.isExpanded) if (listProperty.isExpanded)
{ {
EditorGUI.indentLevel++; EditorGUI.indentLevel++;
EditorGUI.indentLevel++;
for (int i = 0; i < listProperty.arraySize; i++) for (int i = 0; i < listProperty.arraySize; i++)
{ {