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

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

62
data-asia/SV/SV7a/011.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "闇黑酋雷姆ex",
'zh-cn': "闇黑酋雷姆ex",
ja: "ブラックキュレムex"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 230,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "冰河期",
'zh-cn': "冰河期",
ja: "アイスエイジ"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢為【龍】寶可夢,則將那隻寶可夢【麻痺】。",
'zh-cn': "若對手的戰鬥寶可夢為【龍】寶可夢,則將那隻寶可夢【麻痺】。",
ja: "相手のバトルポケモンがポケモンなら、そのポケモンをマヒにする。"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "闇黑冰霜",
'zh-cn': "闇黑冰霜",
ja: "ブラックフロスト"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。",
'zh-cn': "這隻寶可夢也受到30點傷害。",
ja: "このポケモンにも30ダメージ。"
},
damage: 250,
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Double rare"
}
export default card