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

64
data/XY/Steam Siege/12.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from '../../../interfaces'
import Set from '../Steam Siege'
const card: Card = {
name: {
en: "Foongus",
fr: "Trompignon",
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
590,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Play Ball",
fr: "Jeu de Ballon",
},
effect: {
en: "When you play this Pokémon from your hand onto your Bench, you may put 3 Poké Ball cards from your discard pile into your hand.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc, vous pouvez ajouter 3 cartes Poké Ball de votre pile de défausse à votre main.",
},
},
],
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Ram",
fr: "Collision",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card