mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +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/151/205.ts
Normal file
70
data/Scarlet & Violet/151/205.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Mew-ex",
|
||||
en: "Mew ex",
|
||||
es: "Mew ex",
|
||||
it: "Mew-ex",
|
||||
pt: "Mew ex",
|
||||
de: "Mew-ex"
|
||||
},
|
||||
|
||||
rarity: "Hyper rare",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
fr: "Nouveau Départ",
|
||||
en: "Restart",
|
||||
es: "Reinicio",
|
||||
it: "Riavvio",
|
||||
pt: "Recomeçar",
|
||||
de: "Neuanfang"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Une fois pendant votre tour, vous pouvez piocher des cartes jusqu'à en avoir 3 en main.",
|
||||
en: "Once during your turn, you may draw cards until you have 3 cards in your hand.",
|
||||
es: "Una vez durante tu turno, puedes robar cartas hasta que tengas 3 cartas en tu mano.",
|
||||
it: "Una sola volta durante il tuo turno, puoi pescare fino ad avere tre carte in mano.",
|
||||
pt: "Uma vez durante o seu turno, você poderá comprar cartas até ter 3 cartas na sua mão.",
|
||||
de: "Einmal während deines Zuges kannst du so lange Karten ziehen, bis du 3 Karten auf deiner Hand hast."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Piratage de Génome",
|
||||
en: "Genome Hacking",
|
||||
es: "Hackeo Genoma",
|
||||
it: "Hacking del Genoma",
|
||||
pt: "Hackear Genoma",
|
||||
de: "Genom-Hacking"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack.",
|
||||
es: "Elige uno de los ataques del Pokémon Activo de tu rival y úsalo para este ataque.",
|
||||
it: "Scegli un attacco del Pokémon attivo del tuo avversario e usalo al posto di questo attacco.",
|
||||
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente e use-o como este ataque.",
|
||||
de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners und setze sie als diese Attacke ein."
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user