mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-12 11:57:50 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
54 lines
1.1 KiB
TypeScript
54 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Drampa",
|
||
fr: "Draïeul"
|
||
},
|
||
|
||
illustrator: "Eri Yamaki",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Colorless"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Call for Family",
|
||
fr: "Appel à la Famille"
|
||
},
|
||
|
||
effect: {
|
||
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck jusqu’à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Spiral Rush",
|
||
fr: "Course en Spirale"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
|
||
fr: "Lancez une pièce jusqu’à obtenir un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face."
|
||
},
|
||
|
||
damage: "30+",
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |