mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
72
data/Scarlet & Violet/Paradox Rift/108.ts
Normal file
72
data/Scarlet & Violet/Paradox Rift/108.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sandy Shocks ex",
|
||||
fr: "Pelage-Sablé-ex",
|
||||
es: "Pelarena ex",
|
||||
it: "Peldisabbia-ex",
|
||||
pt: "Choque Areia ex",
|
||||
de: "Sandfell-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Magnetic Absorption",
|
||||
fr: "Absorption Magnétique",
|
||||
es: "Absorción Magnética",
|
||||
it: "Assorbimento Magnetico",
|
||||
pt: "Absorção Magnética",
|
||||
de: "Magnetische Absorption"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, if your opponent has 4 or fewer Prize cards remaining, you may attach a Basic Fighting Energy card from your discard pile to this Pokémon.",
|
||||
fr: "Une fois pendant votre tour, s'il reste 4 cartes Récompense ou moins à votre adversaire, vous pouvez attacher une carte Énergie Fighting de base de votre pile de défausse à ce Pokémon.",
|
||||
es: "Una vez durante tu turno, si a tu rival le quedan 4 cartas de Premio o menos, puedes unir 1 carta de Energía Fighting Básica de tu pila de descartes a este Pokémon.",
|
||||
it: "Una sola volta durante il tuo turno, se il tuo avversario ha quattro o meno carte Premio rimanenti, puoi assegnare a questo Pokémon una carta Energia base Fighting dalla tua pila degli scarti.",
|
||||
pt: "Uma vez durante o seu turno, se o seu oponente tiver 4 ou menos cartas de Prêmio restantes, você poderá ligar uma carta de Energia Fighting Básica da sua pilha de descarte a este Pokémon.",
|
||||
de: "Einmal während deines Zuges, wenn dein Gegner 4 oder weniger verbleibende Preiskarten hat, kannst du 1 Basis-Fighting-Energiekarte aus deinem Ablagestapel an dieses Pokémon anlegen."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Earthen Spike",
|
||||
fr: "Piquant Terrestre",
|
||||
es: "Púas Terrestres",
|
||||
it: "Terrapunta",
|
||||
pt: "Espinho Terrestre",
|
||||
de: "Irdendorn"
|
||||
},
|
||||
|
||||
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: 200
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user