mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
105 lines
1.3 KiB
TypeScript
105 lines
1.3 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
import set from '../../../sets/swsh/swsh2'
|
||
|
||
|
||
const card: Card = {
|
||
// Card Global Informations
|
||
id: "swsh2-145",
|
||
|
||
localId: 145,
|
||
|
||
name: {
|
||
en: "Unfezant",
|
||
},
|
||
|
||
tags: [
|
||
],
|
||
|
||
illustrator: "Naoyo Kimura",
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set,
|
||
|
||
|
||
// Card Pokémon Informations
|
||
evolveFrom: {
|
||
en: "Tranquill",
|
||
},
|
||
|
||
|
||
|
||
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
name: {
|
||
en: "Daunt",
|
||
},
|
||
|
||
text: {
|
||
en: "During your opponent’s next turn, the Defending Pokémon’s attacks do 50 less damage (before applying Weakness and Resistance).",
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
name: {
|
||
en: "Air Slash",
|
||
},
|
||
|
||
text: {
|
||
en: "Discard an Energy from this Pokémon.",
|
||
},
|
||
|
||
damage: 150,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: Type.LIGHTNING,
|
||
|
||
value: "×2",
|
||
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: Type.FIGHTING,
|
||
|
||
value: "-30",
|
||
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
// Card Trainer/Energy informations
|
||
|
||
}
|
||
|
||
export default card |