mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-07 18:49:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
75
data/Sun & Moon/Sun & Moon/25.ts
Normal file
75
data/Sun & Moon/Sun & Moon/25.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Sun & Moon'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Torracat",
|
||||
fr: "Matoufeu",
|
||||
},
|
||||
illustrator: "TOKIYA",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
726,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Litten",
|
||||
fr: "Flamiaou",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
fr: "Combo-Griffe",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 20 damage for each heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Fire",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Flamethrower",
|
||||
fr: "Lance-Flammes",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
},
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user