1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/S10a/028.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "風鈴鈴"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "擁有超音波的叫聲。輕飄飄地浮起來, 乘著風旅行到遠方。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "美夢音色"
},
effect: {
'zh-tw': "在下個對手的回合,若對手從手牌將能量卡附於受到這個招式的寶可夢身上,則將那隻寶可夢【睡眠】。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "垂吊"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card