Copy the code from figure.php and add it to site/plugins/figure.php (you have to create that file first of course :))
You can now add figures to your content like this:
(figure: myimage.jpg caption: This is a nice figure)
…or with more options…
(figure: myimage.jpg caption: This is a nice figure width: 300 height: 200)
This extends the default Kirby image tag, so you can use all the additional attributes for that. Please read more about it in the docs: http://getkirby.com/docs/formatting-text
This produces the following output
<figure>
<img src="http://yourdomain.com/content/example/myimage.jpg" width="300" alt="This is a nice figure" />
<figcaption>This is a nice figure</figcaption>
</figure>
Never mind, got around adding a class element myself: https://gist.github.com/3361532