mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add missing German sets (#450)
This commit is contained in:
71
data/E-Card/Skyridge/H01.ts
Normal file
71
data/E-Card/Skyridge/H01.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Skyridge'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Alakazam",
|
||||
de: "Simsala"
|
||||
},
|
||||
illustrator: "Kimiya Masago",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
65,
|
||||
],
|
||||
hp: 100,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Kadabra",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
name: {
|
||||
en: "Energy Jump",
|
||||
de: "Energy Jump"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before you attack) you may move an energy card from 1 of your Pokémon to another of your Pokémon. This power can't be used if Alakazam is affected by a Special Condition.",
|
||||
de: "Once during your turn (before your attack), you may move an Energy card from 1 of your Pokémon to another of your Pokémon. This power can't be used if Alakazam is affected by a Special Condition."
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Psychic",
|
||||
de: "Psychic"
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 30 damage plus 10 more damage for each energy card attached to the Defending Pokémon.",
|
||||
de: "This attack does 30 damage plus 10 more damage for each Energy card attached to the Defending Pokémon."
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user