mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
75 lines
2.0 KiB
TypeScript
75 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [95],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Onix",
|
|
fr: "Onix",
|
|
es: "Onix",
|
|
it: "Onix",
|
|
pt: "Onix",
|
|
de: "Onix"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
retreat: 4,
|
|
regulationMark: "E",
|
|
illustrator: "KEIICHIRO ITO",
|
|
|
|
description: {
|
|
en: "It rapidly bores through the ground at 50 mph by squirming and twisting its massive, rugged body."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Guard Press",
|
|
fr: "Pression de Garde",
|
|
de: "Schutzdruck",
|
|
es: "Presión de Guardia",
|
|
pt: "Aperto Protetor",
|
|
it: "Pressadifesa"
|
|
},
|
|
|
|
damage: 30,
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
|
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
|
|
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden).",
|
|
es: "Durante el próximo turno de tu rival, los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
|
|
pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).",
|
|
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza."
|
|
}
|
|
}, {
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rock Throw",
|
|
fr: "Jet-Pierres",
|
|
de: "Steinwurf",
|
|
es: "Lanzarrocas",
|
|
pt: "Lançamento de Rocha",
|
|
it: "Sassata"
|
|
},
|
|
|
|
damage: 90
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |