1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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/BREAKthrough/6.ts Normal file
View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKthrough'
const card: Card = {
name: {
en: "Simisage",
fr: "Feuiloutan",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
512,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Pansage",
fr: "Feuillajou",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fire Fling",
fr: "Dégommage Feu",
},
effect: {
en: "Put 3 Fire Energy cards from your discard pile into your hand.",
fr: "Prenez 3 cartes Énergie Fire dans votre pile de défausse et ajoutez-les à votre main.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hand Fling",
fr: "Catapu-Main",
},
effect: {
en: "This attack does 10 damage times the number of cards in your hand.",
fr: "Cette attaque inflige 10 dégâts multipliés par le nombre de cartes dans votre main.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card