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

69
data-asia/SV/SV7a/030.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "土地雲",
'zh-cn': "土地雲",
ja: "ランドロス"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "土地雲造訪的土地上, 作物會結實纍纍, 因此被稱為農田之神。",
'zh-cn': "土地雲造訪的土地上, 作物會結實纍纍, 因此被稱為農田之神。",
ja: "ランドロスが 訪れる 土地は 作物が たくさん 実るため 畑の神様 と 言われている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "真氣之拳",
'zh-cn': "真氣之拳",
ja: "きあいのこぶし"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張能量卡附於這隻寶可夢身上。",
'zh-cn': "從自己的棄牌區選擇1張能量卡附於這隻寶可夢身上。",
ja: "自分のトラッシュからエネルギーを1枚選び、このポケモンにつける。"
},
damage: 30,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "粗暴橫掃",
'zh-cn': "粗暴橫掃",
ja: "バスタースイング"
},
effect: {
'zh-tw': "這個招式的傷害不計算抵抗力。",
'zh-cn': "這個招式的傷害不計算抵抗力。",
ja: "このワザのダメージは抵抗力を計算しない。"
},
damage: 130,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Rare",
dexId: [645]
}
export default card