卡牌更新

This commit is contained in:
SoulliesOfficial
2026-04-08 04:48:35 -04:00
parent c3b1561375
commit dd2657573a
242 changed files with 1950 additions and 926 deletions

View File

@@ -29,7 +29,7 @@ namespace Continentis.Mods.Basic.Cards
public override void ApplyAttributeChangesByCard()
{
LogicComponent<CardLogicComponent_Attack>().SetDamage_Slash();
LogicComponent<CardLogicComponent_Attack>().SetDamage_Physics();
}
}
}

View File

@@ -27,7 +27,7 @@ namespace Continentis.Mods.Basic.Cards
public override void ApplyAttributeChangesByCard()
{
LogicComponent<CardLogicComponent_Attack>().SetDamage_Strike();
LogicComponent<CardLogicComponent_Attack>().SetDamage_Physics();
}
}
}

View File

@@ -12,7 +12,7 @@ namespace Continentis.Mods.Basic.Cards
public override CommandGroup PlayEffect(List<CharacterBase> targetList)
{
CommandGroup applyProwess = Cmd.Sequential(
Cmd.Do(() => CreateCharacterBuff<Prowess>(2).Apply(user, user, this))
Cmd.Do(() => CreateCharacterBuff<Strength>(2).Apply(user, user, this))
);
CommandGroup applyWeak = ForEachTarget(targetList, target =>

View File

@@ -37,7 +37,7 @@ namespace Continentis.Mods.Basic.Cards
public override void ApplyAttributeChangesByCard()
{
LogicComponent<CardLogicComponent_Attack>().SetDamage_Sorcery();
LogicComponent<CardLogicComponent_Attack>().SetDamage_Magic();
}
}
}