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:
78
data/Platinum/Platinum/39.ts
Normal file
78
data/Platinum/Platinum/39.ts
Normal 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
|
Reference in New Issue
Block a user