1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

69 lines
1.6 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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