1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

68
data-asia/SV/SV7a/006.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "飄浮泡泡 太陽的樣子",
'zh-cn': "飄浮泡泡 太陽的樣子",
ja: "ポワルン たいようのすがた"
},
illustrator: "osare",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
'zh-tw': "飄浮泡泡在天氣晴朗時的樣子。 在把牠放到暖爐前面的實驗中, 牠並沒有變成這種形態。",
'zh-cn': "飄浮泡泡在天氣晴朗時的樣子。 在把牠放到暖爐前面的實驗中, 牠並沒有變成這種形態。",
ja: "晴れた 日の ポワルンの 姿。 ヒーターの前に 置く 実験では この 形に 変化しなかった。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "灼熱",
'zh-cn': "灼熱",
ja: "こがす"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
'zh-cn': "將對手的戰鬥寶可夢【灼傷】。",
ja: "相手のバトルポケモンをやけどにする。"
},
cost: ["Fire"]
}, {
name: {
'zh-tw': "陽光支援",
'zh-cn': "陽光支援",
ja: "サニーアシスト"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的能量卡全部改附於1隻備戰寶可夢身上。",
'zh-cn': "將這隻寶可夢身上附加的能量卡全部改附於1隻備戰寶可夢身上。",
ja: "このポケモンについているエネルギーをすべて、ベンチポケモン1匹につけ替える。"
},
damage: 50,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 0,
regulationMark: "H",
rarity: "Common",
dexId: [351]
}
export default card