mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/Diamond & Pearl/Great Encounters/87.ts
Normal file
70
data/Diamond & Pearl/Great Encounters/87.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Great Encounters'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Tangela",
|
||||
fr: "Saquedeneu",
|
||||
},
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
114,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Vine Invite",
|
||||
fr: "Plante invitante",
|
||||
},
|
||||
effect: {
|
||||
en: "Switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon.",
|
||||
fr: "Échangez 1 des Pokémon de Banc de votre adversaire avec 1 des Pokémon Défenseurs.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Grass Knot",
|
||||
fr: "Noeud Herbe",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage plus 10 more damage for each Colorless Energy in the Defending Pokémon's Retreat Cost (after applying effects to the Retreat Cost).",
|
||||
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Colorless dans le Coût de retraite du Pokémon Défenseur (après application des effets sur le Coût de retraite).",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user