1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +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,59 @@
import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Scyther",
fr: "Insécateur",
es: "Scyther",
it: "Scyther",
pt: "Scyther"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Cut Up",
fr: "Découpage",
es: "Trocear",
it: "Tagliuzzamento",
pt: "Dilacerar"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Slashing Strike",
fr: "Coup Déchirant",
es: "Golpe Cuchillazo",
it: "Lacerattacco",
pt: "Ataque Cortante"
},
effect: {
en: "During your next turn, this Pokémon can't use Slashing Strike.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup Déchirant.",
es: "Durante tu próximo turno, este Pokémon no puede usar Golpe Cuchillazo.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Lacerattacco.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Ataque Cortante."
},
damage: 60
}],
retreat: 1,
regulationMark: "H"
}
export default card