mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
84 lines
1.4 KiB
TypeScript
84 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Roaring Skies'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Togekiss",
|
||
fr: "Togekiss",
|
||
},
|
||
illustrator: "PLANETA",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
468,
|
||
],
|
||
hp: 130,
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
evolveFrom: {
|
||
en: "Togetic",
|
||
fr: "Togetic",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ancient Trait",
|
||
name: {
|
||
en: "Δ Evolution",
|
||
fr: "Évolution Δ",
|
||
},
|
||
effect: {
|
||
en: "You may play this card from your hand to evolve a Pokémon during your first turn or the turn you play that Pokémon.",
|
||
fr: "Vous pouvez jouer cette carte de votre main pour faire évoluer un Pokémon pendant votre premier tour ou pendant le tour où vous le jouez.",
|
||
},
|
||
},
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Serene Grace",
|
||
},
|
||
effect: {
|
||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may look at the top 8 cards of your deck. Choose any basic Energy cards you find there and attach them to your Pokémon in any way you like. Shuffle the other cards back into your deck.",
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Fairy Wind",
|
||
fr: "Vent Féérique",
|
||
},
|
||
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|