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/S10D/014.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨翅飛魚"
},
illustrator: "OKACHEKE",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "性情溫和,悠游於大海之中。 游泳速度增快時會躍出海面, 人們常將其誤認為鳥寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "搬上岸"
},
effect: {
'zh-tw': "從自己或者對手的棄牌區選擇1張【基礎】寶可夢卡放置於持有人的備戰區。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "水之刀鋒"
},
damage: 100,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card