1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01:59 +00:00

feat: Add Twilight Masquerade (#491)

This commit is contained in:
2024-05-24 08:48:44 +02:00
committed by GitHub
parent d48971c95e
commit 8a4a93af8f
227 changed files with 13148 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
set: Set,
name: {
en: "Finizen",
fr: "Dofin",
es: "Finizen",
it: "Finizen",
pt: "Finizen",
de: "Normifin"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Aqua Slash",
fr: "Aqua Slash",
es: "Cuchillada Acuática",
it: "Idrosquarcio",
pt: "Aqua Corte",
de: "Aquaschlag"
},
effect: {
en: "During your next turn, this Pokémon can't attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 30
}],
retreat: 1,
regulationMark: "H"
}
export default card