1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

50
data-asia/S/S11a/015.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "萊希拉姆V"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 220,
types: ["Fire"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "璀璨之翼"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡附於自己的1隻寶可夢身上。並且重洗牌庫。"
},
cost: ["Fire"]
}, {
name: {
'zh-tw': "皎白火焰"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則在下個自己的回合這隻寶可夢無法使用招式。"
},
damage: 200,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card