mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 03:50:46 +00:00
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
53
data/Sword & Shield/Chilling Reign/207.ts
Normal file
53
data/Sword & Shield/Chilling Reign/207.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Chilling Reign'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Galarian Slowking VMAX",
|
||||
fr: "Roigada de Galar VMAX",
|
||||
es: "Slowking de Galar VMAX",
|
||||
it: "Slowking di Galar VMAX",
|
||||
pt: "Slowking de Galar VMAX",
|
||||
de: "Galar-Laschoking VMAX"
|
||||
},
|
||||
|
||||
rarity: "Secret Rare",
|
||||
category: "Pokemon",
|
||||
hp: 320,
|
||||
types: ["Darkness"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Max Toxify",
|
||||
fr: "Toxomax",
|
||||
es: "Maxitoxicidad",
|
||||
it: "Dynatossicità",
|
||||
pt: "Intoxicação Max",
|
||||
de: "Dyna-Vergiftung"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
effect: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned. During Pokémon Checkup, put 12 damage counters on that Pokémon instead of 1.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Pendant le Contrôle Pokémon, placez 12 marqueurs de dégâts sur ce Pokémon-là au lieu d’un.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Durante el Chequeo Pokémon, pon 12 contadores de daño en ese Pokémon en vez de 1.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Metti 12 segnalini danno invece di uno su quel Pokémon durante il controllo Pokémon.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Durante o Checape Pokémon, coloque 12 contadores de dano ao invés de 1 naquele Pokémon.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Lege beim Pokémon-Check 12 Schadensmarken anstelle von 1 Schadensmarke auf jenes Pokémon."
|
||||
},
|
||||
|
||||
cost: ["Darkness", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user