1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

76 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Legend Maker'
const card: Card = {
name: {
en: "Kabuto",
fr: "Kabuto",
de: "Kabuto"
},
illustrator: "Takao Unno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
140,
],
hp: 60,
types: [
"Fighting",
],
evolveFrom: {
en: "Mysterious Fossil",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Ancient Protection",
fr: "Protection ancienne",
de: "Uralter Schutz"
},
effect: {
en: "Each of your Omanyte, Omastar, Kabuto, Kabutops, and Kabutops ex has no Weakness.",
fr: "Vos Amonita, Amonistar, Kabuto, Kabutops et Kabutops ex ne possèdent pas de Faiblesse.",
de: "Jedes deiner Amonitas, Amoroso, Kabuto, Kabutops und Kabutops ex hat keine Schwäche mehr."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Granite Head",
fr: "Tête de granit",
de: "Granitkopf"
},
effect: {
en: "During your opponent's next turn, any damage done to Kabuto by attacks is reduced by 10 (after applying Weakness and Resistance).",
fr: "Lors du prochain tour de votre adversaire, les dégâts infligés à Kabuto par des attaques sont réduits de 10 (après application de la Faiblesse et de la Résistance).",
de: "Im nächsten Zug deines Gegners wird Schaden, der Kabuto durch gegneriche Angriffe zugefügt wird, um 10 Schadenspunkte reduziert (nachdem Schwäche und Resistenz verrechnet wurden)."
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card