mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +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:
50
data/Scarlet & Violet/Paldea Evolved/118.ts
Normal file
50
data/Scarlet & Violet/Paldea Evolved/118.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Quartermac",
|
||||
en: "Passimian",
|
||||
es: "Passimian",
|
||||
it: "Passimian",
|
||||
pt: "Passimian",
|
||||
de: "Quartermak"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
fr: "Passe Décisive",
|
||||
en: "Make the Assist",
|
||||
es: "Prestar Ayuda",
|
||||
it: "Fare un Assist",
|
||||
pt: "Dar Assistência",
|
||||
de: "Zuspielen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Déplacez une Énergie de ce Pokémon vers l'un de vos Pokémon de Banc.",
|
||||
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
|
||||
es: "Mueve 1 Energía de este Pokémon a uno de tus Pokémon en Banca.",
|
||||
it: "Sposta un'Energia da questo Pokémon a uno di quelli nella tua panchina.",
|
||||
pt: "Mova uma Energia deste Pokémon para 1 dos seus Pokémon no Banco.",
|
||||
de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank."
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user