1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 02:59:53 +00:00

43 lines
964 B
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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "โอทาจิ",
id: "Sentret"
},
illustrator: "Taiga Kayama",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
th: "โปเกมอนที่มีความระแวดระวังสูง หางที่เคลื่อนไหวอย่างอ่อนช้อยนั้น เต็มไปด้วยกล้ามเนื้อ เมื่อสัมผัสจะรู้สึกแข็ง",
id: "Pokémon yang memiliki kewaspadaan tinggi. Ekornya yang bergerak luwes itu berotot dan keras jika disentuh."
},
stage: "Basic",
attacks: [{
name: {
th: "ฝ่ามือตบ",
id: "Tampar"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card