mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
53
data/Sword & Shield/Battle Styles/119.ts
Normal file
53
data/Sword & Shield/Battle Styles/119.ts
Normal file
@ -0,0 +1,53 @@
|
||||
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
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user