mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
Finished Complete Rework of the Database
This commit is contained in:
64
data/E-Card/Skyridge/58.ts
Normal file
64
data/E-Card/Skyridge/58.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Skyridge'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Girafarig",
|
||||
},
|
||||
illustrator: "Yukiko Baba",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
203,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Energy Patch",
|
||||
},
|
||||
effect: {
|
||||
en: "Take a basic Energy card attached to 1 of your Pokémon and attach it to another of your Pokémon.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Syncroblast",
|
||||
},
|
||||
effect: {
|
||||
en: "If Girafarig and the Defending Pokémon don't have the same number of Energy cards attached to them, this attack's base damage is 10 instead of 40.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user