1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/S/S10D/028.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "克雷色利亞"
},
illustrator: "saino misaki",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "據說只要拿著克雷色利亞 的羽毛入睡,就能作個美夢。 被稱為新月的化身。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "月下反轉"
},
effect: {
'zh-tw': "選擇自己的所有寶可夢身上放置的傷害指示物各2個改放於對手的1隻寶可夢身上。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "月光爆破"
},
damage: 110,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card