mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
72
data/Scarlet & Violet/Twilight Masquerade/125.ts
Normal file
72
data/Scarlet & Violet/Twilight Masquerade/125.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Revavroom",
|
||||
fr: "Vrombotor",
|
||||
es: "Revavroom",
|
||||
it: "Revavroom",
|
||||
pt: "Revavroom",
|
||||
de: "Knattatox"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Metal"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rally Back",
|
||||
fr: "Répercussions",
|
||||
es: "Apoyo Vengativo",
|
||||
it: "Radunata Rinforzi",
|
||||
pt: "Responder à Altura",
|
||||
de: "Aufholjagd"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 90 more damage.",
|
||||
fr: "Si au moins l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque pendant le dernier tour de votre adversaire, cette attaque inflige 90 dégâts supplémentaires.",
|
||||
es: "Si alguno de tus Pokémon quedó Fuera de Combate por el daño de un ataque durante el último turno de tu rival, este ataque hace 90 puntos de daño más.",
|
||||
it: "Se uno qualsiasi dei tuoi Pokémon è stato messo KO dai danni inflitti da un attacco durante l'ultimo turno del tuo avversario, questo attacco infligge 90 danni in più.",
|
||||
pt: "Se algum dos seus Pokémon tiver sido Nocauteado pelo dano de um ataque durante o último turno do seu oponente, este ataque causará 90 pontos de dano a mais.",
|
||||
de: "Wenn mindestens 1 deiner Pokémon während des letzten Zuges deines Gegners durch Schaden einer Attacke kampfunfähig wurde, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "30+"
|
||||
}, {
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Running Charge",
|
||||
fr: "Assaut Élancé",
|
||||
es: "Carga Impulso",
|
||||
it: "Carica Scattante",
|
||||
pt: "Carga em Disparada",
|
||||
de: "Sturmangriff"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. This attack does 100 damage for each heads.",
|
||||
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 100 dégâts pour chaque côté face.",
|
||||
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 100 puntos de daño por cada cara.",
|
||||
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 100 danni ogni volta che esce testa.",
|
||||
pt: "Jogue uma moeda até sair coroa. Este ataque causa 100 pontos de dano para cada cara.",
|
||||
de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 100 Schadenspunkte pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "100×"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user