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

43
data-asia/S/S8/019.ts Normal file
View File

@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "寶石海星"
},
illustrator: "Uta",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "會轉動像幾何圖形般的身體在水中游動。似乎一直在發射神秘的電波。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "連彈星星"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的任意數量的【水】能量卡丟棄以其張數選擇對手的寶可夢1隻可選擇2次以上。然後對所選的所有寶可夢不計算弱點・抵抗力造成其選擇次數×30點傷害。"
},
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card