1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

73
data/XY/Primal Clash/3.ts Normal file
View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Primal Clash'
const card: Card = {
name: {
en: "Beedrill",
fr: "Dardargnan",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
15,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Allergic Shock",
fr: "Choc Allergique",
},
effect: {
en: "During your next turn, if the Defending Pokémon is damaged by an attack, it is Knocked Out.",
fr: "Pendant votre prochain tour, si le Pokémon Défenseur subit les dégâts d'une attaque, il est mis K.O.",
},
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Twineedle",
fr: "Double-Dard",
},
effect: {
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card