1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 18:59: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

View File

@ -0,0 +1,57 @@
import { Card } from '../../../interfaces'
import Set from '../Dragon Majesty'
const card: Card = {
name: {
en: "Turtonator",
fr: "Boumata",
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
776,
],
hp: 110,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Fire",
"Fire",
],
name: {
en: "Explosive Jet",
fr: "Souffle Explosif",
},
effect: {
en: "Discard any amount of Fire Energy from your Pokémon. This attack does 50 damage for each card you discarded in this way.",
fr: "Défaussez nimporte quel nombre dÉnergies Fire de vos Pokémon. Cette attaque inflige 50 dégâts pour chaque carte défaussée de cette façon.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 3,
}
export default card