1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

49
data-asia/SV/SV9/024.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ホエルコ",
'zh-tw': "吼吼鯨",
'zh-cn': "吼吼鯨"
},
illustrator: "Shinya Mizuno",
rarity: "Common",
category: "Pokemon",
dexId: [320],
hp: 130,
types: ["Water"],
description: {
ja: "海水を たくさん 飲みこむと 体が ボールの ように 弾む。 毎日 1トンの エサを 食べる。",
'zh-tw': "喝入大量的海水之後, 身體會鼓成像球一樣。 每天要吃掉1噸的食物。",
'zh-cn': "喝入大量的海水之後, 身體會鼓成像球一樣。 每天要吃掉1噸的食物。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "なみのり",
'zh-tw': "衝浪",
'zh-cn': "衝浪"
},
damage: 60
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card