1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon d7d600c0d7
feat: Add W Promotional variant (#183)
Signed-off-by: Avior <github@avior.me>
2021-11-22 14:52:58 +01:00

73 lines
1.5 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 '../Fossil'
const card: Card = {
name: {
en: "Kabuto",
fr: "Kabuto"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
140,
],
hp: 30,
types: [
"Fighting",
],
stage: "Stage1",
abilities: [
{
type: "Pokemon Power",
name: {
en: "Kabuto Armor",
fr: "Armure Kabuto"
},
effect: {
en: "Whenever an attack (even your own) does damage to Kabuto (after applying Weakness and Resistance), that attack only does half the damage to Kabuto (rounded down to nearest 10). (Any other effects of attacks still happen.) This power stops working while Kabuto is Asleep, Confused, or Paralyzed.",
fr: "Chaque fois qu'une attaque (même la vôtre) inflige des dégâts à Kabuto (après application de la Faiblesse et de la Résistance), cette attaque inflige seulement la moitié des dégâts à Kabuto (arrondis à la dizaine la plus proche). (Tout autre effet ou attaque intervient toujours.) L'effet de ce pouvoir cesse lorsque Kabuto est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe"
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
description: {
fr: "Disparu depuis longtemps, il peut être réanimé génétiquement à partir d'anciens fossiles."
},
variants: {
wPromo: true
}
}
export default card