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

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "烈箭鷹"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "緊抓"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "火藥奇襲"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有【火】能量則增加80點傷害。"
},
damage: "80+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "E"
}
export default card