1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon dc52152f23
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 22:20:17 +02:00

55 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Kricketune V",
fr: "Mélokrik V"
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
hp: 180,
types: ["Grass"],
abilities: [{
type: "Ability",
name: {
en: "Exciting Stage",
fr: "Scène Palpitante"
},
effect: {
en: "Once during your turn, you may draw cards until you have 3 cards in your hand. If this Pokémon is in the Active Spot, you may draw cards until you have 4 cards in your hand instead. You cant use more than 1 Exciting Stage Ability each turn.",
fr: "Une fois pendant votre tour, vous pouvez piocher des cartes jusquà en avoir 3 en main. Si ce Pokémon est sur le Poste Actif, vous pouvez piocher des cartes jusquà en avoir 4 en main à la place. Vous ne pouvez pas utiliser plus dun talent Scène Palpitante par tour."
}
}],
attacks: [{
name: {
en: "X-Scissor",
fr: "Plaie Croix"
},
effect: {
en: "Flip a coin. If heads, this attack does 80 more damage.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 80 dégâts supplémentaires."
},
damage: "80+",
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card