mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
71
data/Sun & Moon/Burning Shadows/13.ts
Normal file
71
data/Sun & Moon/Burning Shadows/13.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Burning Shadows'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Simisage",
|
||||
fr: "Feuiloutan",
|
||||
},
|
||||
illustrator: "tetsuya koizumi",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
512,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Pansage",
|
||||
fr: "Feuillajou",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Leaf Supply",
|
||||
fr: "Provision de Feuillage",
|
||||
},
|
||||
effect: {
|
||||
en: "You may attach a Grass Energy card from your hand to 1 of your Pokémon.",
|
||||
fr: "Vous pouvez attacher une carte Énergie Grass de votre main à l’un de vos Pokémon.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user