1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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,78 @@
import { Card } from '../../../interfaces'
import Set from '../Platinum'
const card: Card = {
name: {
en: "Torterra",
fr: "Torterra",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
389,
],
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Grotle",
fr: "Boskara",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Green Blast",
fr: "Explosion verte",
},
effect: {
en: "Does 40 damage plus 10 more damage for each Grass Energy attached to all of your Pokémon.",
fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Grass attachée à tous vos Pokémon.",
},
damage: 40,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Soothing Scent",
fr: "Senteur apaisante",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "+30"
},
],
retreat: 4,
}
export default card