1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Paldean Fates and Temporal Forces (#478)

This commit is contained in:
2024-03-25 00:30:17 +01:00
committed by GitHub
parent 0c29886812
commit 2d27a129a1
472 changed files with 25187 additions and 7 deletions

View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Noctowl",
fr: "Noarfang",
es: "Noctowl",
it: "Noctowl",
pt: "Noctowl"
},
rarity: "Common",
category: "Pokemon",
hp: 110,
types: ["Colorless"],
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Talon Hunt",
fr: "Serres Chasseuses",
es: "Garra Cazadora",
it: "Artiglio Cacciatore",
pt: "Grifas de Caça"
},
effect: {
en: "You may search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.",
fr: "Vous pouvez chercher dans votre deck jusqu'à 2 cartes, puis les ajouter à votre main. Mélangez ensuite votre deck.",
es: "Puedes buscar en tu baraja hasta 2 cartas y ponerlas en tu mano. Después, baraja las cartas de tu baraja.",
it: "Puoi cercare nel tuo mazzo fino a due carte e aggiungerle a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Você pode procurar por até 2 cartas no seu baralho e colocá-las na sua mão. Em seguida, embaralhe o seu baralho."
},
damage: 70
}],
retreat: 1,
regulationMark: "H"
}
export default card