1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

121 lines
1.7 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/pl/pl4'
const card: Card = {
// Card Global Informations
id: "pl4-10",
localId: 10,
name: {
en: "Tangrowth",
},
tags: [
Tag.STAGE1,
],
illustrator: "Masakazu Fukuda",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/10/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/10/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Tangela",
},
dexId: 465,
type: [
Type.GRASS,
],
attacks: [
{
cost: [
Type.GRASS,
Type.COLORLESS,
],
name: {
en: "Leaf Guard",
},
text: {
en: "During your opponent's next turn, any damage done to Tangrowth by attacks is reduced by 20 (after applying Weakness and Resistance).",
},
damage: 30,
},
{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Swallow Up",
},
text: {
en: "Before doing damage, count the remaining HP of the Defending Pokémon and Tangrowth. If the Defending Pokémon has fewer remaining HP than Tangrowth's, this attack does 120 damage instead.",
},
damage: 50,
},
],
weaknesses: [
{
type: Type.FIRE,
value: "+30",
},
],
resistances: [
{
type: Type.WATER,
value: "-20",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card