1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Added Sun & Moon for other languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-06-30 14:12:31 +02:00
parent 369f8dadf7
commit dc0dcff103
2732 changed files with 54455 additions and 6885 deletions

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../SM Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Persian",
fr: "Persian",
es: "Persian",
it: "Persian",
pt: "Persian",
de: "Snobilikat"
},
rarity: "Rare",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
abilities: [{
type: "Ability",
name: {
en: "Gathering of Cats",
fr: "Rassemblement de Chats",
es: "Reunión de Gatos",
it: "Raduno Felino",
pt: "Reunião de Gatos",
de: "Katzentreffen"
},
effect: {
en: "Ignore all Energy in the attack costs of each of your Pokémon in play that has the Caturday attack.",
fr: "Ignorez toutes les Énergies dans le coût dattaque de vos Pokémon en jeu qui ont lattaque Chamedi.",
es: "Ignora todas las Energías en los costes de los ataques de cada uno de tus Pokémon en juego que tenga el ataque Sábado Gatuno.",
it: "Ignora tutte le Energie necessarie per usare gli attacchi dei tuoi Pokémon in gioco che hanno lattacco Giornogatto.",
pt: "Ignore todas as Energias nos custos dos ataques de cada um dos seus Pokémon em jogo que tiver o ataque Dia de Gato.",
de: "Ignoriere alle Energien in den Kosten der Attacken jedes deiner Pokémon im Spiel, das die Attacke Schnurrtag hat."
}
}],
attacks: [{
name: {
en: "Claw Slash",
fr: "TranchGriffe",
es: "Cuchillada Garra",
it: "Lacerartiglio",
pt: "Golpe de Garra",
de: "Klauenschlitzer"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0
}
export default card