1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 5a42df5c5d
Fixed XY informations (#43)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more fixes

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* More updated :D

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Finished update in English

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Updated XY datas

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:15:14 +00:00

75 lines
1.4 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 '../XY'
const card: Card = {
name: {
en: "Beedrill",
fr: "Dardargnan",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
15,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Kakuna",
fr: "Coconfort",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Poison Jab",
fr: "Direct Toxik",
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Flash Needle",
fr: "Luminodard",
},
effect: {
en: "Flip 3 coins. This attack does 40 damage times the number of heads. If all of them are heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponents next turn.",
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés face. Si vous obtenez seulement des côtés face, évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
},
damage: '40×',
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card