mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
42 lines
712 B
TypeScript
42 lines
712 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Bellsprout",
|
||
fr: "Chétiflor"
|
||
},
|
||
|
||
illustrator: "Sekio",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 50,
|
||
types: ["Grass"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Venoshock",
|
||
fr: "Choc Venin"
|
||
},
|
||
|
||
effect: {
|
||
en: "If your opponent’s Active Pokémon is Poisoned, this attack does 40 more damage.",
|
||
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 40 dégâts supplémentaires."
|
||
},
|
||
|
||
damage: "10+",
|
||
cost: ["Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |