1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

52 lines
889 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Farigiraf ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Darkness"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
id: "Zirah Ekor"
},
effect: {
id: "Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon {ex} yang merupakan Pokémon Basic lawan."
}
}],
attacks: [{
name: {
id: "Dirty Beam"
},
effect: {
id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 160,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card