1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 12:41:59 +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,82 @@
import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Togetic",
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
176,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Togepi",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Holy Shield",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to Togetic by your opponent's Pokémon that has Dark in its name.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Dive",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Rainbow Moves",
},
effect: {
en: "Choose 1 of your opponent's Benched Pokémon's attacks. Rainbow Moves copies that attack except for its Energy cost. (You must still do anything else required for that attack.) (No matter what type that Pokémon is, Togetic's type is still Colorless. Togetic performs that attack.",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card