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

65 lines
1.5 KiB
TypeScript
Raw 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "トリトドン",
'zh-tw': "海兔獸",
'zh-cn': "海兔獸"
},
illustrator: "Scav",
rarity: "Rare",
category: "Pokemon",
dexId: [423],
hp: 130,
types: ["Fighting"],
description: {
ja: "浅い 磯辺に 現れる。 獲物を 捕らえると 粘液で ゆっくりと 溶かし すするのだ。",
'zh-tw': "能在水淺的岩岸發現牠。 會用黏液慢慢溶解 並吸食捕捉到的獵物。",
'zh-cn': "能在水淺的岩岸發現牠。 會用黏液慢慢溶解 並吸食捕捉到的獵物。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "ねんちゃくしばり",
'zh-tw': "黏著束縛",
'zh-cn': "黏著束縛"
},
effect: {
ja: "このポケモンがベンチにいるかぎり、おたがいのベンチの2進化ポケモンの特性は、すべてなくなる。",
'zh-tw': "只要這隻寶可夢在備戰區雙方的備戰區的【2階進化】寶可夢的特性全部消除。",
'zh-cn': "只要這隻寶可夢在備戰區雙方的備戰區的【2階進化】寶可夢的特性全部消除。"
}
}],
attacks: [{
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "マッドショット",
'zh-tw': "泥巴射擊",
'zh-cn': "泥巴射擊"
},
damage: 80
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card