mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-21 03:29:17 +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:
61
data/Scarlet & Violet/Obsidian Flames/073.ts
Normal file
61
data/Scarlet & Violet/Obsidian Flames/073.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Pohmarmotte-ex",
|
||||
en: "Pawmot ex",
|
||||
es: "Pawmot ex",
|
||||
it: "Pawmot-ex",
|
||||
pt: "Pawmot ex",
|
||||
de: "Pamomamo-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 300,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
fr: "Coup de Pied Ravageur",
|
||||
en: "Zap Kick",
|
||||
es: "Electropatada",
|
||||
it: "Dinamocalcio",
|
||||
pt: "Chute Zap",
|
||||
de: "Stromtritt"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
name: {
|
||||
fr: "Fulguration",
|
||||
en: "Levin Strike",
|
||||
es: "Disparo Relámpago",
|
||||
it: "Colposaetta",
|
||||
pt: "Golpe Relampejante",
|
||||
de: "Blitztreffer"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Défaussez 2 Énergies Lightning de ce Pokémon. Cette attaque inflige 220 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
en: "Discard 2 Lightning Energy from this Pokémon. This attack does 220 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
es: "Descarta 2 Energías Lightning de este Pokémon. Este ataque hace 220 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||
it: "Scarta due Energie Lightning da questo Pokémon. Questo attacco infligge 220 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||
pt: "Descarte 2 Energias Lightning deste Pokémon. Este ataque causa 220 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)",
|
||||
de: "Lege 2 Lightning-Energien von diesem Pokémon auf deinen Ablagestapel. Diese Attacke fügt 1 Pokémon deines Gegners 220 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user