1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,55 @@
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