-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Defeatist.cs
29 lines (26 loc) · 1.1 KB
/
Defeatist.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Onyx.Data.Abilities
{
/// <summary>
/// Halves the Pokémon's Attack and Sp. Atk stats when its HP becomes half or less.
/// </summary>
/// <remarks>
/// Defeatist halves the user's Attack and Special Attack stats when their HP is equal to or less than half of its maximum.
/// nupara
/// Defeatist has no effect outside of battle.
/// </remarks>
[Complete, NeedsImplementation]
public sealed class Defeatist : Ability
{
public override string Name => "Defeatist";
public override string Description => "Halves the Pokémon's Attack and Sp. Atk stats when its HP becomes half or less.";
public override string TechnicalInformation => this
.Sentence("Defeatist halves the user's Attack and Special Attack stats when their HP is equal to or less than half of its maximum.")
.NewParagraph()
.Sentence("Defeatist has no effect outside of battle.");
}
}