mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-12 16:51:59 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
70
data/Scarlet & Violet/Scarlet & Violet/070.ts
Normal file
70
data/Scarlet & Violet/Scarlet & Violet/070.ts
Normal file
@@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Scarlet & Violet"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rotom",
|
||||
fr: "Motisma",
|
||||
es: "Rotom",
|
||||
it: "Rotom",
|
||||
pt: "Rotom",
|
||||
de: "Rotom"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Junk Hunt",
|
||||
fr: "Marché aux Puces",
|
||||
es: "Buscachatarra",
|
||||
it: "Spulciascarti",
|
||||
pt: "Caçada no Lixo",
|
||||
de: "Müllsammler"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put an Item card from your discard pile into your hand.",
|
||||
fr: "Ajoutez une carte Objet de votre pile de défausse à votre main.",
|
||||
es: "Pon 1 carta de Objeto de tu pila de descartes en tu mano.",
|
||||
it: "Prendi una carta Strumento dalla tua pila degli scarti e aggiungila alle carte che hai in mano.",
|
||||
pt: "Coloque uma carta de Item da sua pilha de descarte na sua mão.",
|
||||
de: "Nimm 1 Itemkarte aus deinem Ablagestapel auf deine Hand."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Thunder Shock",
|
||||
fr: "Éclair",
|
||||
es: "Impactrueno",
|
||||
it: "Tuonoshock",
|
||||
pt: "Trovoada de Choques",
|
||||
de: "Donnerschock"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado.",
|
||||
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user